/* ============ NAV ============ */
body { padding-top: 76px; }
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.nav-dark { background: rgba(11, 23, 54, 0.72); border-bottom: 1px solid var(--line-dark); }
.nav-light { background: rgba(247, 244, 238, 0.82); border-bottom: 1px solid var(--line-light); }

.nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  height: 76px;
  gap: 32px;
}
.nav-logo { display: inline-flex; align-items: center; }
.text-white { color: white; }
.text-ink { color: var(--ink-900); }

.nav-links {
  display: flex;
  gap: 4px;
  justify-self: center;
  font-size: 14px;
  letter-spacing: -0.005em;
}
.nav-links a {
  padding: 8px 16px;
  border-radius: 999px;
  opacity: 0.78;
  transition: opacity .15s ease, background .15s ease;
}
.nav-links a:hover { opacity: 1; }
.nav-dark .nav-links a:hover { background: rgba(255,255,255,0.06); }
.nav-light .nav-links a:hover { background: rgba(0,0,0,0.04); }
.nav-links a.active { opacity: 1; }
.nav-dark .nav-links a.active { background: rgba(255,255,255,0.08); }
.nav-light .nav-links a.active { background: rgba(0,0,0,0.06); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--navy-800);
  color: white;
  overflow: hidden;
}
.hero::before {
  /* soft corner glow */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 600px at 85% 20%, rgba(241,90,36,0.14), transparent 60%),
              radial-gradient(800px 400px at 10% 90%, rgba(37,59,114,0.5), transparent 60%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding: 64px 0 96px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: stretch;
  min-height: 640px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 10px;
  color: var(--navy-200);
}
.hero-h1 {
  margin-top: 28px;
  color: white;
  letter-spacing: -0.025em;
}
.hero-h1 em { font-style: italic; color: var(--navy-100); }
.hero-h1 .fade { color: var(--navy-300); }

.hero-rotate {
  display: inline-block;
  position: relative;
  min-width: 0.6em;
}
.hero-rotate .word {
  color: var(--orange-500);
  display: inline-block;
  white-space: nowrap;
}
.hero-sub {
  margin-top: 24px;
  max-width: 500px;
  color: var(--navy-100);
  font-size: 17px;
  line-height: 1.55;
}
.hero-ctas { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }

.hero-meta {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  padding: 0 28px;
  display: flex;
  justify-content: space-between;
  color: var(--navy-200);
  font-size: 11px;
}

.hero-viz {
  position: relative;
  border-left: 1px solid var(--line-dark);
  border-right: 1px solid var(--line-dark);
  margin-right: -28px;
}
.hero-viz canvas { display: block; width: 100%; height: 100%; }
.hero-viz-frame {
  position: absolute;
  inset: 20px;
  border: 1px dashed var(--line-dark-strong);
  border-radius: var(--radius-md);
  pointer-events: none;
}
.hero-viz-badge {
  position: absolute;
  top: 36px; right: 36px;
  background: rgba(11,23,54,0.65);
  border: 1px solid var(--line-dark-strong);
  border-radius: 999px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--navy-100);
  display: flex; align-items: center; gap: 8px;
}
.hero-viz-badge::before {
  content: "";
  display: inline-block;
  width: 7px; height: 7px; border-radius: 50%;
  background: #3DFBA6;
  box-shadow: 0 0 10px #3DFBA6;
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }

/* ticker strip */
.ticker {
  position: relative;
  background: var(--navy-900);
  color: var(--navy-200);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 64px;
  padding: 18px 0;
  white-space: nowrap;
  animation: tick 40s linear infinite;
}
.ticker-track span {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 64px;
}
.ticker-track span::after {
  content: "✦";
  color: var(--orange-500);
  font-size: 10px;
}
@keyframes tick { to { transform: translateX(-50%); } }

/* ============ SECTION ============ */
section { padding: 120px 0; position: relative; }
section.dark { background: var(--navy-800); color: white; }
section.cream { background: var(--cream-100); color: var(--ink-900); }
section.bone { background: var(--cream-50); }

.section-head {
  display: block;
  margin-bottom: 72px;
}
.section-head > .reveal { margin-bottom: 24px; }
.section-head p { color: var(--fg-muted); max-width: 720px; font-size: 17px; line-height: 1.6; }
section.dark .section-head p { color: var(--navy-200); }

/* ============ SOLUTIONS ============ */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sol-card {
  position: relative;
  background: var(--navy-700);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease;
}
.sol-card:hover { transform: translateY(-4px); border-color: var(--orange-500); }
.sol-num {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 1;
  color: var(--navy-500);
  font-style: italic;
}
.sol-card:hover .sol-num { color: var(--orange-500); transition: color .3s ease; }
.sol-title {
  margin-top: 32px;
  font-size: 26px;
  font-family: var(--font-serif);
  letter-spacing: -0.01em;
  color: white;
  line-height: 1.15;
}
.sol-body {
  margin-top: 14px;
  color: var(--navy-100);
  font-size: 14.5px;
  line-height: 1.55;
  flex: 1;
}
.sol-list {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sol-list li {
  list-style: none;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-200);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  display: flex; align-items: center; gap: 10px;
}
.sol-list li::before { content: "+"; color: var(--orange-500); }

