/* ============================================================
   DIG THEME — MAIN STYLESHEET
   Master styles from homepage; interior additions merged below.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@300;400;500;600;700;800&family=Barlow:wght@300;400;500;600&display=swap');

/* ── TOKENS ── */
:root {
  --navy:       #233746;
  --navy-deep:  #1a2b36;
  --navy-mid:   #2e4a5e;
  --blue:       #69c3e8;
  --orange:     #ee7421;
  --cream:      #eae7e0;
  --white:      #ffffff;
  --off-white:  #f6f8fa;
  --gray-light: #eef1f4;
  --gray-mid:   #7a94a6;
  --text-dark:  #1a2b37;
  --text-mid:   #4a5f6d;
}

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  color: var(--text-dark);
  background: #fff;
  overflow-x: hidden;
}

/* ── JUMP NAV ANCHOR SCROLL OFFSET (accounts for sticky header: 36px topbar + 76px nav) ── */
#who-we-are, #philosophy, #leadership, #why-dig,
#process, #engagement, #expect,
#insurance, #financial-services, #manufacturing, #warranty,
#client-outcomes, #perspectives,
#outcome-1, #outcome-2, #outcome-3, #outcome-4, #outcome-5, #outcome-6, #outcome-7 {
  scroll-margin-top: 128px;
}

/* ── WIDOW / ORPHAN PREVENTION ── */
h1, h2, h3, h4,
.section-header,
.page-title,
.hero-headline,
.cta-headline,
.card-title,
.card-subtitle,
.approach-title,
.step-title,
.leader-name,
.outcome-title-group h2,
.contact-sidebar-callout-head,
.footer-tagline {
  text-wrap: balance;
}
p,
.section-body,
.content-p,
.hero-subhead,
.hero-support,
.page-intro,
.leader-bio,
.approach-desc,
.step-desc,
.outcome-summary p,
.detail-section p,
.cta-subtext,
.card-bullets li,
.serve-list li,
.philosophy-list li,
.engagement-list li,
.expect-list li,
.why-list li,
.contact-next-text,
.footer-nav-list a {
  text-wrap: pretty;
}

/* ── GLOBAL TYPOGRAPHY ── */
.section-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  font-weight: 600;
}
.section-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
}
.section-body {
  font-size: 16.5px;
  color: var(--text-mid);
  line-height: 1.75;
}
.content-p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 14px;
}
.content-p:last-child { margin-bottom: 0; }

/* ── BUTTONS ── */
.btn-primary {
  background: var(--orange);
  color: white;
  padding: 12px 26px;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #d4661a; transform: translateY(-1px); }

.btn-primary-large {
  background: var(--orange);
  color: white;
  padding: 18px 44px;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}
.btn-primary-large:hover { background: #d4661a; transform: translateY(-2px); }

.btn-ghost {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: var(--blue); border-color: var(--blue); }

/* Interior ghost variant */
.btn-ghost-sm {
  color: rgba(255,255,255,0.60);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 2px;
  margin-left: 16px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-sm:hover { color: var(--blue); border-color: var(--blue); }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   NAVIGATION
   ============================================================ */

/* ── TOP BAR ── */
.site-header-outer {
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 16px rgba(35,55,70,0.10);
}

.header-topbar {
  background: var(--navy);
  border-bottom: 1px solid rgba(105,195,232,0.12);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 36px;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-family: 'Barlow', sans-serif;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.2px;
  transition: color 0.2s;
}
.topbar-link:hover { color: var(--blue); }
.topbar-link svg { flex-shrink: 0; opacity: 0.7; }

.topbar-divider {
  color: rgba(255,255,255,0.25);
  font-size: 12px;
  line-height: 1;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.60);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 4px;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  text-decoration: none;
}
.topbar-social:hover {
  color: var(--white);
  border-color: var(--blue);
  background: rgba(105,195,232,0.12);
}

.site-header {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 76px;
  border-bottom: 1px solid rgba(35,55,70,0.10);
}
.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  color: var(--navy);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.4px;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s;
}
.nav-links a:hover { color: var(--navy-deep); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.current-menu-item,
.nav-links a.active { color: var(--navy-deep); font-weight: 600; }
.nav-links a.current-menu-item::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--orange) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 3px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: #d4661a !important; }

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(105,195,232,0.10);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.4fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 80px 48px;
}

/* Col 1 — Brand */
.footer-logo {
  margin-bottom: 16px;
}
.footer-logo img {
  height: 42px;
  width: auto;
  opacity: 0.85;
  filter: brightness(3) saturate(0);
}
.footer-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: rgba(255,255,255,0.55);
}
.footer-contact-list li svg { opacity: 0.6; flex-shrink: 0; }
.footer-contact-list a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-list a:hover { color: var(--blue); }
.footer-social {
  display: flex;
  gap: 8px;
}
.footer-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,0.50);
  border: 1px solid rgba(105,195,232,0.18);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.footer-social-icon:hover {
  color: var(--white);
  border-color: var(--blue);
  background: rgba(105,195,232,0.10);
}

/* Col 2 — Nav */
.footer-col-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav-list a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-list a:hover { color: var(--white); }

/* Col 3 — Certs */
.footer-certs {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-cert-item img {
  max-height: 56px;
  width: auto;
  opacity: 0.70;
  filter: brightness(2) saturate(0);
  transition: opacity 0.2s, filter 0.2s;
  display: block;
}
.footer-cert-item img:hover { opacity: 1; filter: none; }
.footer-cert-placeholder {
  font-size: 12px;
  color: rgba(255,255,255,0.28);
  font-style: italic;
  padding: 10px 14px;
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: 3px;
  display: inline-block;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.2px;
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
@keyframes nodePulse {
  0%, 100% { opacity: 0.75; }
  50%       { opacity: 0.25; }
}
@keyframes orbitSpin {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: -80; }
}
@keyframes orbitSpinRev {
  from { stroke-dashoffset: 0; }
  to   { stroke-dashoffset: 60; }
}
@keyframes barChart {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; }
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: var(--navy);
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 60px 88px 80px;
  border-right: 1px solid rgba(105,195,232,0.1);
}
.hero-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 22px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}
.hero-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--orange);
  line-height: 0.97;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}
.hero-headline em {
  color: var(--white);
  font-style: normal;
  display: block;
}
.hero-subhead {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.65;
  margin-bottom: 12px;
  max-width: 430px;
}
.hero-support {
  font-size: 14px;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  max-width: 420px;
  margin-bottom: 42px;
}
.hero-ctas { display: flex; gap: 18px; align-items: center; }

