/* ============================================================
   JDP CONSULTING — DESIGN SYSTEM
   ============================================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --white:       #FFFFFF;
  --pearl:       #F5F6F7;
  --obsidian:    #000000;
  --navy:        #041E42;
  --navy-mid:    #072a5a;
  --gold:        #F97316;
  --gold-light:  #FB923C;
  --gold-dark:   #EA580C;
  --charcoal:    #1D1D1D;
  --gray-100:    #F5F6F7;
  --gray-200:    #EAEBEC;
  --gray-300:    #D0D2D5;
  --gray-400:    #9EA3AB;
  --gray-600:    #5A6070;
  --gray-800:    #2A2E38;

  --font:        'Open Sans', 'Helvetica Neue', Arial, sans-serif;

  --header-h:    64px;
  --container:   1280px;
  --gap:         clamp(1.5rem, 3vw, 2.5rem);

  --radius-sm:   4px;
  --radius:      8px;
  --radius-lg:   16px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.08);
  --shadow:      0 4px 20px rgba(0,0,0,.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,.16);
  --shadow-gold: 0 4px 24px rgba(249,115,22,.28);

  --transition:  .22s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font);
  font-weight: 700;
  font-size: .875rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  padding: .75rem 1.5rem;
  line-height: 1;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: none; }

.btn--gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover { background: var(--gold-light); box-shadow: 0 6px 32px rgba(249,115,22,.4); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--gray-300);
}
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.45);
}
.btn--outline-white:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn--sm  { padding: .55rem 1.1rem; font-size: .8rem; }
.btn--lg  { padding: 1rem 2rem; font-size: .9rem; }
.btn--block { width: 100%; justify-content: center; }

/* ============================================================
   EYEBROWS & SECTION HEADERS
   ============================================================ */
.section-eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .75rem;
}
.section-eyebrow--gold { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-editorial {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-500);
  max-width: 720px;
  margin: -1.5rem auto 3rem;
  text-align: center;
  font-weight: 400;
  letter-spacing: .01em;
}
.section-editorial--on-dark {
  color: rgba(255, 255, 255, .48);
}
.section-editorial--left {
  text-align: left;
  margin-left: 0;
}
.section-header--light .section-eyebrow { color: rgba(255,255,255,.5); }

.section-h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--charcoal);
  margin-bottom: .75rem;
}
.section-h2--light { color: var(--white); }

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
}
.section-subtitle--light { color: rgba(255,255,255,.65); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--gray-200);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: box-shadow var(--transition), background var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.99);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 100%;
  gap: 2rem;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  text-decoration: none;
}
.site-logo-img {
  height: 24px;
  width: auto;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .site-logo-img { height: 32px; }
}

/* Primary Nav */
.primary-nav { flex: 1; }

.nav-list {
  display: flex;
  align-items: center;
  gap: .25rem;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: .3rem;
  font-size: .825rem;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--charcoal);
  padding: .5rem .75rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active > .nav-link { color: var(--gold); }

.chevron {
  width: 10px;
  height: 7px;
  transition: transform var(--transition);
}
.nav-item.open > .nav-trigger .chevron { transform: rotate(180deg); }

