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

:root {
  --ink: #171b1a;
  --muted: #66706d;
  --paper: #f5f7f4;
  --surface: #ffffff;
  --line: #dfe7e2;
  --teal: #126d63;
  --blue: #235d86;
  --amber: #d39b31;
  --coral: #c8584d;
  --forest: #233f35;
  --shadow: 0 18px 50px rgba(22, 31, 29, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  overflow-x: hidden;
}
html[lang="en"] body,
html[lang="fr"] body,
html[lang="es"] body {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
html[lang="en"] h1, html[lang="en"] h2, html[lang="en"] h3, html[lang="en"] h4,
html[lang="fr"] h1, html[lang="fr"] h2, html[lang="fr"] h3, html[lang="fr"] h4,
html[lang="es"] h1, html[lang="es"] h2, html[lang="es"] h3, html[lang="es"] h4 {
  font-family: "Libre Baskerville", Georgia, "Times New Roman", serif;
  font-weight: 700;
}
html[lang="en"] .brand-name,
html[lang="fr"] .brand-name,
html[lang="es"] .brand-name,
html[lang="en"] .primary-nav a,
html[lang="fr"] .primary-nav a,
html[lang="es"] .primary-nav a,
html[lang="en"] .button,
html[lang="fr"] .button,
html[lang="es"] .button,
html[lang="en"] .language-dropdown-toggle,
html[lang="fr"] .language-dropdown-toggle,
html[lang="es"] .language-dropdown-toggle,
html[lang="en"] .language-dropdown-menu a,
html[lang="fr"] .language-dropdown-menu a,
html[lang="es"] .language-dropdown-menu a {
  font-family: "Manrope", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(31,51,46,.12);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(18, 31, 29, .12);
}
.brand-name { font-size: 18px; white-space: nowrap; }
.primary-nav { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
  min-height: 40px;
  padding: 8px 13px;
  border-radius: 8px;
  color: #2e3936;
  font-size: 15px;
  font-weight: 650;
}
.primary-nav a:hover, .primary-nav a.active { background: #eaf1ee; color: var(--teal); }
.flag-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: block;
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(23,27,26,.10);
}
.language-dropdown {
  position: relative;
  margin-left: 8px;
}
.language-dropdown-toggle {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  color: #2e3936;
  font-size: 15px;
  font-weight: 650;
  cursor: pointer;
}
.language-dropdown-toggle:hover,
.language-dropdown.open .language-dropdown-toggle {
  background: #eaf1ee;
  color: var(--teal);
}
.language-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.language-caret {
  width: 10px;
  height: 10px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform .18s ease;
}
.language-dropdown.open .language-caret {
  transform: rotate(-135deg) translateY(-1px);
}
.language-dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 176px;
  display: none;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
  z-index: 80;
}
.language-dropdown.open .language-dropdown-menu { display: grid; gap: 4px; }
.language-dropdown-menu a {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 11px;
  border-radius: 8px;
  color: #2e3936;
  font-size: 15px;
  font-weight: 650;
}
.language-dropdown-menu a:hover {
  background: #eaf1ee;
  color: var(--teal);
}
.nav-toggle {
  display: none;
  width: 44px;
  flex: 0 0 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 10px;
}
.nav-toggle span { display: block; height: 2px; background: var(--ink); margin: 5px 0; }

.hero {
  min-height: 72dvh;
  display: flex;
  align-items: center;
  background-image: linear-gradient(90deg, rgba(16,27,26,.78), rgba(18,40,38,.46), rgba(18,40,38,.14)), var(--hero-image);
  background-size: cover;
  background-position: center right;
  color: #fff;
}
.hero-compact {
  min-height: 42dvh;
}
.hero-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 82px 0 74px;
}
.hero-compact .hero-inner {
  padding: 58px 0 50px;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}