.hero-right {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-right::before {
  content: '';
  position: absolute;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(105,195,232,0.07) 0%, transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-visual { width: 400px; height: 400px; position: relative; z-index: 1; }
.hero-visual svg { width: 100%; height: 100%; }
.visual-label {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(105,195,232,0.30);
  white-space: nowrap;
}

/* ============================================================
   HOMEPAGE — PROBLEM STATEMENT
   ============================================================ */
.section-problem {
  background: var(--white);
  padding: 100px 80px;
  text-align: center;
}
.  .section-header { max-width: 720px; margin: 0 auto 24px; }
.section-problem .section-body  { max-width: 680px; margin: 0 auto 14px; }
.section-industries-intro  { max-width: 680px; margin: 0 auto 14px; }
.industries-accent-link  {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 18px;
  text-align: left;
}
.problem-accent {
  display: inline-block;
  margin-top: 18px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 18px;
  text-align: left;
}
.industries-accent-link {
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.industries-accent-link:hover {
    transform: translateX(6px);
}
.section-industries-intro {
    margin-bottom: 100px;
	text-align:center;
}
/* ============================================================
   HOMEPAGE — VALUE PROPOSITION
   ============================================================ */
.section-value {
  background: var(--navy);
  padding: 96px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-value::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(105,195,232,0.05);
  pointer-events: none;
}
.section-value::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(238,116,33,0.04);
  pointer-events: none;
}
.value-rule {
  width: 36px; height: 2px;
  background: var(--orange);
  margin: 0 auto 28px;
}
.section-value .section-label { color: var(--blue); }
.section-value .section-header { color: var(--white); }
.section-value .section-body { color: rgba(255,255,255,0.72); }

/* ============================================================
   HOMEPAGE — SERVICES / CARDS
   ============================================================ */
.section-services {
  background: var(--off-white);
  padding: 96px 80px;
}
.section-intro {
  text-align: center;
  margin-bottom: 52px;
}
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.card {
  background: var(--white);
  border: 1px solid rgba(35,55,70,0.09);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.card:hover { box-shadow: 0 12px 40px rgba(35,55,70,0.10); transform: translateY(-3px); }
.card-top { padding: 32px 28px 24px; flex: 1; }
.card-icon {
  width: 40px; height: 40px;
  margin-bottom: 20px;
  color: var(--blue);
}
.card-icon svg {
  width: 100%; height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.card-subtitle {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.card-bullets {
  list-style: none;
  padding: 0;
}
.card-bullets li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 6px 0 6px 16px;
  position: relative;
  border-bottom: 1px solid rgba(35,55,70,0.06);
  line-height: 1.45;
}
.card-bullets li:last-child { border-bottom: none; }
.card-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 1px;
  background: var(--blue);
}
.card-outcome {
  padding: 16px 28px;
  background: var(--navy);
  border-radius: 0 0 4px 4px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.outcome-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  padding-top: 2px;
}
.outcome-text {
  font-size: 13.5px;
  color: rgba(255,255,255,0.70);
  line-height: 1.45;
  text-wrap: pretty;
}

/* ============================================================
   HOMEPAGE — PROCESS / HOW WE WORK
   ============================================================ */
.section-process {
  background: var(--navy-deep);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.section-process::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(105,195,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105,195,232,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.process-bg-circle {
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 60px solid rgba(238,116,33,0.05);
  pointer-events: none;
}
.process-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
  position: relative; z-index: 1;
}
.process-intro .section-label { color: var(--blue); }
.process-intro .section-header { color: var(--white); margin-bottom: 14px; }
.process-intro p { color: rgba(255,255,255,0.45); font-size: 15px; line-height: 1.65; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative; z-index: 1;
  border: 1px solid rgba(105,195,232,0.10);
}
.step {
  padding: 36px 28px;
  border-right: 1px solid rgba(105,195,232,0.10);
  transition: background 0.2s;
}
.step:last-child { border-right: none; }
.step:hover { background: rgba(105,195,232,0.04); }
.step-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.step-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(238,116,33,0.25);
}
.step-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  line-height: 1.60;
}

/* ============================================================
   HOMEPAGE — WHO WE SERVE
   ============================================================ */
.section-serve {
  background: var(--cream);
  padding: 96px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  max-width: 100%;
}
.serve-list {
  list-style: none;
  padding: 0;
  margin-top: 28px;
}
.serve-list li {
  font-size: 15px;
  color: var(--navy);
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid rgba(35,55,70,0.10);
  font-weight: 500;
}
.serve-list li:last-child { border-bottom: none; }
.serve-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.serve-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.serve-callout {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
  border-left: 4px solid var(--orange);
  padding-left: 20px;
}
.serve-callout em { color: var(--orange); font-style: normal; }
.serve-callout-body {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.72;
  padding-left: 24px;
}

/* ============================================================
   HOMEPAGE — TRUST / METRICS
   ============================================================ */
.section-trust {
  background: var(--white);
  padding: 96px 80px;
  text-align: center;
}
.logo-strip {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px auto 56px;
  max-width: 900px;
}
.logo-placeholder {
  width: 80px; height: 80px;
  background: var(--gray-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--gray-mid);
  font-family: 'Barlow Condensed', sans-serif;
  letter-spacing: 1px;
  object-fit: contain;
}
.logo-placeholder img {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 4px;
}
.metrics-row {
  display: flex;
  gap: 0;
  justify-content: center;
  border: 1px solid rgba(35,55,70,0.09);
  border-radius: 4px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.metric {
  flex: 1;
  padding: 40px 32px;
  border-right: 1px solid rgba(35,55,70,0.09);
  transition: background 0.2s;
}
.metric:last-child { border-right: none; }
.metric:hover { background: var(--off-white); }
.metric-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 10px;
}
.metric-number span:last-child { font-size: 36px; color: var(--orange); }
.metric-label {
  font-size: 13px;
  color: var(--gray-mid);
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.4;
}

/* ============================================================
   HOMEPAGE — FINAL CTA
   ============================================================ */
.section-final-cta {
  background: var(--navy);
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-final-cta::before {
  content: '';
  position: absolute; top: -110px; right: -110px;
  width: 520px; height: 520px; border-radius: 50%;
  border: 80px solid rgba(105,195,232,0.05);
}
.section-final-cta::after {
  content: '';
  position: absolute; bottom: -80px; left: -80px;
  width: 340px; height: 340px; border-radius: 50%;
  background: rgba(238,116,33,0.04);
}
.cta-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 50px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-subtext {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  max-width: 500px;
  margin: 0 auto 44px;
  line-height: 1.70;
  position: relative; z-index: 1;
}

/* ============================================================
   INTERIOR — PAGE HERO
   ============================================================ */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  min-height: 480px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 460px; height: 460px; border-radius: 50%;
  border: 70px solid rgba(105,195,232,0.05);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -60px; left: 42%;
  width: 260px; height: 260px; border-radius: 50%;
  border: 38px solid rgba(238,116,33,0.05);
  pointer-events: none;
}
.page-hero .hero-left {
  padding: 80px 56px 80px 80px;
  border-right: 1px solid rgba(105,195,232,0.10);
  position: relative; z-index: 1;
}
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 8px;
}
.breadcrumb a { color: rgba(255,255,255,0.30); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: rgba(255,255,255,0.15); }
.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 62px; font-weight: 800;
  color: var(--orange); line-height: 0.95;
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.page-title em { color: var(--white); font-style: normal; display: block; }
.page-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 400; font-style: italic;
  color: rgba(255,255,255,0.48); margin-bottom: 28px;
}
.page-intro {
  font-size: 16px; color: rgba(255,255,255,0.68);
  line-height: 1.72; max-width: 440px;
}
.page-hero .hero-right {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 80px 80px 56px;
  position: relative; z-index: 1;
  background: transparent;
}
.hero-right-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(105,195,232,0.12);
}
.jump-nav { list-style: none; padding: 0; margin-bottom: 36px; }
.jump-nav li a {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(105,195,232,0.07);
  text-decoration: none;
  font-size: 14px; font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
}
.jump-nav li:last-child a { border-bottom: none; }
.jump-nav li a:hover { color: var(--blue); padding-left: 6px; }
.jump-nav li a::before {
  content: ''; width: 12px; height: 1px;
  background: rgba(105,195,232,0.30); flex-shrink: 0;
  transition: width 0.2s, background 0.2s;
}
.jump-nav li a:hover::before { width: 20px; background: var(--blue); }
.hero-cta-block { margin-top: 4px; }
.hero-cta-label {
  font-size: 13px; color: rgba(255,255,255,0.40);
  margin-bottom: 14px; line-height: 1.55;
}

/* ============================================================
   INTERIOR — SOLUTIONS NAV BAND
   ============================================================ */
.section-solutions-nav {
  background: var(--navy-deep);
  padding: 0 80px;
  border-top: 1px solid rgba(105,195,232,0.08);
}
.solutions-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
}
.solutions-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); font-weight: 600;
  white-space: nowrap;
}
.solutions-nav-links { display: flex; gap: 0; list-style: none; }
.solutions-nav-links li a {
  display: flex; align-items: center;
  padding: 20px 28px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  border-right: 1px solid rgba(105,195,232,0.08);
  transition: color 0.2s, background 0.2s;
}
.solutions-nav-links li:last-child a { border-right: none; }
.solutions-nav-links li a:hover { color: var(--blue); background: rgba(105,195,232,0.04); }
.solutions-nav-links li a.active {
  color: var(--white); font-weight: 600;
  border-bottom: 2px solid var(--orange);
}

/* ============================================================
   INTERIOR — CHALLENGE SECTION
   ============================================================ */
.section-challenge {
  background: var(--white);
  padding: 96px 80px;
}
.challenge-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: start;
}
.pain-cards { display: flex; flex-direction: column; gap: 16px; }
.pain-card {
  background: var(--off-white);
  border: 1px solid rgba(35,55,70,0.08);
  border-left: 3px solid var(--orange);
  padding: 22px 24px;
  border-radius: 3px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pain-card:hover { box-shadow: 0 6px 24px rgba(35,55,70,0.09); transform: translateX(4px); }
.pain-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 700;
  color: var(--navy); margin-bottom: 5px;
}
.pain-card p { font-size: 14px; color: var(--text-mid); line-height: 1.58; }

/* ============================================================
   INTERIOR — APPROACH SECTION
   ============================================================ */
.section-approach {
  background: var(--navy-deep);
  padding: 96px 80px;
  position: relative; overflow: hidden;
}
.section-approach::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(105,195,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105,195,232,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.section-approach::after {
  content: '';
  position: absolute; top: -160px; right: -160px;
  width: 600px; height: 600px; border-radius: 50%;
  border: 90px solid rgba(105,195,232,0.05);
  pointer-events: none;
}
.approach-bg-circle {
  position: absolute; bottom: -100px; left: -100px;
  width: 400px; height: 400px; border-radius: 50%;
  border: 60px solid rgba(238,116,33,0.05);
  pointer-events: none;
}
.approach-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 1; }
.approach-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end; margin-bottom: 56px;
}
.approach-head .section-label { color: var(--blue); }
.approach-head .section-header { color: var(--white); }
.approach-desc { font-size: 15px; color: rgba(255,255,255,0.48); line-height: 1.68; align-self: end; }
.approach-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; background: rgba(105,195,232,0.08);
}
.approach-cell {
  background: var(--navy-deep);
  padding: 36px;
  position: relative; overflow: hidden;
  transition: background 0.2s;
}
.approach-cell:hover { background: #1f3244; }
.approach-cell-num {
  position: absolute; top: 20px; right: 24px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px; font-weight: 800;
  color: rgba(105,195,232,0.06); line-height: 1;
  transition: color 0.2s;
}
.approach-cell:hover .approach-cell-num { color: rgba(105,195,232,0.10); }
.approach-num {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy-deep);
  color: var(--blue);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(105,195,232,0.45);
  box-shadow: 0 0 0 5px var(--navy-deep), 0 0 18px rgba(105,195,232,0.08);
  margin-bottom: 20px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.approach-cell:hover .approach-num { background: var(--orange); color: var(--white); border-color: var(--orange); }
.approach-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700;
  color: var(--white); margin-bottom: 10px;
  position: relative; z-index: 1;
}
.approach-body { font-size: 14px; color: rgba(255,255,255,0.50); line-height: 1.65; position: relative; z-index: 1; }
.approach-body ul { list-style: none; padding: 0; margin-top: 8px; }
.approach-body ul li { padding: 5px 0 5px 14px; position: relative; font-size: 13px; color: rgba(255,255,255,0.45); }
.approach-body ul li::before { content: ''; position: absolute; left: 0; top: 13px; width: 6px; height: 1px; background: var(--blue); }