/* Mega Panel */
.mega-panel {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  background: var(--white);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
.nav-item.open > .mega-panel {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.mega-inner {
  display: grid;
  grid-template-columns: 220px 1fr 1fr 240px;
  gap: 0;
  max-width: var(--container);
  margin: 0 auto;
  padding: 2rem clamp(1.25rem, 4vw, 3rem);
}

.mega-col { padding: 0 1.5rem; }
.mega-col:first-child { padding-left: 0; border-right: 1px solid var(--gray-200); }
.mega-col:last-child { padding-right: 0; }
.mega-col:not(:first-child):not(:last-child) { border-right: 1px solid var(--gray-200); }

.mega-col--label { display: flex; flex-direction: column; gap: .5rem; }

.mega-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.mega-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
}
.mega-desc {
  font-size: .825rem;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}
.mega-cta {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .02em;
}
.mega-cta:hover { text-decoration: underline; }

.mega-links { display: flex; flex-direction: column; gap: .1rem; }
.mega-links li { display: flex; flex-direction: column; }
.mega-links a {
  font-size: .875rem;
  font-weight: 700;
  color: var(--charcoal);
  padding: .55rem .5rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.mega-links a:hover { color: var(--gold); background: var(--gray-100); }
.mega-links span {
  font-size: .75rem;
  color: var(--gray-400);
  padding: 0 .5rem .4rem;
  margin-top: -.3rem;
}

.mega-col--featured { display: flex; align-items: center; }
.mega-feature-card {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 1.25rem;
  color: var(--white);
  width: 100%;
}
.mega-feature-card--dark { background: var(--obsidian); }
.mega-feature-tag {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}
.mega-feature-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: .4rem; }
.mega-feature-card p { font-size: .78rem; color: rgba(255,255,255,.7); line-height: 1.5; margin-bottom: .75rem; }
.mega-feature-link {
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
}
.mega-feature-link:hover { text-decoration: underline; }

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

/* Mobile toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  padding: 0 6px;
}
.mobile-menu-toggle span {
  display: block;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.mobile-menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--gray-200);
  padding: 1rem 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.mobile-nav.open { max-height: 600px; }
.mobile-nav-list { padding: .5rem clamp(1.25rem, 4vw, 3rem); display: flex; flex-direction: column; gap: .25rem; }
.mobile-nav-link {
  display: block;
  font-size: .925rem;
  font-weight: 600;
  color: var(--charcoal);
  padding: .65rem .75rem;
  border-radius: var(--radius-sm);
  transition: background var(--transition), color var(--transition);
}
.mobile-nav-link:hover { background: var(--gray-100); color: var(--gold); }
.mobile-nav-btn { margin-top: .5rem; display: inline-flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: var(--header-h);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(249,115,22,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 10% 80%, rgba(4,30,66,.75) 0%, transparent 60%),
    linear-gradient(135deg, rgba(4,30,66,.82) 0%, rgba(0,8,20,.88) 50%, rgba(4,30,66,.82) 100%),
    url('images/hero-logistics-bg.jpg') center / cover no-repeat;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.06) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  padding-top: 4rem;
  padding-bottom: 6rem;
}

.hero-content { max-width: 820px; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
}
.hero-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -.02em;
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,.72);
  line-height: 1.7;
  max-width: 640px;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 2rem;
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  padding: 0 2rem;
}
.hero-stat:first-child { padding-left: 0; }
.hero-stat-value {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  max-width: 120px;
  line-height: 1.3;
}
.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  color: rgba(255,255,255,.35);
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(249,115,22,.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; }
  50% { opacity: 1; }
}

/* ============================================================
   PHILOSOPHY
   ============================================================ */
.philosophy {
  background: var(--white);
  padding: 5rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 160px 1fr;
  grid-template-rows: auto auto;
  gap: 2rem 4rem;
  align-items: start;
}

.philosophy-label { grid-row: 1; grid-column: 1; }
.philosophy-body { grid-row: 1; grid-column: 2; }
.philosophy-pillars { grid-row: 2; grid-column: 2; }

.philosophy-h2 {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.philosophy-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 680px;
}
.philosophy-text strong { color: var(--charcoal); }

.philosophy-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: .5rem;
}

.pillar {
  padding: 1.5rem;
  background: var(--gray-100);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pillar:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.pillar-icon { width: 32px; height: 32px; margin-bottom: .75rem; }
.pillar h4 { font-size: .9rem; font-weight: 800; color: var(--charcoal); margin-bottom: .4rem; }
.pillar p { font-size: .83rem; color: var(--gray-600); line-height: 1.55; }

/* ============================================================
   SERVICES / TABS
   ============================================================ */
.services {
  background: var(--pearl);
  padding: 5rem 0 6rem;
}

.tab-nav {
  display: flex;
  border-bottom: 2px solid var(--gray-200);
  overflow-x: auto;
  scrollbar-width: none;
  background: var(--white);
  border-radius: var(--radius) var(--radius) 0 0;
}
.tab-nav::-webkit-scrollbar { display: none; }

.tab-btn {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: 1.2rem 1.8rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-400);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: color var(--transition), border-color var(--transition);
}
.tab-btn:hover { color: var(--charcoal); }
.tab-btn.active { color: var(--charcoal); border-bottom-color: var(--gold); }
.tab-num { font-size: .7rem; color: var(--gold); font-weight: 800; }

.tab-panel {
  display: none;
  background: var(--white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}
.tab-panel.active { display: block; }

.tab-panel-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  min-height: 400px;
}

.tab-intro {
  background: var(--navy);
  border-radius: 0 0 0 var(--radius);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.tab-intro-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}
.tab-category-label {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
}
.tab-intro h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.45;
  flex: 1;
}
.tab-intro-img {
  width: 100%;
  height: 155px;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
  opacity: .65;
  transition: transform .6s ease;
}
.tab-intro:hover .tab-intro-img { transform: scale(1.04); }

.capabilities-grid {
  padding: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-content: start;
}

.capability-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.capability-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.capability-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.capability-tag {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(249,115,22,.1);
  padding: .25rem .6rem;
  border-radius: 2px;
}
.capability-icon { width: 22px; height: 22px; flex-shrink: 0; }
.capability-card h4 {
  font-size: .875rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: .4rem;
  line-height: 1.35;
}
.capability-card p { font-size: .8rem; color: var(--gray-600); line-height: 1.6; }
.capability-card p strong { color: var(--charcoal); }