.sol-card-arrow {
  position: absolute;
  top: 28px; right: 28px;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line-dark-strong);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-200);
  transition: background .3s ease, color .3s ease, transform .3s ease;
}
.sol-card:hover .sol-card-arrow { background: var(--orange-500); color: white; border-color: var(--orange-500); transform: rotate(-45deg); }

/* ============ STORIES / CASES ============ */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.case-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform .3s ease;
}
.case-card:hover { transform: translateY(-3px); }
.case-media {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--line-light);
}
.case-media .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--navy-800);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}
.case-media .metric {
  position: absolute;
  bottom: 16px; right: 16px;
  background: var(--orange-500);
  color: white;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}
.case-kind {
  margin-top: 20px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
}
.case-title {
  margin-top: 10px;
  font-size: 22px;
  font-family: var(--font-serif);
  color: var(--ink-900);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.case-body {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-500);
  line-height: 1.55;
}
.case-meta {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-500);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.case-meta .read { color: var(--orange-500); display: inline-flex; gap: 6px; align-items: center; }
.case-card:hover .case-meta .read::after { transform: translateX(3px); }
.case-meta .read::after { content: "→"; transition: transform .2s ease; }

/* Decorative case tile graphics */
.case-viz {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============ LOGOS / TRUSTED BY ============ */
.trusted {
  padding: 80px 0;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: var(--cream-50);
}
.trusted-inner { display: grid; grid-template-columns: auto 1fr; gap: 80px; align-items: center; }
.trusted-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-500);
  max-width: 180px;
  line-height: 1.6;
}
.trusted-logos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: center;
}
.trusted-logos > a {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity .2s ease;
  border-left: 1px solid var(--line-light);
  padding-left: 40px;
  text-decoration: none;
}
.trusted-logos > a:first-child { border-left: 0; padding-left: 0; }
.trusted-logos > a:hover { opacity: 1; }
.trusted-logos img {
  max-height: 56px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter .2s ease;
}
.trusted-logos > a:hover img { filter: none; }

/* Cases heading: EN "Stories of success" / NL "Succesverhalen" (accent + tail) */
.cases-h2-tail { display: none; }
html[lang="nl"] .cases-h2-lead { display: none; }
html[lang="nl"] .cases-h2-tail { display: inline; }

/* ============ APPROACH / DRIVEN BY RESULTS ============ */
.approach {
  background: var(--cream-100);
  padding: 120px 0;
}
.approach-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 72px;
  align-items: start;
}
.approach-pills {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pill {
  background: white;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: center;
}
.pill:hover { border-color: var(--ink-700); }
.pill.open { background: white; border-color: var(--ink-900); }
.pill-icon {
  width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--cream-200);
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-700);
}
.pill.open .pill-icon { background: var(--orange-500); color: white; }
.pill-title { font-family: var(--font-serif); font-size: 22px; letter-spacing: -0.01em; }
.pill-caret { color: var(--ink-500); transition: transform .2s ease; }
.pill.open .pill-caret { transform: rotate(45deg); color: var(--orange-500); }
.pill-body {
  display: none;
  grid-column: 1 / -1;
  padding-top: 10px;
  color: var(--ink-500);
  font-size: 15px;
  line-height: 1.6;
}
.pill.open .pill-body { display: block; }
.pill-body p { margin: 0 0 12px; }
.pill-body p:last-child { margin-bottom: 0; }

.approach-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-light);
  background: var(--navy-800);
}
.approach-visual .grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}
.approach-stat {
  position: absolute;
  background: rgba(11,23,54,0.8);
  border: 1px solid var(--line-dark-strong);
  backdrop-filter: blur(8px);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  color: white;
}
.approach-stat .num { font-family: var(--font-serif); font-size: 36px; line-height: 1; color: var(--orange-500); }
.approach-stat .lbl { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy-100); margin-top: 6px; }

/* ============ STATS BAND ============ */
.stats-band {
  background: var(--navy-900);
  color: white;
  padding: 80px 0;
  border-top: 1px solid var(--line-dark);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  padding: 20px 28px;
  border-left: 1px solid var(--line-dark);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .big {
  font-family: var(--font-serif);
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: white;
}
.stat .big .unit { color: var(--orange-500); }
.stat .lbl {
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy-200);
  line-height: 1.5;
}

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--orange-500);
  color: white;
  padding: 80px 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-band h2 { color: white; }