/* ============================================================
   INTERIOR — OUTCOMES + CAPABILITIES
   ============================================================ */
.section-outcomes {
  background: var(--off-white);
  padding: 96px 80px;
}
.outcomes-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.outcome-list { list-style: none; padding: 0; }
.outcome-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(35,55,70,0.08);
}
.outcome-item:first-child { padding-top: 0; }
.outcome-item:last-child { border-bottom: none; }
.out-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--orange); flex-shrink: 0; margin-top: 5px; }
.out-text { font-size: 15px; color: var(--navy); font-weight: 500; line-height: 1.50; }
.cap-cards { display: flex; flex-direction: column; gap: 0; border: 1px solid rgba(35,55,70,0.09); border-radius: 4px; overflow: hidden; }
.cap-card {
  background: var(--white);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(35,55,70,0.07);
  display: flex; align-items: center; gap: 14px;
  transition: background 0.2s, padding-left 0.2s;
  font-size: 14.5px; color: var(--navy); font-weight: 500;
}
.cap-card:last-child { border-bottom: none; }
.cap-card:hover { background: var(--off-white); padding-left: 26px; }
.cap-card-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }

/* ============================================================
   INTERIOR — WHO THIS IS FOR
   ============================================================ */
.section-for {
  background: var(--cream);
  padding: 96px 80px;
}
.for-inner {
  max-width: 760px;
  margin: 0 auto;
}
.for-body { font-size: 16px; color: var(--text-mid); line-height: 1.75; margin-bottom: 24px; }
.for-list { list-style: none; padding: 0; }
.for-list li {
  font-size: 15px; color: var(--navy);
  padding: 12px 0 12px 22px; position: relative;
  border-bottom: 1px solid rgba(35,55,70,0.10); font-weight: 500;
}
.for-list li:last-child { border-bottom: none; }
.for-list li::before {
  content: ''; position: absolute; left: 0; top: 20px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange);
}

/* ============================================================
   SOLUTIONS HUB — OVERVIEW PAGE
   ============================================================ */

/* 2×2 solution cards grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(35,55,70,0.08);
  max-width: 1100px;
  margin: 0 auto;
}
.solution-card {
  background: var(--white);
  padding: 44px 44px 36px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  position: relative;
}
.solution-card:hover { background: var(--off-white); }
.solution-card-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 14px;
}
.solution-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.05;
  margin-bottom: 6px;
}
.solution-card-subtitle {
  font-size: 14px;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 18px;
}
.solution-card-challenge {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 22px;
  flex: 1;
}
.solution-card-enables {
  list-style: none;
  padding: 0;
  margin-bottom: 28px;
  border-top: 1px solid rgba(35,55,70,0.08);
  padding-top: 18px;
}
.solution-card-enables li {
  font-size: 13.5px;
  color: var(--navy);
  font-weight: 500;
  padding: 6px 0 6px 16px;
  position: relative;
  line-height: 1.4;
}
.solution-card-enables li::before {
  content: '';
  position: absolute;
  left: 0; top: 13px;
  width: 6px; height: 1px;
  background: var(--blue);
}
.solution-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}
.solution-card:hover .solution-card-link { gap: 14px; }
.solution-card-link::after {
  content: '→';
  font-size: 14px;
}

/* How We're Different — navy, mirrors value prop */
.section-different {
  background: var(--navy);
  padding: 96px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-different::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(105,195,232,0.05);
  pointer-events: none;
}
.section-different::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: rgba(238,116,33,0.04);
  pointer-events: none;
}
.section-different .section-label { color: var(--blue); }
.section-different .section-header { color: var(--white); margin-bottom: 16px; }
.different-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 28px;
  position: relative; z-index: 1;
}
.different-body {
  font-size: 16px;
  color: rgba(255,255,255,0.60);
  line-height: 1.75;
  max-width: 640px;
  margin: 0 auto 40px;
  position: relative; z-index: 1;
}
.different-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid rgba(105,195,232,0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative; z-index: 1;
}
.different-list li {
  padding: 16px 24px;
  font-size: 15px;
  color: rgba(255,255,255,0.70);
  font-weight: 500;
  border-bottom: 1px solid rgba(105,195,232,0.08);
  display: flex;
  align-items: center;
  gap: 14px;
  text-align: left;
}
.different-list li:last-child { border-bottom: none; }
.different-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* Who Our Solutions Are For — cream, mirrors section-for */
.section-solutions-for {
  background: var(--cream);
  padding: 96px 80px;
}
.solutions-for-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.solutions-for-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.solutions-for-list {
  list-style: none;
  padding: 0;
}
.solutions-for-list li {
  font-size: 15px;
  color: var(--navy);
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid rgba(35,55,70,0.10);
  font-weight: 500;
}
.solutions-for-list li:last-child { border-bottom: none; }
.solutions-for-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.solutions-for-closing {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.72;
  margin-top: 20px;
  font-style: italic;
  padding-left: 0;
}
.solutions-for-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.solutions-for-callout {
  background: var(--navy);
  padding: 40px;
  border-radius: 4px;
  border-left: 4px solid var(--orange);
}
.solutions-for-callout-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.solutions-for-callout-head em { color: var(--blue); font-style: normal; }
.solutions-for-callout-body {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.70;
}

/* ============================================================
   INTERIOR — CONNECTIONS SECTION (optional)
   ============================================================ */
.section-connections {
  background: var(--white);
  padding: 80px 80px;
  border-top: 1px solid rgba(35,55,70,0.06);
}
.connections-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.connections-intro {
  max-width: 640px;
  margin-bottom: 36px;
}
.connections-intro .section-header { margin-bottom: 14px; }
.connections-intro p {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.72;
}
.connections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(35,55,70,0.09);
  border-radius: 4px;
  overflow: hidden;
}
.connection-item {
  padding: 28px 30px;
  border-right: 1px solid rgba(35,55,70,0.09);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  display: block;
}
.connection-item:last-child { border-right: none; }
.connection-item:hover { background: var(--off-white); }
.connection-item-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 700;
  margin-bottom: 8px;
}
.connection-item-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.15;
}
.connection-item-desc {
  font-size: 13.5px;
  color: var(--text-mid);
  line-height: 1.58;
}
.connections-thread {
  margin-top: 28px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--orange);
  padding: 4px 0 4px 18px;
}