/* ============================================================
   CLIENT STORIES
   ============================================================ */
.client-stories {
  background: var(--obsidian);
  padding: 5rem 0 6rem;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.story-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 560px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.story-card:hover { transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,.5); }

.story-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .6s ease;
}
.story-card:hover .story-card-bg { transform: scale(1.03); }

.story-card-bg--1 {
  background:
    linear-gradient(to bottom, rgba(26,10,0,.35) 0%, rgba(26,10,0,.88) 65%),
    url('images/case-alcohol.jpg') center / cover no-repeat;
}
.story-card-bg--2 {
  background:
    linear-gradient(to bottom, rgba(0,26,10,.35) 0%, rgba(0,51,32,.88) 65%),
    url('images/case-food-mfg.jpg') center / cover no-repeat;
}
.story-card-bg--3 {
  background:
    linear-gradient(to bottom, rgba(10,0,40,.35) 0%, rgba(30,0,85,.88) 65%),
    url('images/case-culture.jpg') center / cover no-repeat;
}
.story-card-bg--4 {
  background: linear-gradient(135deg, #1a0003 0%, #5c0a0a 40%, #3a0505 70%, #1a0003 100%);
}

.story-card--full {
  grid-column: 1 / -1;
  flex-direction: row;
  min-height: 340px;
  align-items: stretch;
}
.story-card--full .story-content {
  flex: 1;
  justify-content: center;
  padding: 2.5rem 3rem;
}
.story-card--full .story-accordion {
  flex: 0 0 38%;
  border-left: 1px solid rgba(255,255,255,.08);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-card--full .story-accordion-btn {
  padding: 1.5rem 2rem;
}

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.92) 0%, rgba(0,0,0,.5) 50%, rgba(0,0,0,.2) 100%);
}

.story-content {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .85rem;
}

.story-header {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
}
.story-industry {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}
.story-tag {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: .2rem .55rem;
  border-radius: 2px;
  margin-left: auto;
}
.story-title {
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.25;
}
.story-challenge {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  line-height: 1.6;
}

.story-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  padding: 1rem;
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.25);
  border-radius: var(--radius);
}
.story-metrics--compact { grid-template-columns: repeat(2, 1fr); }
.metric { display: flex; flex-direction: column; gap: .2rem; }
.metric-value {
  font-size: clamp(.95rem, 1.5vw, 1.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.metric-label {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.3;
}

.story-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .78rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: gap var(--transition);
}
.story-read-more:hover { gap: .65rem; }
.story-read-more svg { width: 14px; height: 14px; }

.story-accordion {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,.1);
}
.story-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 2rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  transition: color var(--transition);
}
.story-accordion-btn svg { width: 10px; height: 7px; transition: transform var(--transition); }
.story-accordion-btn.open svg { transform: rotate(180deg); }
.story-accordion-btn:hover { color: var(--gold); }

.story-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
  padding: 0 2rem;
}
.story-accordion-body.open { padding-bottom: 1.25rem; }
.story-accordion-body ul { display: flex; flex-direction: column; gap: .6rem; }
.story-accordion-body li {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.story-accordion-body li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .6em;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============================================================
   ECOSYSTEM
   ============================================================ */
.ecosystem {
  background: var(--white);
  padding: 5rem 0 4rem;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 4rem;
}

.ecosystem-hub {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  max-width: 340px;
}
.hub-center { position: relative; z-index: 1; text-align: center; }
.hub-logo {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1;
}
.hub-logo span {
  display: block;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: .2rem;
}
.hub-tagline {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: .5rem;
  font-weight: 600;
  letter-spacing: .04em;
  line-height: 1.5;
}
.hub-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.ecosystem-entities {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.entity-card {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition), transform var(--transition), border-color var(--transition);
}
.entity-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  border-color: var(--gold);
}
.entity-card--primary {
  background: var(--navy);
  color: var(--white);
  border-color: transparent;
}
.entity-card--primary:hover { border-color: var(--gold); }

.entity-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.entity-num {
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .12em;
  color: var(--gold);
}
.entity-badge {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .2rem .6rem;
  border-radius: 2px;
}
.entity-badge--gold { background: var(--gold); color: var(--white); }

.entity-name { font-size: 1.1rem; font-weight: 800; margin-bottom: .15rem; }
.entity-card:not(.entity-card--primary) .entity-name { color: var(--charcoal); }
.entity-chinese { font-size: .85rem; opacity: .75; }
.entity-tagline {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}
.entity-desc { font-size: .83rem; line-height: 1.6; margin-bottom: 1rem; }
.entity-card--primary .entity-desc { color: rgba(255,255,255,.7); }
.entity-card:not(.entity-card--primary) .entity-desc { color: var(--gray-600); }