.cta-band p { margin-top: 16px; color: rgba(255,255,255,0.85); max-width: 520px; font-size: 16px; line-height: 1.55; }
.cta-band .btn { background: white; color: var(--orange-500); }

/* ============ FOOTER ============ */
.site-footer {
  background: var(--navy-900);
  color: white;
  padding: 100px 0 40px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr;
  gap: 64px;
  align-items: start;
  padding-bottom: 72px;
  border-bottom: 1px solid var(--line-dark);
}
.footer-h {
  margin-top: 24px;
  font-size: clamp(40px, 4.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.footer-h em { color: var(--orange-500); font-style: italic; }
.footer-cta { margin-top: 36px; display: flex; gap: 12px; flex-wrap: wrap; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.footer-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-200);
  margin-bottom: 20px;
}
.footer-cols ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-cols li { color: var(--navy-100); font-size: 14px; }
.footer-cols a { color: var(--navy-100); transition: color .15s ease; }
.footer-cols a:hover { color: var(--orange-500); }

.footer-bottom {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  font-size: 11px;
  color: var(--navy-300);
}
.footer-bottom > :nth-child(2) { text-align: center; }
.footer-bottom > :nth-child(3) { text-align: right; }

/* === new footer bits === */
.footer-logo { display: inline-block; margin-bottom: 24px; }
.footer-tag { color: var(--navy-100); font-size: 14.5px; line-height: 1.6; max-width: 360px; }
.footer-contacts { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 14px; }
.footer-contacts li { display: grid; grid-template-columns: 32px 1fr; align-items: center; font-size: 14px; color: var(--navy-100); }
.footer-contacts .ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(241,90,36,0.15);
  color: var(--orange-500);
}
.footer-contacts a { color: var(--navy-100); transition: color .15s ease; }
.footer-contacts a:hover { color: var(--orange-500); }
.footer-plain { color: var(--navy-100); font-size: 14.5px; line-height: 1.5; font-style: normal; }
.footer-plain a { color: var(--navy-100); transition: color .15s ease; }
.footer-plain a:hover { color: var(--orange-500); }
.footer-addr { margin-top: 0; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 36px;
  gap: 16px;
}
.footer-bottom > * { text-align: left !important; font-size: 12px; color: var(--navy-300); }
.footer-bottom a { color: var(--navy-100); }
.footer-bottom a:hover { color: var(--orange-500); }

/* === Testimonials === */
.testimonials { padding: 140px 0; background: var(--cream-50); }
.testimonials-head { text-align: center; margin-bottom: 72px; }
.testimonials-head .eyebrow { justify-content: center; display: inline-flex; align-items: center; }
.testimonials-head h2 { margin-top: 16px; }
.testimonials-head p { margin: 20px auto 0; max-width: 520px; color: var(--ink-500); font-size: 16px; line-height: 1.6; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.testimonial {
  background: white;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 40px 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--orange-500);
  font-style: italic;
  position: absolute;
  top: 16px; right: 28px;
  opacity: 0.8;
}
.testimonial-body {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-900);
  flex: 1;
}
.testimonial-body::before { content: '"'; }
.testimonial-body::after { content: '"'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
}
.testimonial-avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-600), var(--navy-800));
  color: white;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: -0.01em;
  font-style: italic;
  flex: 0 0 56px;
  overflow: hidden;
}
.testimonial-name { font-size: 15px; font-weight: 500; color: var(--ink-900); }
.testimonial-role { font-size: 13px; color: var(--ink-500); margin-top: 2px; }
@media (max-width: 800px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ============ PAGE HEADER (sub pages) ============ */
.page-header {
  background: var(--navy-800);
  color: white;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 85% 60%, rgba(241,90,36,0.12), transparent 60%);
  pointer-events: none;
}
.page-header-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: end;
  position: relative;
}
.page-header h1 { font-size: clamp(52px, 6vw, 92px); letter-spacing: -0.025em; }
.page-header h1 em { color: var(--orange-500); font-style: italic; }
.page-header .breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--navy-200);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.page-header .breadcrumb span { color: var(--orange-500); }
.page-header-desc { color: var(--navy-100); font-size: 17px; line-height: 1.55; max-width: 420px; }

/* ============ CASE STUDY DETAIL ============ */
.case-hero {
  padding: 100px 0 80px;
}
.case-hero .meta-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.case-hero .meta-row > div .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy-200);
  margin-bottom: 8px;
}
.case-hero .meta-row > div .val {
  font-family: var(--font-serif);
  font-size: 22px;
  color: white;
  letter-spacing: -0.01em;
}