/* ============================================================
   RESPONSIVE — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .topbar-inner { padding: 0 32px; }
  .site-header { padding: 0 32px; }
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero .hero-left { padding: 72px 40px; border-right: none; border-bottom: 1px solid rgba(105,195,232,0.1); }
  .home-hero .hero-right { display: none; } /* SVG visual hidden on tablet/mobile — design holds without it */

  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero .hero-left { padding: 64px 40px; border-right: none; border-bottom: 1px solid rgba(105,195,232,0.1); }
  .page-hero .hero-right { padding: 40px; }
  .jump-nav { display: none; } /* collapse jump nav on tablet */
  .hero-cta-block { margin-top: 0; }

  .section-problem,
  .section-value,
  .section-services,
  .section-process,
  .section-trust,
  .section-final-cta { padding: 72px 40px; }

  .section-serve { padding: 72px 40px; grid-template-columns: 1fr; gap: 40px; }
  .section-challenge,
  .section-approach,
  .section-outcomes,
  .section-for { padding: 72px 40px; }
  .section-solutions-nav { padding: 0 40px; }

  .process-steps { grid-template-columns: repeat(3, 1fr); }
  .step:nth-child(4),
  .step:nth-child(5) { border-top: 1px solid rgba(105,195,232,0.10); }
  .step:nth-child(3) { border-right: none; }

  .challenge-inner { grid-template-columns: 1fr; gap: 40px; }
  .approach-head { grid-template-columns: 1fr; gap: 16px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }

  .solutions-nav-inner { grid-template-columns: 1fr; gap: 0; }
  .solutions-nav-label { padding: 16px 0 0; }
  .solutions-nav-links { flex-wrap: wrap; }
  .solutions-nav-links li a { padding: 14px 18px; font-size: 13px; }

  .footer-inner { padding: 48px 40px 36px; gap: 40px; }
  .footer-bottom-inner { padding: 16px 40px; }

  /* Solutions hub */
  .section-different,
  .section-solutions-for { padding: 72px 40px; }
  .solutions-for-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-connections { padding: 72px 40px; }
  .connections-grid { grid-template-columns: 1fr; }
  .connection-item { border-right: none; border-bottom: 1px solid rgba(35,55,70,0.09); }
  .connection-item:last-child { border-bottom: none; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Top bar — compact on mobile */
  .topbar-inner { padding: 0 20px; height: 32px; }
  .topbar-left { gap: 7px; }
  .topbar-link { font-size: 11.5px; }
  .topbar-link svg { display: none; }

  /* Nav */
  .site-header { padding: 0 20px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 108px; left: 0; right: 0;
    background: var(--white);
    padding: 24px 20px 32px;
    gap: 0;
    border-bottom: 2px solid rgba(35,55,70,0.08);
    box-shadow: 0 8px 32px rgba(35,55,70,0.12);
    z-index: 998;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid rgba(35,55,70,0.06);
    font-size: 16px;
  }
  .nav-links a::after { display: none; }
  .nav-links li:last-child a { border-bottom: none; margin-top: 16px; text-align: center; }
  .nav-cta { display: block; width: 100%; text-align: center; padding: 14px !important; }
  .nav-toggle { display: flex; }

  /* Hero */
  .home-hero .hero-left { padding: 56px 20px; }
  .hero-headline { font-size: 44px; }
  .hero-eyebrow { margin-bottom: 16px; }
  .hero-subhead { font-size: 15px; max-width: 100%; }
  .hero-support { max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 14px; }
  .btn-ghost { margin-left: 0; }

  /* Page hero */
  .page-hero .hero-left { padding: 48px 20px; }
  .page-title { font-size: 42px; }
  .page-hero .hero-right { padding: 32px 20px; }

  /* Sections */
  .section-problem,
  .section-industries-intro,
  .section-value,
  .section-services,
  .section-process,
  .section-serve,
  .section-trust,
  .section-final-cta,
  .section-challenge,
  .section-approach,
  .section-outcomes,
  .section-for { padding: 56px 20px; }
  .section-solutions-nav { padding: 0 20px; }

  .section-header { font-size: 32px; }
  .cta-headline { font-size: 34px; }

  /* Cards */
  .cards-grid { grid-template-columns: 1fr; }

  /* Process — vertical stack */
  .process-steps { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid rgba(105,195,232,0.10); }
  .step:last-child { border-bottom: none; }
  .step:nth-child(4),
  .step:nth-child(5) { border-top: none; }

  /* Approach grid */
  .approach-grid { grid-template-columns: 1fr; }

  /* Metrics */
  .metrics-row { flex-direction: column; }
  .metric { border-right: none; border-bottom: 1px solid rgba(35,55,70,0.09); }
  .metric:last-child { border-bottom: none; }

  /* Solutions nav */
  .solutions-nav-links { flex-direction: column; }
  .solutions-nav-links li a { border-right: none; border-bottom: 1px solid rgba(105,195,232,0.08); padding: 14px 0; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 36px; padding: 40px 20px 28px; }
  .footer-bottom-inner { padding: 16px 20px; text-align: center; }
  .footer-certs { flex-direction: row; flex-wrap: wrap; gap: 12px; }

  /* Solutions hub */
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { padding: 32px 20px; }
  .section-different,
  .section-solutions-for,
  .section-connections { padding: 56px 20px; }
  .different-list { max-width: 100%; }
  .solutions-for-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ============================================================
   HOW WE WORK — PHILOSOPHY SECTION
   ============================================================ */
.section-philosophy {
  background: var(--off-white);
  padding: 96px 80px;
  border-top: 1px solid rgba(35,55,70,0.06);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.philosophy-list {
  list-style: none;
  padding: 0;
  margin: 0;
  border: 1px solid rgba(35,55,70,0.10);
  border-radius: 4px;
  overflow: hidden;
}
.philosophy-list li {
  padding: 18px 24px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(35,55,70,0.08);
  line-height: 1.5;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.philosophy-list li:last-child { border-bottom: none; }
.philosophy-list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 7px;
}

/* ============================================================
   HOW WE WORK — 5-STEP EXPANDED GRID
   ============================================================ */
.hww-steps { grid-template-columns: repeat(3, 1fr) !important; }
.hww-steps .approach-cell:nth-child(4),
.hww-steps .approach-cell:nth-child(5) {
  /* Last two steps span to center in the bottom row */
  flex: 1;
}

/* 6th cell — CTA */
.approach-cell-cta {
  background: var(--navy-mid) !important;
  border: 1px solid rgba(105,195,232,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.approach-cell-cta:hover { background: #354f63 !important; }
.approach-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}
.approach-cta-text {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.45;
}

/* ============================================================
   HOW WE WORK — ENGAGEMENT + EXPECT
   ============================================================ */
.section-engagement {
  background: var(--cream);
  padding: 96px 80px;
}
.engagement-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.engagement-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}
.engagement-list li {
  padding: 14px 0 14px 22px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(35,55,70,0.08);
  position: relative;
  line-height: 1.4;
}
.engagement-list li:last-child { border-bottom: none; }
.engagement-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 21px;
  width: 8px; height: 1px;
  background: var(--orange);
}
.expect-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
  counter-reset: expect;
}
.expect-list li {
  counter-increment: expect;
  padding: 14px 0 14px 44px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(35,55,70,0.08);
  position: relative;
  line-height: 1.4;
}
.expect-list li:last-child { border-bottom: none; }
.expect-list li::before {
  content: counter(expect, decimal-leading-zero);
  position: absolute;
  left: 0;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.6;
}
.expect-closing {
  font-size: 14px;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.65;
}

/* ============================================================
   ABOUT — WHO WE ARE
   ============================================================ */
.section-who {
  background: var(--white);
  padding: 96px 80px;
}
.who-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}
.who-right .content-p { margin-bottom: 20px; }
.who-right .content-p:last-child { margin-bottom: 0; }

/* ============================================================
   ABOUT — LEADERSHIP
   ============================================================ */
.section-leadership {
  background: var(--navy);
  padding: 96px 80px;
}
.leadership-inner { max-width: 1100px; margin: 0 auto; }
.leadership-head {
  margin-bottom: 56px;
}
.leadership-head .section-label { color: var(--blue); }
.leadership-head .section-header { color: var(--white); }
.leadership-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  max-width: 640px;
  margin-top: 12px;
}
.leader-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.05);
}
.leader-card {
  background: var(--navy-mid);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
}
.leader-photo {
  width: 80px; height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid rgba(105,195,232,0.20);
  flex-shrink: 0;
}
.leader-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.leader-photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-mid) 100%);
}
.leader-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 4px;
}
.leader-title {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}
.leader-bio {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

/* ============================================================
   ABOUT — WHY CLIENTS CHOOSE DIG
   ============================================================ */
.section-why {
  background: var(--off-white);
  padding: 96px 80px;
  text-align: center;
}
.why-inner { max-width: 700px; margin: 0 auto; }
.why-list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  border: 1px solid rgba(35,55,70,0.09);
  border-radius: 4px;
  overflow: hidden;
  text-align: left;
}
.why-list li {
  padding: 18px 24px;
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(35,55,70,0.08);
  display: flex;
  align-items: center;
  gap: 16px;
  line-height: 1.4;
}
.why-list li:last-child { border-bottom: none; }
.why-list li::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-hero { padding-bottom: 80px; }
.contact-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 80px 0;
}
.insights-hero .contact-hero-inner { text-align: center; margin: 0 auto; }

.section-contact-body { background: var(--white); padding: 80px; }
.contact-body-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
/* CF7 form overrides */
.contact-form-col .wpcf7 { margin: 0; }
.contact-form-col .wpcf7 input[type="text"],
.contact-form-col .wpcf7 input[type="email"],
.contact-form-col .wpcf7 input[type="tel"],
.contact-form-col .wpcf7 select,
.contact-form-col .wpcf7 textarea {
  width: 100%;
  background: var(--off-white);
  border: 1px solid rgba(35,55,70,0.15);
  border-radius: 3px;
  padding: 12px 16px;
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  color: var(--navy);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.contact-form-col .wpcf7 input:focus,
.contact-form-col .wpcf7 textarea:focus,
.contact-form-col .wpcf7 select:focus {
  outline: none;
  border-color: var(--blue);
}
.contact-form-col .wpcf7 textarea { min-height: 140px; resize: vertical; }
.contact-form-col .wpcf7 input[type="submit"] {
  background: var(--orange);
  color: var(--white);
  border: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 36px;
  cursor: pointer;
  border-radius: 3px;
  transition: background 0.2s, transform 0.15s;
}
.contact-form-col .wpcf7 input[type="submit"]:hover {
  background: var(--navy);
  transform: translateY(-1px);
}
.contact-form-placeholder {
  background: var(--off-white);
  border: 1px dashed rgba(35,55,70,0.20);
  border-radius: 4px;
  padding: 40px;
  font-size: 15px;
  color: var(--text-mid);
}
.contact-privacy {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gray-mid);
  line-height: 1.6;
}
/* Sidebar */
.contact-sidebar-block {
  background: var(--off-white);
  padding: 36px;
  border-radius: 4px;
  margin-bottom: 24px;
}
.contact-sidebar-header {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 24px;
  line-height: 1.1;
}
.contact-next-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: cnext;
}
.contact-next-list li {
  counter-increment: cnext;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(35,55,70,0.08);
}
.contact-next-list li:last-child { border-bottom: none; }
.contact-next-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
  line-height: 1.3;
}
.contact-next-text {
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.5;
}
.contact-sidebar-callout {
  background: var(--navy);
  padding: 32px;
  border-radius: 4px;
  border-left: 4px solid var(--orange);
}
.contact-sidebar-callout-head {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.2;
}
.contact-sidebar-callout-body {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.68;
  margin: 0;
}