.entity-tags { display: flex; flex-wrap: wrap; gap: .4rem; }
.entity-tags li {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .25rem .6rem;
  border-radius: 2px;
  background: rgba(249,115,22,.12);
  color: var(--gold);
  border: 1px solid rgba(249,115,22,.2);
}

/* ── 4-Entity Premium Grid ───────────────────────────── */
.entity-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.entity-card-premium {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 0;
  display: flex;
  flex-direction: column;
  gap: .9rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.entity-card-img-wrap {
  margin-top: auto;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
  height: 160px;
  overflow: hidden;
  flex-shrink: 0;
}
.entity-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.entity-card-premium:hover .entity-card-img-wrap img {
  transform: scale(1.04);
}
.entity-card-premium:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(249,115,22,.5);
}
.entity-card-premium .entity-tag {
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
}
.entity-card-premium .entity-card-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.3;
  margin: 0;
}
.entity-card-premium .entity-card-copy {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.75;
  flex: 1;
}
.entity-card-cta {
  font-size: .73rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .04em;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: gap var(--transition), color var(--transition);
  margin-top: .25rem;
}
.entity-card-cta:hover { gap: .55rem; color: var(--gold-dark); }

.credibility-band {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.credibility-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: center;
  padding: 3rem;
}
.credibility-content h3,
.credibility-text h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: .75rem;
  line-height: 1.35;
}
.credibility-content p,
.credibility-text p { font-size: .9rem; color: rgba(255,255,255,.65); line-height: 1.7; }

.credibility-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex-shrink: 0;
  min-width: 180px;
}
.credibility-stats div { display: flex; flex-direction: column; gap: .2rem; }
.credibility-stats strong {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.credibility-stats span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.cred-stat { text-align: right; }
.cred-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .2rem;
}
.cred-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ============================================================
   INSIGHTS
   ============================================================ */
.insights {
  background: var(--pearl);
  padding: 5rem 0 6rem;
}

.insights-layout {
  display: block;
}

.insights-more-row {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--gray-200);
}
.insights-more-label {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}
.insights-more-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.featured-insight-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1fr 300px;
}

.featured-insight-visual {
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 480px;
  overflow: hidden;
}
.whitepaper-photo {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.insight-document-mockup {
  background: linear-gradient(160deg, #0c2540 0%, #041830 100%);
  border-radius: 8px;
  width: 100%;
  max-width: 210px;
  box-shadow: 12px 18px 52px rgba(0,0,0,.6), -2px -2px 10px rgba(255,255,255,.04);
  overflow: hidden;
}
.doc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: .75rem;
}
.doc-logo { font-size: .75rem; font-weight: 800; color: var(--charcoal); }
.doc-type {
  font-size: .55rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
}
.doc-lines { display: flex; flex-direction: column; gap: .45rem; margin-bottom: 1rem; }
.doc-line { height: 5px; background: var(--gray-200); border-radius: 2px; }
.doc-line--title { height: 8px; background: var(--charcoal); width: 85%; }
.doc-line--subtitle { background: var(--gray-300); width: 65%; }
.doc-line--short { width: 50%; }
.doc-chart {
  display: flex;
  align-items: flex-end;
  gap: .35rem;
  height: 50px;
  background: var(--gray-100);
  padding: .4rem .5rem 0;
  border-radius: 4px 4px 0 0;
}
.chart-bar { flex: 1; background: var(--gray-300); border-radius: 2px 2px 0 0; }
.chart-bar--gold { background: var(--gold); }

.featured-insight-content {
  padding: 2.75rem 3rem;
  display: flex;
  flex-direction: column;
}

.insight-type-tag, .featured-insight-tag {
  display: inline-block;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.2);
  padding: .3rem .75rem;
  border-radius: 2px;
  margin-bottom: 1rem;
  width: fit-content;
}
.featured-insight-title {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.28;
  margin-bottom: .75rem;
}
.featured-insight-desc {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

/* Chapter checklist */
.insight-chapter-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.insight-chapter-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .875rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.insight-chapter-check {
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 800;
  margin-top: .05rem;
}

/* Inline lead-gen form (Option B) */
.insight-lead-form { margin-top: auto; }
.insight-lead-row {
  display: flex;
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.insight-lead-row:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249,115,22,.12);
}
.insight-lead-input {
  flex: 1;
  min-width: 0;
  font-family: var(--font);
  font-size: .875rem;
  color: var(--charcoal);
  background: var(--gray-100);
  border: none;
  padding: .85rem 1rem;
  outline: none;
  transition: background var(--transition);
}
.insight-lead-input::placeholder { color: var(--gray-400); }
.insight-lead-input:focus { background: var(--white); }
.insight-lead-btn {
  display: flex;
  align-items: center;
  gap: .45rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: .85rem 1.4rem;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: filter var(--transition);
}
.insight-lead-btn:hover { filter: brightness(1.07); }
.insight-lead-note {
  font-size: .72rem;
  color: var(--gray-400);
  margin-top: .55rem;
}