.case-body-section {
  padding: 100px 0;
}
.case-prose {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}
.case-prose h3 {
  font-family: var(--font-serif);
  font-size: 32px;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.case-prose p { font-size: 17px; line-height: 1.65; color: var(--ink-700); margin-bottom: 18px; }
.case-prose ul { padding-left: 0; list-style: none; margin: 18px 0; }
.case-prose ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
}
.case-prose ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 10px;
  width: 14px; height: 2px;
  background: var(--orange-500);
}
.case-side-lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-500);
  position: sticky;
  top: 100px;
}
.case-side-lbl .dot {
  display: inline-block;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--orange-500);
  margin-right: 10px;
  transform: translateY(-1px);
}

/* ============ LEGAL PAGES ============ */
.legal-body {
  padding: 80px 0 120px;
}
.legal-body-inner {
  max-width: 720px;
}
.legal-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 32px);
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 48px 0 16px;
}
.legal-body h2:first-child {
  margin-top: 0;
}
.legal-body p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-700);
  margin-bottom: 16px;
}
.legal-body ul {
  padding-left: 0;
  list-style: none;
  margin: 12px 0 20px;
}
.legal-body ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-700);
}
.legal-body ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 14px;
  height: 2px;
  background: var(--orange-500);
}
.legal-body a {
  color: var(--orange-500);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-body a:hover {
  color: var(--ink-900);
}

.workflow {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.wf-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-top: 1px solid var(--line-light);
  align-items: start;
}
.wf-step:last-child { border-bottom: 1px solid var(--line-light); }
.wf-step .num {
  font-family: var(--font-serif);
  font-size: 36px;
  color: var(--orange-500);
  line-height: 1;
}
.wf-step h4 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.wf-step p { font-size: 15px; line-height: 1.55; color: var(--ink-500); }

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.impact-card {
  background: var(--navy-800);
  color: white;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid var(--line-dark);
}
.impact-card .big {
  font-family: var(--font-serif);
  font-size: 48px;
  line-height: 1;
  color: var(--orange-500);
  letter-spacing: -0.02em;
}
.impact-card .lbl {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--navy-100);
}

/* ============ SOLUTIONS PAGE ============ */
.solution-block {
  padding: 100px 0;
  border-bottom: 1px solid var(--line-light);
}
.solution-block:nth-child(even) { background: var(--cream-50); }
.sb-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.sb-num {
  font-family: var(--font-serif);
  font-size: 160px;
  line-height: 0.9;
  color: var(--orange-500);
  font-style: italic;
  letter-spacing: -0.03em;
}
.sb-title {
  margin-top: 16px;
  font-size: clamp(40px, 4.4vw, 64px);
  letter-spacing: -0.02em;
}
.sb-lede {
  margin-top: 20px;
  color: var(--ink-500);
  font-size: 17px;
  line-height: 1.6;
  max-width: 460px;
}
.sb-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.sb-item {
  padding: 24px;
  background: white;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-md);
}
.sb-item .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-500);
  margin-bottom: 12px;
}
.sb-item h4 { font-family: var(--font-serif); font-size: 22px; letter-spacing: -0.01em; margin-bottom: 10px; }
.sb-item p { font-size: 14.5px; line-height: 1.55; color: var(--ink-500); }

/* responsive */
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-viz { min-height: 420px; margin-right: 0; }
  .solutions-grid, .cases-grid, .stats-grid, .impact-grid, .footer-cols { grid-template-columns: 1fr 1fr; }
  .footer-top, .approach-grid, .section-head, .cta-band-inner, .page-header-grid, .sb-grid, .case-prose, .trusted-inner { grid-template-columns: 1fr; gap: 32px; }
  .trusted-logos { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .trusted-logos > a { border-left: 0; padding-left: 0; }
  section, .approach, .solution-block { padding: 72px 0; }
  .nav-links { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; }
}
@media (max-width: 620px) {
  .solutions-grid, .cases-grid, .stats-grid, .impact-grid, .footer-cols, .sb-items { grid-template-columns: 1fr; }
}


/* ============ LANGUAGE SWITCHER ============ */
.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-right: 4px;
  padding: 4px 6px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-dark .lang-switch { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); }
.nav-light .lang-switch { background: rgba(0,0,0,0.03); border: 1px solid rgba(0,0,0,0.06); }
.lang-switch .lang-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 999px;
  font: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  opacity: 0.55;
  transition: opacity .15s ease, background .15s ease, color .15s ease;
}
.nav-dark .lang-switch .lang-btn { color: white; }
.nav-light .lang-switch .lang-btn { color: var(--ink-900); }
.lang-switch .lang-btn:hover { opacity: 1; }
.lang-switch .lang-btn.active {
  opacity: 1;
  color: var(--orange-500);
}
.lang-switch .lang-sep { opacity: 0.35; }

@media (max-width: 740px) {
  .lang-switch { font-size: 10px; padding: 2px 4px; }
  .lang-switch .lang-btn { padding: 3px 6px; }
}