/* ============================================================
   INDUSTRIES
   ============================================================ */
.section-industries-list { background: var(--white); }
.industry-row {
  padding: 80px 80px;
  border-bottom: 1px solid rgba(35,55,70,0.07);
}
.industry-row:nth-child(even) { background: var(--off-white); }
.industry-row-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 80px;
  align-items: start;
}
.industry-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 800;
  color: rgba(35,55,70,0.06);
  line-height: 0.8;
  margin-bottom: 16px;
  letter-spacing: -2px;
}
.industry-pts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
}
.industry-pts li {
  padding: 12px 0 12px 22px;
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  border-bottom: 1px solid rgba(35,55,70,0.08);
  position: relative;
  line-height: 1.4;
}
.industry-pts li:last-child { border-bottom: none; }
.industry-pts li::before {
  content: '';
  position: absolute;
  left: 0; top: 20px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ============================================================
   INSIGHTS ARCHIVE
   ============================================================ */
.section-insights { background: var(--white); padding: 80px; }
.insights-inner { max-width: 1100px; margin: 0 auto; }
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(35,55,70,0.06);
  margin-bottom: 56px;
}
.insight-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
  transition: background 0.2s;
}
.insight-card:hover { background: var(--off-white); }
.insight-card-img {
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.insight-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.insight-card:hover .insight-card-img img { transform: scale(1.03); }
.insight-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
.insight-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.insight-card-date {
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.3px;
}
.insight-card-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
  background: rgba(238,116,33,0.08);
  padding: 3px 8px;
  border-radius: 2px;
}
.insight-card-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 12px;
}
.insight-card-title a { color: inherit; text-decoration: none; }
.insight-card-title a:hover { color: var(--blue); }
.insight-card-excerpt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 20px;
}
.insight-card-link {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  text-decoration: none;
}
.insight-card-link:hover { color: var(--navy); }
.insights-pagination { text-align: center; }
.insights-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.insights-pagination .page-numbers a,
.insights-pagination .page-numbers span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 8px 14px;
  border: 1px solid rgba(35,55,70,0.15);
  color: var(--navy);
  text-decoration: none;
  border-radius: 3px;
  transition: all 0.2s;
}
.insights-pagination .page-numbers .current,
.insights-pagination .page-numbers a:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.insights-empty { text-align: center; padding: 80px 0; color: var(--text-mid); font-size: 16px; }

/* ============================================================
   SINGLE POST
   ============================================================ */
.post-hero { padding-bottom: 72px; }
.post-hero-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 80px 0;
}
.post-meta-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.post-read-time {
  font-size: 12px;
  color: var(--gray-mid);
  letter-spacing: 0.3px;
}
.post-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 20px;
}
.post-deck {
  font-size: 18px;
  color: rgba(255,255,255,0.60);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}
.post-featured-img {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 80px;
  margin-bottom: -40px;
  position: relative;
  z-index: 2;
}
.post-featured-img img { width: 100%; height: auto; display: block; border-radius: 4px; }
.section-post-content {
  background: var(--white);
  padding: 80px 80px 96px;
  padding-top: 80px;
}
.post-content-inner { max-width: 760px; margin: 0 auto; }
.post-body {
  font-size: 17px;
  color: var(--text-dark);
  line-height: 1.80;
}
.post-body h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  margin: 48px 0 16px;
  line-height: 1.1;
}
.post-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin: 36px 0 12px;
}
.post-body p { margin-bottom: 24px; }
.post-body ul, .post-body ol { margin: 0 0 24px 24px; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: var(--blue); }
.post-body a:hover { color: var(--navy); }
.post-body blockquote {
  border-left: 4px solid var(--orange);
  margin: 36px 0;
  padding: 4px 0 4px 28px;
  font-size: 19px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.55;
}
.post-body img { max-width: 100%; height: auto; border-radius: 3px; margin: 12px 0; }
.post-footer { margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(35,55,70,0.08); }
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.post-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy);
  background: var(--off-white);
  border: 1px solid rgba(35,55,70,0.12);
  padding: 4px 12px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.2s;
}
.post-tag:hover { background: var(--cream); }
.post-nav {
  background: var(--off-white);
  border-top: 1px solid rgba(35,55,70,0.08);
  padding: 48px 80px;
}
.post-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.post-nav-item { text-decoration: none; display: flex; flex-direction: column; gap: 6px; }
.post-nav-next { text-align: right; }
.post-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange);
}
.post-nav-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  transition: color 0.2s;
}
.post-nav-item:hover .post-nav-title { color: var(--blue); }

/* ============================================================
   RESPONSIVE ADDITIONS — TABLET (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .philosophy-inner,
  .engagement-inner,
  .who-inner { grid-template-columns: 1fr; gap: 40px; }
  .section-philosophy,
  .section-engagement,
  .section-who,
  .section-leadership,
  .section-why { padding: 72px 40px; }
  .leader-cards { grid-template-columns: 1fr; gap: 2px; }
  .contact-hero-inner,
  .post-hero-inner { padding: 60px 40px 0; }
  .section-contact-body,
  .section-insights,
  .section-post-content,
  .post-nav { padding: 72px 40px; }
  .post-featured-img { padding: 0 40px; }
  .contact-body-inner { grid-template-columns: 1fr; gap: 40px; }
  .industry-row { padding: 64px 40px; }
  .industry-row-inner { grid-template-columns: 1fr; gap: 32px; }
  .insights-grid { grid-template-columns: 1fr 1fr; }
  .post-nav-inner { grid-template-columns: 1fr; }
  .post-nav-next { text-align: left; }
  .hww-steps { grid-template-columns: repeat(2, 1fr) !important; }
}

/* ============================================================
   RESPONSIVE ADDITIONS — MOBILE (≤768px)
   ============================================================ */
@media (max-width: 768px) {
  .contact-hero-inner,
  .post-hero-inner { padding: 40px 20px 0; }
  .section-contact-body,
  .section-insights,
  .section-post-content,
  .section-philosophy,
  .section-engagement,
  .section-who,
  .section-leadership,
  .section-why,
  .post-nav { padding: 56px 20px; }
  .post-featured-img { padding: 0 20px; }
  .industry-row { padding: 48px 20px; }
  .insights-grid { grid-template-columns: 1fr; }
  .leader-cards { gap: 0; }
  .hww-steps { grid-template-columns: 1fr !important; }
}
/* ============================================================
   ABOUT PAGE CSS — ADD TO BOTTOM OF main.css
   ============================================================ */

/* Philosophy — dark textured variant (About page only) */
.section-philosophy--dark {
  background-color: var(--navy-deep);
  background-image: radial-gradient(rgba(105,195,232,0.07) 1px, transparent 1px);
  background-size: 22px 22px;
  border-top: none;
}
.section-philosophy--dark .section-label { color: var(--blue); }
.section-philosophy--dark .section-header { color: var(--white); }
.section-philosophy--dark .content-p { color: rgba(255,255,255,0.65); }
.section-philosophy--dark .philosophy-list {
  border-color: rgba(105,195,232,0.15);
}
.section-philosophy--dark .philosophy-list li {
  color: rgba(255,255,255,0.80);
  border-bottom-color: rgba(105,195,232,0.10);
}

/* Founders intro section */
.section-founders-intro {
  background: var(--white);
  padding: 80px 80px 40px;
}
.founders-intro-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.founders-intro-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 820px;
  margin-bottom: 18px;
}
.founders-intro-body:last-child { margin-bottom: 0; }

/* Two-founder card layout */
.leadership-inner--founders {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.leadership-inner--founders .leader-cards--two {
  display: grid;
  grid-template-columns: repeat(2, 1fr) !important;
  background: none;
  gap: 2px;
}
.leader-card--founder {
  padding: 48px 44px !important;
  flex-direction: column;
  gap: 28px;
}

/* Photo + contact side by side */
.leader-top {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.leader-photo--large {
  width: 160px !important;
  height: 160px !important;
  flex-shrink: 0;
  margin-bottom: 0 !important;
  border-radius: 4px !important;
  border: 2px solid rgba(105,195,232,0.15) !important;
}
.leader-photo--large img { border-radius: 3px; }

/* Contact block to the right of photo */
.leader-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding-top: 4px;
}
.leader-contact .leader-name { margin-bottom: 2px; }
.leader-contact .leader-title { margin-bottom: 14px; }
.leader-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--gray-mid);
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
.leader-phone svg { opacity: 0.6; flex-shrink: 0; }

/* Social icons */
.leader-social-row {
  display: flex;
  gap: 8px;
  margin-top: 0;
}
.leader-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(105,195,232,0.20);
  border-radius: 4px;
  text-decoration: none;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.leader-social-icon:hover {
  color: var(--white);
  border-color: var(--blue);
  background: rgba(105,195,232,0.10);
}

.leader-card--founder .leader-bio {
  font-size: 14.5px;
  color: rgba(255,255,255,0.55);
  line-height: 1.72;
  margin: 0;
}

@media (max-width: 1024px) {
  .section-founders-intro { padding: 60px 40px 0; }
  .leadership-inner--founders .leader-cards--two {
    grid-template-columns: 1fr !important;
  }
  .leader-card--founder { padding: 36px !important; }
}
@media (max-width: 768px) {
  .section-founders-intro { padding: 48px 20px 0; }
  .leader-card--founder { padding: 28px 20px !important; }
}
/* ============================================================
   INDUSTRIES PAGE CSS — ADD TO BOTTOM OF main.css
   ============================================================ */