/* Forms */
.insight-form, .contact-form { display: flex; flex-direction: column; gap: .75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-group { display: flex; flex-direction: column; gap: .35rem; }
.form-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--gray-600);
}
.form-input {
  font-family: var(--font);
  font-size: .875rem;
  color: var(--charcoal);
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: .7rem .9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-input::placeholder { color: var(--gray-400); }
.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(249,115,22,.15);
  background: var(--white);
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%239EA3AB' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .9rem center;
  background-size: 10px;
}
.form-textarea { resize: vertical; min-height: 100px; }
.form-submit { display: flex; align-items: center; justify-content: center; gap: .5rem; }
.form-submit svg { width: 18px; height: 18px; }
.form-note { font-size: .72rem; color: var(--gray-400); text-align: center; }

.form-success {
  display: none;
  flex-direction: column;
  gap: .75rem;
  background: rgba(4,30,66,.07);
  border: 1px solid rgba(4,30,66,.18);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 1.5rem 1.75rem;
  margin-top: .25rem;
}
.form-success.visible { display: flex; }
.form-success-headline {
  font-size: .95rem;
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.35;
  letter-spacing: -.01em;
}
.form-success-headline .success-check {
  color: var(--gold);
  margin-right: .3rem;
}
.form-success-text {
  font-size: .82rem;
  color: var(--gray-600);
  line-height: 1.7;
}

.insights-sidebar { display: flex; flex-direction: column; gap: .75rem; }
.insights-sidebar-heading {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  padding-bottom: .6rem;
  border-bottom: 2px solid var(--gray-200);
  margin-bottom: 0;
}
.insight-card-small {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
  border: 1px solid var(--gray-200);
  cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition), transform var(--transition);
}
.insight-card-small:hover {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(249,115,22,.15);
  background: rgba(249,115,22,.03);
  transform: translateY(-2px);
}
.insight-card-small:hover .insight-read-link {
  gap: .55rem;
  color: var(--gold);
}
.insight-card-tag {
  display: inline-block;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .35rem;
}
.insight-card-small h4 {
  font-size: .825rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: .3rem;
}
.insight-card-small p {
  font-size: .78rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: .45rem;
}

/* ============================================================
   ABOUT / CONTACT
   ============================================================ */
.about {
  background: var(--white);
  padding: 5rem 0 6rem;
  border-top: 1px solid var(--gray-200);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 5rem;
  align-items: start;
}

.about-h2 {
  font-size: clamp(1.7rem, 3vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--charcoal);
  margin-bottom: 1rem;
  margin-top: .5rem;
}
.about-text > p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  max-width: 500px;
  margin-bottom: 2rem;
}
.about-offices h4 {
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: .75rem;
}
.office-list { display: flex; flex-direction: column; gap: .5rem; }
.office-list li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--charcoal);
}
.office-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.office-hq {
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: .15rem .4rem;
  border-radius: 2px;
}

.about-form-wrap {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--gray-200);
}
.contact-form-title {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--charcoal); color: var(--white); }
.footer-top { padding: 4rem 0 2.5rem; }

.footer-grid {
  display: grid;
  grid-template-columns: 300px repeat(4, 1fr);
  gap: 2rem;
}

/* Footer logo: invert dark marks to white for navy background */
.logo--footer .site-logo-img { filter: brightness(0) invert(1); opacity: .85; }
.footer-tagline {
  font-size: .875rem;
  font-weight: 700;
  color: rgba(255,255,255,.75);
  line-height: 1.5;
  margin-top: 1rem;
  margin-bottom: .5rem;
}
.footer-brand-desc { font-size: .8rem; color: rgba(255,255,255,.4); line-height: 1.6; }

.footer-col-heading {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .83rem; color: rgba(255,255,255,.65); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 1.5rem 0; }
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.35); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.35); transition: color var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
}
.fade-up.visible { opacity: 1; transform: none; }
.fade-up:nth-child(2) { transition-delay: .1s; }
.fade-up:nth-child(3) { transition-delay: .2s; }
.fade-up:nth-child(4) { transition-delay: .3s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
  .mega-inner { grid-template-columns: 180px 1fr 1fr 200px; }
  .footer-grid { grid-template-columns: 240px repeat(4, 1fr); }
}