.hero .eyebrow { color: #f4c86a; }
h1, h2, h3, h4 { line-height: 1.18; margin: 0; letter-spacing: 0; }
h1, h2, h3, .hero-copy { overflow-wrap: anywhere; }
h1 { max-width: 820px; font-size: 64px; font-weight: 850; }
.hero-compact h1 { font-size: 46px; max-width: 860px; }
h2 { font-size: 36px; font-weight: 820; }
h3 { font-size: 22px; font-weight: 780; }
h4 { font-size: 17px; font-weight: 780; }
.hero-copy { max-width: 760px; margin: 22px 0 0; font-size: 20px; color: rgba(255,255,255,.88); }
.hero-compact .hero-copy { max-width: 760px; margin-top: 16px; font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: #fff;
  font-weight: 760;
}
.button:visited { color: #fff; }
.button::after { content: "→"; color: currentColor; font-weight: 800; }
.button:hover,
.button:focus-visible { color: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }
.button-ghost { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.58); }
.button-light,
.button-light:visited,
.button-light:hover,
.button-light:focus-visible { background: #fff; color: var(--ink); border-color: #fff; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--teal);
  font-weight: 760;
}
.text-link::after { content: "→"; }

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0;
}
.intro-section {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.intro-copy h2 { max-width: 720px; }
.intro-section > p { margin: 0; color: var(--muted); font-size: 18px; }
.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.metrics-strip div { min-height: 112px; background: #fff; padding: 20px; }
.metrics-strip strong { display: block; font-size: 29px; color: var(--forest); }
.metrics-strip span { color: var(--muted); }

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 34px;
  align-items: start;
}
.content-block {
  padding: 0 0 36px;
  margin-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.content-block:last-child { margin-bottom: 0; }
.content-block p { color: var(--muted); font-size: 18px; }
.check-list, .plain-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.check-list li, .plain-list li {
  position: relative;
  padding-left: 24px;
  margin: 9px 0;
  color: #33403c;
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 900;
}
.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  border-radius: 8px;
  background: var(--amber);
}

.side-panel {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(20,33,30,.08);
}
.side-panel p { color: var(--muted); }
.side-panel a:not(.button) { color: var(--teal); font-weight: 750; }

.hub-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  align-items: stretch;
  border-bottom: 1px solid var(--line);
}
.hub-intro h2 { max-width: 820px; }
.hub-intro p { color: var(--muted); font-size: 18px; }
.hub-note {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 28px;
  background: var(--forest);
  color: #fff;
}
.hub-note span {
  color: #f4c86a;
  font-size: 14px;
  font-weight: 850;
}
.hub-note strong {
  display: block;
  margin: 10px 0;
  font-size: 24px;
  line-height: 1.2;
}
.hub-note p { color: rgba(255,255,255,.78); margin-bottom: 0; }

.service-clusters {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 18px;
}
.service-cluster {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
  background: #fff;
}
.service-cluster.featured {
  grid-row: span 2;
  background: #203b34;
  color: #fff;
}
.service-cluster.featured .eyebrow { color: #f4c86a; }
.service-cluster p { color: var(--muted); }
.service-cluster.featured p { color: rgba(255,255,255,.78); }
.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.link-pills a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 7px 11px;
  background: #f8faf7;
  color: #243631;
  font-weight: 730;
}
.service-cluster.featured .link-pills a {
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.08);
  color: #fff;
}
.decision-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  padding-top: 0;
  background: var(--line);
}
.decision-strip div {
  min-height: 190px;
  padding: 28px;
  background: #fff;
}
.decision-strip span {
  display: block;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.decision-strip strong {
  display: block;
  margin-top: 10px;
  font-size: 23px;
  line-height: 1.18;
}
.decision-strip p { color: var(--muted); }

.industry-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.sector-column {
  min-height: 300px;
  border-top: 5px solid var(--teal);
  border-radius: 8px;
  padding: 26px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(20,33,30,.06);
}
.sector-column.tall {
  min-height: 380px;
  border-top-color: var(--coral);
}
.sector-column.wide {
  grid-column: span 2;
  border-top-color: var(--amber);
}
.industry-questions {
  display: grid;
  grid-template-columns: minmax(260px, .72fr) minmax(0, 1fr);
  gap: 38px;
  border-top: 1px solid var(--line);
}

.case-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 18px;
}
.case-feature {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border-radius: 8px;
  padding: 34px;
  color: #fff;
  background-image: linear-gradient(120deg, rgba(18,31,29,.90), rgba(18,31,29,.48)), url('../images/banner6.jpg');
  background-size: cover;
  background-position: center;
}
.case-feature .eyebrow { color: #f4c86a; }
.case-feature p { max-width: 620px; color: rgba(255,255,255,.80); }
.case-feature .text-link { color: #fff; }
.case-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
}
.case-stats div {
  min-height: 126px;
  padding: 26px;
  background: #fff;
}
.case-stats strong {
  display: block;
  font-size: 34px;
  color: var(--forest);
}
.case-stats span { color: var(--muted); }
.case-ledger {
  padding-top: 24px;
}
.case-row {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) minmax(240px, .8fr);
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid var(--line);
}
.case-row span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}
.case-row strong { font-size: 22px; line-height: 1.18; }
.case-row em { color: var(--muted); font-style: normal; }
.case-row:hover strong { color: var(--teal); }
.case-themes {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding-top: 0;
  background: #203b34;
}
.case-themes article {
  min-height: 220px;
  padding: 28px;
  background: #203b34;
  color: #fff;
  border-right: 1px solid rgba(255,255,255,.12);
}
.case-themes p { color: rgba(255,255,255,.74); }