/* STAT BAND */
.industries-stat-band {
  background: var(--navy);
  border-bottom: 1px solid rgba(105,195,232,0.10);
  padding: 48px 80px;
}
.industries-stat-band-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 56px;
}
.ind-stat { text-align: center; flex-shrink: 0; }
.ind-stat-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  letter-spacing: -2px;
}
.ind-stat-num span {
  font-size: 36px;
  color: var(--orange);
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}
.ind-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.45;
  margin-top: 6px;
  max-width: 140px;
}
.ind-stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(105,195,232,0.15);
  flex-shrink: 0;
}
.ind-stat-text {
  font-size: 15px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  font-style: italic;
  flex: 1;
}

/* INDUSTRY ROWS */
.section-industries-list { background: var(--white); }

.industry-row {
  border-bottom: 1px solid rgba(35,55,70,0.08);
  padding: 80px;
}
.industry-row:last-child { border-bottom: none; }
.industry-row:nth-child(even) { background: var(--off-white); }

.industry-row-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.industry-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--orange);
  margin-bottom: 12px;
  text-transform: uppercase;
}
.industry-row-left .section-header {
  color: var(--navy);
  margin-bottom: 20px;
}
.industry-row-left .content-p {
  color: var(--text-mid);
  font-size: 15.5px;
  line-height: 1.75;
}
.industry-row-right {
  padding-top: 8px;
}
.industry-row-right .section-label {
  color: var(--blue);
  margin-bottom: 20px;
}
.industry-pts {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border: 1px solid rgba(35,55,70,0.10);
  border-radius: 6px;
  overflow: hidden;
}
.industry-pts li {
  padding: 14px 20px;
  font-size: 14.5px;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(35,55,70,0.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.industry-pts li:last-child { border-bottom: none; }
.industry-pts li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.btn-ghost-sm {
  display: inline-block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  border-radius: 3px;
  padding: 10px 20px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-ghost-sm:hover {
  background: var(--navy);
  color: var(--white);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .industries-stat-band { padding: 40px; }
  .industries-stat-band-inner { gap: 36px; }
  .industry-row { padding: 60px 40px; }
  .industry-row-inner { gap: 48px; }
}
@media (max-width: 768px) {
  .industries-stat-band { padding: 40px 20px; }
  .industries-stat-band-inner { flex-direction: column; gap: 28px; text-align: center; }
  .ind-stat-divider { width: 64px; height: 1px; }
  .ind-stat-label { max-width: 200px; margin: 6px auto 0; }
  .industry-row { padding: 48px 20px; }
  .industry-row-inner { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================================
   INTERIOR SOLUTION PAGES — FULL-BLEED LAYOUT (OPTION 2)
   ============================================================ */

/* ── PAGE HERO — wide, two-column, larger presence ── */
.page-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--navy);
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  border: 70px solid rgba(105,195,232,0.05);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 42%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 38px solid rgba(238,116,33,0.05);
  pointer-events: none;
}

/* Left text panel */
.page-hero .hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 56px 80px 80px;
  border-right: 1px solid rgba(105,195,232,0.10);
  position: relative;
  z-index: 1;
}
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.30);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.breadcrumb a {
  color: rgba(255,255,255,0.30);
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb span { color: rgba(255,255,255,0.15); }

.page-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 62px;
  font-weight: 800;
  color: var(--orange);
  line-height: 0.95;
  margin-bottom: 8px;
  letter-spacing: -0.5px;
}
.page-title em {
  color: var(--white);
  font-style: normal;
  display: block;
}
.page-subtitle {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.48);
  margin-bottom: 28px;
}
.page-intro {
  font-size: 16px;
  color: rgba(255,255,255,0.68);
  line-height: 1.72;
  max-width: 440px;
}

/* Right panel — quick nav + mini CTA */
.page-hero .hero-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 80px 80px 56px;
  position: relative;
  z-index: 1;
  gap: 0;
}
.hero-right-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(105,195,232,0.12);
}

/* Jump navigation */
.jump-nav {
  list-style: none;
  padding: 0;
  margin-bottom: 36px;
}
.jump-nav li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(105,195,232,0.07);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s, padding-left 0.2s;
}
.jump-nav li:last-child a { border-bottom: none; }
.jump-nav li a:hover {
  color: var(--blue);
  padding-left: 6px;
}
.jump-nav li a::before {
  content: '';
  width: 12px;
  height: 1px;
  background: rgba(105,195,232,0.30);
  flex-shrink: 0;
  transition: width 0.2s, background 0.2s;
}
.jump-nav li a:hover::before {
  width: 20px;
  background: var(--blue);
}

/* Mini CTA in hero right */
.hero-cta-block { margin-top: 4px; }
.hero-cta-label {
  font-size: 13px;
  color: rgba(255,255,255,0.40);
  margin-bottom: 14px;
  line-height: 1.55;
}

/* ── SOLUTIONS NAV BAND ── */
.section-solutions-nav {
  background: var(--navy-deep);
  padding: 48px 80px;
  border-top: 1px solid rgba(105,195,232,0.08);
}
.solutions-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 60px;
  align-items: center;
}
.solutions-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  font-weight: 600;
  white-space: nowrap;
}
.solutions-nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.solutions-nav-links li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  border-right: 1px solid rgba(105,195,232,0.08);
  transition: color 0.2s, background 0.2s;
}
.solutions-nav-links li:last-child a { border-right: none; }
.solutions-nav-links li a:hover {
  color: var(--blue);
  background: rgba(105,195,232,0.04);
}
.solutions-nav-links li a.active {
  color: var(--white);
  font-weight: 600;
  border-bottom: 2px solid var(--orange);
}

/* ── CHALLENGE SECTION ── */
.section-challenge {
  background: var(--white);
  padding: 96px 80px;
}
.challenge-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.challenge-left .section-label { text-align: left; }
.challenge-left .section-header { margin-bottom: 20px; }

/* Pain cards — right side */
.pain-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pain-card {
  background: var(--off-white);
  border: 1px solid rgba(35,55,70,0.08);
  border-left: 3px solid var(--orange);
  padding: 22px 24px;
  border-radius: 3px;
  transition: box-shadow 0.2s, transform 0.2s;
  cursor: default;
}
.pain-card:hover {
  box-shadow: 0 6px 24px rgba(35,55,70,0.09);
  transform: translateX(4px);
}
.pain-card h4 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.pain-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.58;
}

/* ── APPROACH SECTION ── */
.section-approach {
  background: var(--navy-deep);
  padding: 96px 80px;
  position: relative;
  overflow: hidden;
}
.section-approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(105,195,232,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(105,195,232,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.section-approach::after {
  content: '';
  position: absolute;
  top: -160px;
  right: -160px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 90px solid rgba(105,195,232,0.05);
  pointer-events: none;
}
.approach-bg-circle {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 60px solid rgba(238,116,33,0.05);
  pointer-events: none;
}
.approach-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.approach-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.approach-head .section-label { color: var(--blue); }
.approach-head .section-header { color: var(--white); }
.approach-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.48);
  line-height: 1.68;
  align-self: end;
}

/* 2x2 approach grid */
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: rgba(105,195,232,0.08);
}
.approach-cell {
  background: var(--navy-deep);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
  cursor: default;
}
.approach-cell:hover { background: rgba(35,55,70,0.85); }
.approach-cell-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: rgba(105,195,232,0.06);
  line-height: 1;
  pointer-events: none;
}
.approach-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--orange);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.approach-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.approach-body {
  font-size: 14px;
  color: rgba(255,255,255,0.50);
  line-height: 1.65;
  position: relative;
  z-index: 1;
}
.approach-body ul {
  list-style: none;
  padding: 0;
  margin-top: 8px;
}
.approach-body ul li {
  padding: 5px 0 5px 14px;
  position: relative;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}
.approach-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 13px;
  width: 6px;
  height: 1px;
  background: var(--blue);
}

/* ── OUTCOMES + CAPABILITIES ── */
.section-outcomes {
  background: var(--off-white);
  padding: 96px 80px;
}
.outcomes-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
}
.outcomes-col .section-header { margin-bottom: 28px; }

/* Outcome list */
.outcome-list {
  list-style: none;
  padding: 0;
}
.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(35,55,70,0.08);
}
.outcome-item:first-child { padding-top: 0; }
.outcome-item:last-child { border-bottom: none; }
.out-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
  margin-top: 5px;
}
.out-text {
  font-size: 15px;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.50;
}