@media (max-width: 1024px) {
  .primary-nav, .header-actions { display: none; }
  .mobile-menu-toggle { display: flex; margin-left: auto; }
  .mobile-nav { display: flex; }

  .philosophy-grid { grid-template-columns: 1fr; }
  .philosophy-label { display: none; }
  .philosophy-body, .philosophy-pillars { grid-column: 1; grid-row: auto; }
  .philosophy-pillars { grid-template-columns: 1fr; }

  .stories-grid { grid-template-columns: 1fr; }
  .story-card { min-height: 420px; }

  .tab-panel-inner { grid-template-columns: 1fr; }
  .tab-intro { border-radius: 0; }
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }

  .ecosystem-layout { grid-template-columns: 1fr; }
  .ecosystem-hub { max-width: 200px; margin: 0 auto; }
  .entity-grid-4 { grid-template-columns: repeat(2, 1fr); }

  .insights-more-grid { grid-template-columns: repeat(2, 1fr); }
  .featured-insight-card { grid-template-columns: 1fr; }
  .featured-insight-visual { min-height: 220px; padding: 2rem; }
  .insight-lead-row { flex-wrap: wrap; }
  .insight-lead-btn { width: 100%; justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .credibility-inner { grid-template-columns: 1fr; gap: 2rem; }
  .credibility-stats { flex-direction: row; justify-content: flex-start; }
  .cred-stat { text-align: left; }
}

@media (max-width: 768px) {
  :root { --header-h: 56px; }

  .hero-h1 { font-size: clamp(2rem, 7vw, 3rem); }
  .br-desktop { display: none; }
  .hero-stats { overflow-x: auto; padding-bottom: .5rem; }
  .hero-stat { padding: 0 1.25rem; min-width: max-content; }

  .capabilities-grid { grid-template-columns: 1fr; }
  .ecosystem-entities { grid-template-columns: 1fr; }
  .entity-grid-4 { grid-template-columns: 1fr; }
  .credibility-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .tab-btn { padding: 1rem .9rem; }
  .tab-btn .tab-name { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   MPA ADDITIONS — PAGE HEROES, BREADCRUMBS, TEASERS
   ============================================================ */

/* ── ACTIVE NAV PAGE INDICATOR ──────────────────────────── */
.nav-item.page-active > .nav-link { color: var(--gold); }

/* ── INDUSTRY CARD DEEP-LINK HIGHLIGHT ─────────────────── */
@keyframes industry-highlight {
  0%   { box-shadow: 0 0 0 3px var(--gold), 0 0 28px rgba(249,115,22,.35); border-color: var(--gold); }
  65%  { box-shadow: 0 0 0 3px var(--gold), 0 0 28px rgba(249,115,22,.35); border-color: var(--gold); }
  100% { box-shadow: var(--shadow); border-color: var(--gray-200); }
}
.industry-card--highlight {
  animation: industry-highlight 3.5s ease-out forwards;
  position: relative;
  z-index: 1;
}
.nav-item.page-active > .nav-link::after {
  /* underline accent for active page — mirrors hover state */
}

/* ── PAGE HERO (sub-pages) ──────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding-top: calc(var(--header-h) + 3.5rem);
  padding-bottom: 3.5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(249,115,22,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(249,115,22,.05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 100% 100% at 50% 0%, black 40%, transparent 100%);
}
.page-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 480px;
  height: 480px;
  border: 1px solid rgba(249,115,22,.08);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.breadcrumb a {
  color: rgba(255,255,255,.45);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep {
  color: rgba(255,255,255,.2);
  font-size: .6rem;
}
.breadcrumb-current { color: var(--gold); }

.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.page-hero-eyebrow .dot {
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.page-hero-h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.08;
  margin-bottom: .85rem;
}
.page-hero-h1 em { font-style: normal; color: var(--gold); }

.page-hero-line {
  display: block;
  width: 48px; height: 3px;
  background: var(--gold);
  margin: 1.4rem 0;
  border-radius: 2px;
}

.page-hero-sub {
  font-size: clamp(.9rem, 1.3vw, 1.05rem);
  color: rgba(255,255,255,.58);
  max-width: 580px;
  line-height: 1.75;
}

/* Wide layout variant for page heros with a right panel */
.page-hero-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: end;
}
.page-hero-meta {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  flex-shrink: 0;
  padding-bottom: .25rem;
}
.page-hero-meta-item {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  letter-spacing: .04em;
}
.page-hero-meta-item .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

/* ── TEASER SECTIONS (Homepage) ─────────────────────────── */
.teaser-section { padding: 5.5rem 0; }
.teaser-section--pearl { background: var(--pearl); }
.teaser-section--white { background: var(--white); }
.teaser-section--dark  { background: var(--obsidian); }

.teaser-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.teaser-layout--flip .teaser-visual { order: -1; }

.teaser-eyebrow {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .85rem;
}
.teaser-section--dark .teaser-eyebrow { color: var(--gold); }

.teaser-h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 800;
  color: var(--charcoal);
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-bottom: 1rem;
}
.teaser-section--dark .teaser-h2 { color: var(--white); }