.insight-magazine {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
  gap: 18px;
}
.insight-feature {
  min-height: 420px;
  border-radius: 8px;
  padding: 36px;
  background: #fff;
  border-left: 7px solid var(--teal);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.insight-feature h2 { max-width: 760px; font-size: 46px; }
.insight-feature p { max-width: 700px; color: var(--muted); font-size: 18px; }
.insight-stack {
  border-radius: 8px;
  padding: 28px;
  background: #203b34;
  color: #fff;
}
.insight-stack .eyebrow { color: #f4c86a; }
.insight-stack a {
  display: block;
  padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.insight-stack span {
  display: block;
  color: rgba(255,255,255,.58);
  font-size: 13px;
  font-weight: 760;
}
.insight-stack strong {
  display: block;
  margin-top: 4px;
  line-height: 1.24;
}
.topic-ribbons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 0;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.topic-ribbons span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 13px;
  background: #fff;
  color: var(--forest);
  font-weight: 780;
}
.archive-list ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.archive-list li {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 26px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.archive-list a {
  color: var(--teal);
  font-size: 20px;
  font-weight: 800;
}
.archive-list span { color: var(--muted); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card {
  min-height: 264px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 26px;
  box-shadow: 0 10px 28px rgba(20,33,30,.06);
}
.info-card p { color: var(--muted); }
.info-card .eyebrow { color: var(--blue); }
.three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.process-band {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  background: var(--forest);
}
.process-band div {
  min-height: 280px;
  padding: 42px;
  background: #203b34;
  color: #fff;
}
.process-band span { color: #f4c86a; font-weight: 850; }
.process-band p { color: rgba(255,255,255,.78); }
.section-heading { margin-bottom: 24px; }
.case-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}
.case-summary div { background: #fff; padding: 24px; }
.case-summary span { display: block; color: var(--muted); }
.case-summary strong { display: block; margin-top: 6px; font-size: 20px; }

.article {
  max-width: 860px;
}
.article-meta { color: var(--muted); font-weight: 700; }
.article-lead {
  margin: 18px 0 34px;
  color: #1f2c29;
  font-size: 24px;
  line-height: 1.48;
  font-weight: 700;
}
.article-body p { font-size: 19px; color: #303b38; }
.article-section {
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.article-section h2 {
  margin-bottom: 12px;
}
.article-section .plain-list,
.article-section .check-list {
  margin-top: 14px;
}
.article-callout {
  margin-top: 24px;
  padding: 28px;
  border-radius: 8px;
  background: #eaf1ee;
  border-left: 5px solid var(--teal);
}
.article-callout p:last-child {
  margin-bottom: 0;
}
.article-check {
  margin-top: 36px;
  border-top: 3px solid var(--teal);
  background: #fff;
  border-radius: 8px;
  padding: 28px;
}
.legal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
}
.sitemap-list { padding: 0; margin: 18px 0 0; list-style: none; }
.sitemap-list li {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.sitemap-list a { color: var(--teal); font-weight: 780; }
.sitemap-list span { color: var(--muted); }

.site-footer {
  background: var(--ink);
  color: #fff;
  margin-top: 32px;
}
.footer-cta {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 52px 0;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
.footer-cta .eyebrow { color: #f4c86a; }
.footer-cta h2 { max-width: 720px; }
.footer-grid {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 46px 0;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
}
.footer-grid p { color: rgba(255,255,255,.72); }
.footer-grid a {
  display: block;
  color: rgba(255,255,255,.78);
  margin: 9px 0;
}
.footer-grid a:hover { color: #fff; }
.footer-bottom {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 32px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(255,255,255,.58);
  border-top: 1px solid rgba(255,255,255,.14);
}

@media (max-width: 920px) {
  .nav-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
  }
  .nav-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: static;
    justify-self: end;
    z-index: 60;
    background: var(--ink);
    border-color: var(--ink);
    box-shadow: 0 8px 20px rgba(0,0,0,.18);
  }
  .nav-toggle span { width: 20px; background: #fff; margin: 3px 0; }
  .primary-nav {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 10px;
    box-shadow: var(--shadow);
  }
  .primary-nav.open { display: flex; }
  .language-dropdown {
    margin-left: 0;
    margin-top: 6px;
  }
  .language-dropdown-toggle {
    width: 100%;
  }
  .language-dropdown-menu {
    position: static;
    margin-top: 8px;
    border: 0;
    box-shadow: none;
    padding: 0;
    min-width: 0;
  }
  h1 { font-size: 44px; }
  .hero-compact h1 { font-size: 38px; }
  h2 { font-size: 30px; }
  .hero { min-height: 70dvh; }
  .hero-compact { min-height: 40dvh; }
  .intro-section, .split-section, .legal-layout, .hub-intro, .industry-questions, .case-showcase, .insight-magazine { grid-template-columns: 1fr; }
  .side-panel { position: static; }
  .card-grid, .three-column, .service-clusters, .industry-board, .case-themes { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-cluster.featured, .sector-column.wide { grid-column: span 2; grid-row: auto; }
  .case-row, .archive-list li { grid-template-columns: 1fr; gap: 6px; }
  .process-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .site-header, main, .hero {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .nav-wrap, .hero-inner, .section, .footer-cta, .footer-grid, .footer-bottom {
    width: calc(100% - 28px) !important;
    max-width: 362px;
    margin-left: 14px;
    margin-right: 14px;
  }
  .brand-name { font-size: 16px; }
  h1 { font-size: 34px; }
  .hero-compact h1 { font-size: 31px; }
  h2 { font-size: 24px; }
  h1, h2, h3, .hero-copy { max-width: 100%; overflow-wrap: anywhere !important; word-break: normal; }
  .hero-copy, .intro-copy h2 { max-width: min(300px, calc(100vw - 56px)) !important; }
  .hero-inner, .intro-copy, .content-block, .info-card { min-width: 0; }
  .hero-copy, .intro-section > p, .content-block p, .article-body p { font-size: 17px; }
  .hero { min-height: 68dvh; }
  .hero-compact { min-height: 34dvh; }
  .section { padding: 48px 0; }
  .metrics-strip, .case-summary, .card-grid, .three-column, .process-band, .footer-grid, .service-clusters, .industry-board, .decision-strip, .case-themes { grid-template-columns: 1fr; }
  .service-cluster.featured, .sector-column.wide { grid-column: auto; }
  .hub-note, .case-feature, .insight-feature { min-height: 280px; padding: 24px; }
  .insight-feature h2 { font-size: 30px; }
  .process-band div { min-height: 220px; padding: 28px; }
  .footer-cta, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .sitemap-list li { grid-template-columns: 1fr; gap: 4px; }
  .button { width: 100%; }
}