/* Capabilities column */
.cap-col .section-label { text-align: left; }
.cap-col .section-header { margin-bottom: 28px; }
.cap-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(35,55,70,0.09);
  border-radius: 4px;
  overflow: hidden;
}
.cap-card {
  background: var(--white);
  padding: 16px 20px;
  border-bottom: 1px solid rgba(35,55,70,0.07);
  display: flex;
  align-items: center;
  gap: 14px;
  transition: background 0.2s, padding-left 0.2s;
  cursor: default;
  font-size: 14.5px;
  color: var(--navy);
  font-weight: 500;
}
.cap-card:last-child { border-bottom: none; }
.cap-card:hover {
  background: var(--off-white);
  padding-left: 26px;
}
.cap-card-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ── WHO THIS IS FOR ── */
.section-for {
  background: var(--cream);
  padding: 96px 80px;
}
.for-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 72px;
  align-items: start;
  max-width: 760px;
}
.for-left .section-header { margin-bottom: 18px; }
.for-body {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.for-list {
  list-style: none;
  padding: 0;
}
.for-list li {
  font-size: 15px;
  color: var(--navy);
  padding: 12px 0 12px 22px;
  position: relative;
  border-bottom: 1px solid rgba(35,55,70,0.10);
  font-weight: 500;
}
.for-list li:last-child { border-bottom: none; }
.for-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 20px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* Right callout (if used on other interior pages) */
.for-right {
  background: var(--navy);
  padding: 44px 40px;
  border-radius: 4px;
  border-left: 4px solid var(--orange);
}
.callout-headline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.callout-headline em {
  color: var(--blue);
  font-style: normal;
}
.callout-body {
  font-size: 14.5px;
  color: rgba(255,255,255,0.58);
  line-height: 1.70;
  margin-bottom: 28px;
}

/* ── RESPONSIVE: INTERIOR PAGES ── */
@media (max-width: 1024px) {
  .page-hero { grid-template-columns: 1fr; min-height: auto; }
  .page-hero .hero-left { padding: 60px 40px; border-right: none; border-bottom: 1px solid rgba(105,195,232,0.10); }
  .page-hero .hero-right { padding: 48px 40px; }
  .section-solutions-nav { padding: 36px 40px; }
  .solutions-nav-inner { grid-template-columns: 1fr; gap: 24px; }
  .solutions-nav-links { flex-wrap: wrap; }
  .section-challenge { padding: 72px 40px; }
  .challenge-inner { grid-template-columns: 1fr; gap: 48px; }
  .section-approach { padding: 72px 40px; }
  .approach-head { grid-template-columns: 1fr; gap: 28px; }
  .approach-grid { grid-template-columns: 1fr; }
  .section-outcomes { padding: 72px 40px; }
  .outcomes-inner { grid-template-columns: 1fr; gap: 48px; }
  .section-for { padding: 72px 40px; }
  .section-final-cta { padding: 80px 40px; }
}

@media (max-width: 768px) {
  .page-hero .hero-left { padding: 48px 20px; }
  .page-hero .hero-right { padding: 36px 20px; }
  .page-title { font-size: 48px; }
  .section-solutions-nav { padding: 28px 20px; }
  .solutions-nav-links li a { padding: 12px 16px; font-size: 13px; }
  .section-challenge { padding: 56px 20px; }
  .section-approach { padding: 56px 20px; }
  .approach-grid { gap: 1px; }
  .approach-cell { padding: 28px 20px; }
  .section-outcomes { padding: 56px 20px; }
  .section-for { padding: 56px 20px; }
  .section-final-cta { padding: 64px 20px; }
  .cta-headline { font-size: 38px; }
}
/* ============================================================
   INSIGHTS — NAV BAND
   Mirrors .section-solutions-nav visual pattern
   ============================================================ */
.section-insights-nav {
  background: var(--navy-deep);
  padding: 0 80px;
  border-top: 1px solid rgba(105,195,232,0.08);
}
.insights-nav-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
}
.insights-nav-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.28); font-weight: 600;
  white-space: nowrap;
}
.insights-nav-links { display: flex; gap: 0; list-style: none; }
.insights-nav-links li a {
  display: flex; align-items: center;
  padding: 20px 28px;
  font-size: 13.5px; font-weight: 500;
  color: rgba(255,255,255,0.48);
  text-decoration: none;
  border-right: 1px solid rgba(105,195,232,0.08);
  transition: color 0.2s, background 0.2s;
}
.insights-nav-links li:last-child a { border-right: none; }
.insights-nav-links li a:hover { color: var(--blue); background: rgba(105,195,232,0.04); }
.insights-nav-links li a.active {
  color: var(--white); font-weight: 600;
  border-bottom: 2px solid var(--orange);
}

/* ============================================================
   INSIGHTS — CONTENT SECTIONS (parent page teasers)
   ============================================================ */
.section-insights-dark {
  background: var(--white);
  padding: 96px 80px;
}
.section-insights-light {
  background: var(--cream);
  padding: 96px 80px;
}
.insights-section-inner {
  max-width: 800px; margin: 0 auto;
}
.section-insights-dark .section-header { color: var(--navy); }
.section-insights-dark .section-label  { color: var(--orange); }
.section-insights-light .section-header { color: var(--navy); }
.section-intro-text {
  font-size: 18px; font-weight: 600; line-height: 1.60;
  margin-bottom: 16px;
}
.section-insights-dark .section-intro-text  { color: var(--text-dark); }
.section-insights-light .section-intro-text { color: var(--text-dark); }
.ins-body-light { color: var(--text-mid) !important; }

.insights-outcomes-highlights {
  background: rgba(35,55,70,0.04);
  border-left: 3px solid var(--navy);
  padding: 24px 28px;
  border-radius: 3px;
  margin: 36px 0;
}
.insights-outcomes-highlights--light {
  background: rgba(35,55,70,0.06);
  border-left-color: var(--navy);
}
.insights-highlights-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--navy); margin-bottom: 16px;
}
.insights-outcomes-highlights--light .insights-highlights-label { color: var(--navy); }

.insights-outcomes-list { list-style: none; padding: 0; margin: 0; }
.insights-outcomes-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  font-size: 15px; line-height: 1.60;
  color: var(--text-mid);
  border-bottom: 1px solid rgba(35,55,70,0.08);
}
.insights-outcomes-list li:last-child { border-bottom: none; }
.insights-outcomes-list li::before {
  content: '→'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}
.insights-outcomes-list--light li {
  color: var(--text-mid);
  border-bottom-color: rgba(35,55,70,0.08);
}
.insights-outcomes-list--light li::before { color: var(--navy); }

.insights-coming-soon {
  font-style: italic; font-size: 15px;
  color: var(--text-mid); margin-top: 24px; margin-bottom: 8px;
}
.insights-availability-note {
  font-size: 14px; color: var(--text-mid);
  opacity: 0.80; line-height: 1.65;
}

/* ============================================================
   CLIENT OUTCOMES — EXPANDABLE CARDS
   ============================================================ */
.section-outcomes-content {
  background: var(--gray-light);
  padding: 72px 80px;
}
.outcomes-cards-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 20px;
}

.outcome-card {
  background: var(--white);
  border: 1px solid rgba(35,55,70,0.08);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(35,55,70,0.06);
  transition: box-shadow 0.25s;
  overflow: hidden;
}
.outcome-card:nth-child(even) { background: var(--cream); }
.outcome-card:hover { box-shadow: 0 4px 18px rgba(35,55,70,0.11); }
.outcome-card.is-expanded { box-shadow: 0 6px 28px rgba(35,55,70,0.13); }

.outcome-header {
  display: grid;
  grid-template-columns: 64px 1fr 48px;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s;
}
.outcome-card.is-expanded .outcome-header { border-bottom-color: var(--blue); }

.outcome-number {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 800;
  color: rgba(105,195,232,0.28);
  line-height: 1; text-align: center;
  transition: color 0.25s;
}
.outcome-card.is-expanded .outcome-number,
.outcome-card:hover .outcome-number { color: var(--blue); }

.outcome-title-group h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 26px; font-weight: 700; line-height: 1.15;
  color: var(--navy); margin: 0 0 6px 0;
}
.outcome-metrics {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600;
  color: var(--blue); letter-spacing: 0.5px;
  display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
}
.metric-sep { color: rgba(35,55,70,0.25); }

.expand-toggle {
  width: 40px; height: 40px; border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(105,195,232,0.35);
  color: var(--navy);
  font-size: 22px; font-weight: 300; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, color 0.25s, transform 0.2s;
  flex-shrink: 0;
}
.expand-toggle:hover {
  background: var(--blue); border-color: var(--blue);
  color: var(--navy); transform: scale(1.08);
}
.outcome-card.is-expanded .expand-toggle {
  background: var(--navy); border-color: var(--navy); color: var(--white);
}
.expand-toggle:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }

.outcome-summary { padding: 20px 32px 28px 116px; }
.outcome-summary p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.72; margin: 0;
}

.outcome-details {
  padding: 36px 32px;
  background: var(--off-white);
  border-top: 2px solid var(--blue);
  display: flex; flex-direction: column; gap: 28px;
}
/* hidden attr override — shown via JS class toggle */
.outcome-details[hidden] { display: none; }

.detail-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--orange); text-transform: uppercase;
  letter-spacing: 2.5px; margin-bottom: 14px;
}
.detail-section p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.72; margin-bottom: 10px;
}
.detail-section p:last-child { margin-bottom: 0; }

.impact-section {
  background: var(--white); padding: 24px 28px;
  border-radius: 4px; border-left: 4px solid var(--orange);
}
.impact-section h3 { color: var(--orange); }
.impact-section ul { list-style: none; padding: 0; margin: 0; }
.impact-section li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 15px; line-height: 1.60;
  color: var(--text-dark);
  border-bottom: 1px solid rgba(35,55,70,0.06);
}
.impact-section li:last-child { border-bottom: none; }
.impact-section li::before {
  content: '✓'; position: absolute; left: 0;
  color: var(--orange); font-weight: 700;
}