.teaser-desc {
  font-size: .95rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.teaser-section--dark .teaser-desc { color: rgba(255,255,255,.6); }

.teaser-list {
  display: flex;
  flex-direction: column;
  gap: .65rem;
  margin-bottom: 2rem;
  padding: 0;
  list-style: none;
}
.teaser-list li {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--charcoal);
}
.teaser-section--dark .teaser-list li { color: rgba(255,255,255,.75); }
.teaser-list li::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Teaser visual panel */
.teaser-visual {
  position: relative;
}
.teaser-visual-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 2rem;
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.teaser-visual-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(249,115,22,.08) 0%, transparent 60%);
}
.teaser-visual-card--dark { background: var(--obsidian); }
.teaser-visual-card--photo {
  background-size: cover !important;
  background-position: center !important;
}
.teaser-visual-card--photo::before {
  background: linear-gradient(135deg, rgba(4,30,66,.78) 0%, rgba(4,30,66,.5) 100%) !important;
}

.teaser-visual-label {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}
.teaser-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.07);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}
.teaser-stat-cell {
  padding: 1.25rem 1rem;
  background: rgba(0,0,0,.4);
  text-align: center;
}
.teaser-stat-val {
  display: block;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .35rem;
  letter-spacing: -.02em;
}
.teaser-stat-lbl {
  font-size: .62rem;
  font-weight: 700;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.3;
}
.teaser-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  position: relative;
  z-index: 1;
}
.teaser-pill {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(249,115,22,.1);
  border: 1px solid rgba(249,115,22,.22);
  padding: .28rem .65rem;
  border-radius: 2px;
}

/* Story mini cards — homepage teaser */
.story-teaser-section { background: var(--obsidian); padding: 5.5rem 0; }
.story-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.story-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.story-mini {
  background: linear-gradient(160deg, #1a0a00 0%, #2d1500 100%);
  border: 1px solid rgba(249,115,22,.12);
  border-radius: var(--radius);
  padding: 1.75rem;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.story-mini:nth-child(2) { background: linear-gradient(160deg, #001a0a 0%, #003320 100%); }
.story-mini:nth-child(3) { background: linear-gradient(160deg, #0a0028 0%, #1e0055 100%); }
.story-mini:hover {
  transform: translateY(-4px);
  border-color: rgba(249,115,22,.35);
  box-shadow: 0 16px 40px rgba(0,0,0,.5);
}
.story-mini-industry {
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.story-mini h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.35;
  margin-bottom: 1.1rem;
}
.story-mini-kpi {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  margin-bottom: .9rem;
}
.story-mini-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -.02em;
}
.story-mini-lbl {
  font-size: .65rem;
  font-weight: 600;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .07em;
}
.story-mini-link {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  font-size: .75rem;
  font-weight: 700;
  color: rgba(255,255,255,.5);
  text-transform: uppercase;
  letter-spacing: .06em;
  transition: color var(--transition), gap var(--transition);
}
.story-mini:hover .story-mini-link { color: var(--gold); gap: .55rem; }
.story-mini-link svg { width: 12px; height: 12px; }

.story-mini-thumb {
  width: calc(100% + 3.5rem);
  height: 130px;
  object-fit: cover;
  object-position: center;
  margin: -1.75rem -1.75rem 1.1rem -1.75rem;
  display: block;
  opacity: .72;
  border-radius: var(--radius) var(--radius) 0 0;
}

/* ── CTA STRIP ──────────────────────────────────────────── */
.cta-strip {
  background: var(--navy);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at 50% 50%, rgba(249,115,22,.07) 0%, transparent 60%);
}
.cta-strip .container { position: relative; z-index: 1; }
.cta-strip-eyebrow {
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 1.25rem;
}
.cta-strip h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.025em;
  line-height: 1.12;
  margin-bottom: .85rem;
}
.cta-strip h2 em { font-style: normal; color: var(--gold); }
.cta-strip p {
  font-size: 1rem;
  color: rgba(255,255,255,.58);
  max-width: 500px;
  margin: 0 auto 2.25rem;
  line-height: 1.72;
}
.cta-strip-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── INSIGHTS FULL GRID (insights.html) ─────────────────── */
.insights-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.insight-card-full {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  cursor: pointer;
}
.insight-card-full:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.insight-card-vis {
  height: 150px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  position: relative;
}
.insight-card-vis--2 { background: linear-gradient(135deg, var(--navy) 0%, #0d3b2e 100%); }
.insight-card-vis--3 { background: linear-gradient(135deg, var(--navy) 0%, #1a0a28 100%); }
.insight-card-vis--4 { background: linear-gradient(135deg, #1a0800 0%, #3d1f00 100%); }
.insight-card-vis--5 { background: linear-gradient(135deg, #001a10 0%, #003325 100%); }
.insight-card-vis--6 { background: linear-gradient(135deg, #0a001a 0%, #200040 100%); }
.insight-card-corner-tag {
  position: absolute;
  top: .75rem; left: .75rem;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--obsidian);
  background: var(--gold);
  padding: .22rem .55rem;
  border-radius: 2px;
}
.insight-card-body { padding: 1.25rem; }
.insight-card-meta {
  font-size: .68rem;
  color: var(--gray-400);
  font-weight: 600;
  letter-spacing: .02em;
  margin-bottom: .55rem;
}
.insight-card-full h4 {
  font-size: .9rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1.4;
  margin-bottom: .5rem;
}
.insight-card-full p {
  font-size: .8rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: .9rem;
}
.insight-read-link {
  font-size: .72rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .04em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  transition: gap var(--transition);
}
.insight-card-full:hover .insight-read-link { gap: .55rem; }
.insight-read-link svg { width: 12px; height: 12px; }

/* ── LIBRARY FILTER BAR ─────────────────────────────────── */
.library-filter {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
.library-filter-btn {
  font-family: var(--font);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--gray-600);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: 2px;
  padding: .5rem 1rem;
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.library-filter-btn:hover { border-color: var(--gold); color: var(--charcoal); }
.library-filter-btn.active { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.insight-card-full.hidden { display: none; }

/* ── CONTACT PAGE ────────────────────────────────────────── */
.contact-page-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 4rem;
  align-items: start;
}
.contact-info h3 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 1rem;
}
.contact-method-list { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 3rem; }
.contact-method {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.contact-method-icon {
  width: 36px; height: 36px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
  border: 1px solid var(--gray-200);
}
.contact-method-body {}
.contact-method-label {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gray-400);
  display: block;
  margin-bottom: .25rem;
}
.contact-method-value {
  font-size: .925rem;
  font-weight: 600;
  color: var(--charcoal);
}

/* ── CONTACT ABOUT BAND ─────────────────────────────────── */
.contact-about-band {
  background: var(--pearl);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.contact-about-inner {
  max-width: 860px;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.contact-about-accent {
  flex-shrink: 0;
  width: 4px;
  align-self: stretch;
  background: var(--gold);
  border-radius: 2px;
}
.contact-about-inner h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .75rem;
}
.contact-about-inner p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: .85rem;
}
.contact-about-inner p:last-child { margin-bottom: 0; }

/* ── GLOBAL FOOTPRINT BANNER ─────────────────────────────── */
.footprint-band {
  background: var(--obsidian);
  padding: 4rem 0;
}
.footprint-header {
  text-align: center;
  margin-bottom: 2.75rem;
}
.footprint-eyebrow {
  display: block;
  font-size: .65rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.footprint-title {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.footprint-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.footprint-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  background: rgba(255,255,255,.03);
  transition: border-color var(--transition), background var(--transition);
}
.footprint-item:hover {
  border-color: rgba(249,115,22,.35);
  background: rgba(249,115,22,.05);
}
.footprint-flag {
  width: 48px;
  height: 32px;
  border-radius: 3px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.footprint-flag svg { width: 100%; height: 100%; display: block; }
.footprint-region {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  text-align: center;
  line-height: 1.3;
}
.footprint-city {
  font-size: .63rem;
  color: rgba(255,255,255,.35);
  text-align: center;
  letter-spacing: .03em;
}

/* ── RESPONSIVE ADDITIONS ───────────────────────────────── */
@media (max-width: 1024px) {
  .teaser-layout { grid-template-columns: 1fr; gap: 3rem; }
  .teaser-layout--flip .teaser-visual { order: 0; }
  .page-hero-inner { grid-template-columns: 1fr; }
  .page-hero-meta { display: none; }
  .contact-page-layout { grid-template-columns: 1fr; gap: 3rem; }
  .insights-full-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .story-teaser-grid { grid-template-columns: 1fr; }
  .teaser-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .story-teaser-header { flex-direction: column; align-items: flex-start; }
  .footprint-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 480px) {
  .footprint-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .insights-full-grid { grid-template-columns: 1fr; }
  .page-hero { padding-bottom: 2.5rem; }
}