/* ============================================================
   RESPONSIVE — INSIGHTS PAGES
   ============================================================ */
@media (max-width: 1024px) {
  .section-insights-dark,
  .section-insights-light  { padding: 72px 40px; }
  .section-outcomes-content { padding: 56px 40px; }
  .section-insights-nav { padding: 0 40px; }
  .insights-nav-inner { grid-template-columns: 1fr; gap: 0; }
  .insights-nav-label { padding: 16px 0 0; }
  .insights-nav-links { flex-wrap: wrap; }
  .insights-nav-links li a { padding: 14px 18px; font-size: 13px; }
}
@media (max-width: 768px) {
  .section-insights-dark,
  .section-insights-light  { padding: 56px 20px; }
  .section-outcomes-content { padding: 40px 20px; }
  .section-insights-nav { padding: 0 20px; }
  .insights-nav-links { flex-direction: column; }
  .insights-nav-links li a { border-right: none; border-bottom: 1px solid rgba(105,195,232,0.08); padding: 14px 0; }
  .outcome-header { grid-template-columns: 44px 1fr 40px; padding: 20px; gap: 12px; }
  .outcome-number { font-size: 28px; }
  .outcome-title-group h2 { font-size: 20px; }
  .outcome-summary { padding: 0 20px 20px 20px; }
  .outcome-details { padding: 24px 20px; }
}
@media print {
  .section-insights-nav, .expand-toggle { display: none; }
  .outcome-details { display: flex !important; }
  .outcome-card { page-break-inside: avoid; }
}

/* ============================================================
   INDUSTRY PERSPECTIVES — HERO TEASER
   ============================================================ */
.hero-latest-teaser {
  border-left: 3px solid var(--orange);
  padding: 20px 0 20px 20px;
  margin-bottom: 36px;
}
.hero-latest-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 10px;
}
.hero-latest-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  background: rgba(238,116,33,0.12);
  padding: 3px 8px; border-radius: 2px;
}
.hero-latest-date { font-size: 12px; color: var(--blue); letter-spacing: 0.5px; }
.hero-latest-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 20px; font-weight: 700; line-height: 1.2;
  color: #fff; margin-bottom: 14px;
}
.hero-latest-link {
  font-size: 13px; font-weight: 600; letter-spacing: 0.5px;
  color: var(--blue); text-decoration: none;
  transition: color 0.2s;
}
.hero-latest-link:hover { color: #fff; }

/* ============================================================
   INDUSTRY PERSPECTIVES — META CHIPS (shared: featured + archive)
   ============================================================ */
.persp-cat {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--orange);
  background: rgba(238,116,33,0.10);
  padding: 3px 9px; border-radius: 2px;
}
.persp-date, .persp-read-time {
  font-size: 13px; color: var(--gray-mid); letter-spacing: 0.3px;
}
.persp-date::before { content: ''; }

/* ============================================================
   INDUSTRY PERSPECTIVES — CONTENT SECTION
   ============================================================ */
.section-perspectives-content {
  background: var(--off-white);
  padding: 72px 80px;
}
.perspectives-inner { max-width: 1100px; margin: 0 auto; }

/* PAGE INTRO ────────────────────────────────── */
.perspectives-intro {
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(35,55,70,0.10);
  margin-bottom: 56px;
  max-width: 780px;
}
.perspectives-intro-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 32px; font-weight: 700; line-height: 1.15;
  color: var(--navy);
  margin-bottom: 20px;
}
.perspectives-intro p {
  font-size: 15px; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 16px;
}
.perspectives-intro p:last-child { margin-bottom: 0; }

/* FEATURED POST ─────────────────────────────── */
.perspectives-featured {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: center;
  background: var(--navy);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 64px;
  box-shadow: 0 4px 24px rgba(35,55,70,0.13);
}
.perspectives-featured-inner {
  padding: 52px 48px 52px 52px;
}
.perspectives-featured-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 18px;
}
.perspectives-featured-meta .persp-cat { background: rgba(238,116,33,0.18); }
.perspectives-featured-meta .persp-date,
.perspectives-featured-meta .persp-read-time { color: var(--blue); opacity: 0.85; }
.perspectives-featured-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px; font-weight: 700; line-height: 1.1;
  color: #fff; margin-bottom: 20px;
}
.perspectives-featured-title a { color: inherit; text-decoration: none; }
.perspectives-featured-title a:hover { color: var(--blue); }
.perspectives-featured-excerpt {
  font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.72;
  margin-bottom: 32px;
}
.persp-read-btn { display: inline-block; }
.perspectives-featured-img {
  height: 100%; min-height: 320px;
  overflow: hidden;
}
.perspectives-featured-img a { display: block; height: 100%; }
.perspectives-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.perspectives-featured:hover .perspectives-featured-img img { transform: scale(1.03); }
/* No image: single-column */
.perspectives-featured:not(:has(.perspectives-featured-img)) {
  grid-template-columns: 1fr;
}

/* ARCHIVE LIST ──────────────────────────────── */
.perspectives-archive-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.perspectives-archive-list {
  display: flex; flex-direction: column; gap: 0;
  border: 1px solid rgba(35,55,70,0.09);
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
}
.persp-archive-card {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: center;
  gap: 16px;
  padding: 28px 28px 28px 32px;
  text-decoration: none;
  border-bottom: 1px solid rgba(35,55,70,0.08);
  background: var(--white);
  transition: background 0.18s, box-shadow 0.18s;
  position: relative;
}
.persp-archive-card:last-child { border-bottom: none; }
.persp-archive-card::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px; background: transparent;
  transition: background 0.2s;
}
.persp-archive-card:hover { background: var(--off-white); box-shadow: inset 0 0 0 0; }
.persp-archive-card:hover::before { background: var(--orange); }
.persp-archive-meta {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.persp-archive-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 22px; font-weight: 700; line-height: 1.2;
  color: var(--navy); margin-bottom: 6px;
  transition: color 0.18s;
}
.persp-archive-card:hover .persp-archive-title { color: var(--blue); }
.persp-archive-excerpt {
  font-size: 14px; color: var(--text-mid); line-height: 1.6; margin: 0;
}
.persp-archive-arrow {
  font-size: 20px; color: var(--gray-mid);
  transition: color 0.18s, transform 0.18s;
  justify-self: center;
}
.persp-archive-card:hover .persp-archive-arrow { color: var(--orange); transform: translateX(4px); }

/* EMPTY STATE ───────────────────────────────── */
.perspectives-empty {
  text-align: center; padding: 80px 40px;
  color: var(--text-mid); font-size: 16px;
}

/* RESPONSIVE ────────────────────────────────── */
@media (max-width: 1024px) {
  .section-perspectives-content { padding: 60px 40px; }
  .perspectives-featured { grid-template-columns: 1fr; }
  .perspectives-featured-img { min-height: 260px; max-height: 300px; }
}
@media (max-width: 768px) {
  .section-perspectives-content { padding: 48px 20px; }
  .perspectives-featured-inner { padding: 36px 24px; }
  .perspectives-featured-title { font-size: 28px; }
  .persp-archive-card { grid-template-columns: 1fr 28px; padding: 22px 16px 22px 22px; }
  .persp-archive-title { font-size: 18px; }
}

/* ============================================================
   INDUSTRIES — 2×2 CARD GRID
   ============================================================ */
.section-industries-list { padding: 80px; }

/* Wrapper unifies the stat band + 2×2 grid into one visual block */
.industries-grid-wrapper {
  max-width: 1100px; margin: 0 auto;
  border: 1px solid rgba(35,55,70,0.08);
  border-radius: 4px;
  overflow: hidden;
}

/* Override the standalone stat band so it sits flush inside the wrapper */
.industries-grid-wrapper .industries-stat-band {
  padding: 36px 56px;
  border-bottom: 1px solid rgba(105,195,232,0.12);
}
.industries-grid-wrapper .industries-stat-band-inner {
  max-width: none; margin: 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.industry-card {
  padding: 60px 56px;
  background: var(--white);
  border-right: 1px solid rgba(35,55,70,0.08);
  border-bottom: 1px solid rgba(35,55,70,0.08);
}
.industry-card:nth-child(even)           { background: var(--off-white); border-right: none; }
.industry-card:nth-child(3),
.industry-card:nth-child(4)              { border-bottom: none; }

.industry-card .industry-num {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.industry-card h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 34px; font-weight: 700; line-height: 1.1;
  color: var(--navy); margin-bottom: 18px;
}
.industry-card .content-p {
  font-size: 15px; color: var(--text-mid);
  line-height: 1.72; margin-bottom: 28px;
}
.industry-card .section-label {
  color: var(--blue); margin-bottom: 14px;
}

/* Responsive */
@media (max-width: 768px) {
  .section-industries-list { padding: 40px 20px; }
  .industries-grid { grid-template-columns: 1fr; }
  .industries-grid-wrapper .industries-stat-band { padding: 28px 24px; }
  .industry-card:nth-child(3) { border-bottom: 1px solid rgba(35,55,70,0.08); }
  .industry-card { border-right: none; }
  .industry-card:nth-child(3) { border-bottom: 1px solid rgba(35,55,70,0.08); }
  .industry-card:nth-child(4) { border-bottom: none; }
}


