
/* ===== UTILITY CLASSES ===== */
/* Spacing */
.mt-0  { margin-top: 0; }
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-0  { margin-bottom: 0; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

/* Display & Flex */
.d-flex        { display: flex; }
.d-block       { display: block; }
.d-inline-flex { display: inline-flex; }
.flex-wrap     { flex-wrap: wrap; }
.align-center  { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-8  { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-20 { gap: 20px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Typography */
.text-sm    { font-size: .85rem; }
.text-xs    { font-size: .78rem; }
.text-muted { color: var(--cool-slate); }
.text-white { color: #fff; }
.text-emerald { color: var(--emerald); }
.text-orange  { color: var(--orange); }
.font-italic  { font-style: italic; }
.font-bold    { font-weight: 700; }
.text-center  { text-align: center; }

/* Max-width helpers */
.mw-480 { max-width: 480px; }
.mw-560 { max-width: 560px; }
.mw-640 { max-width: 640px; }
.mw-720 { max-width: 720px; }


/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --midnight: #0F2B3C;
  --emerald: #1A7A6D;
  --orange: #E8734A;
  --cool-white: #F7F8FA;
  --cool-slate: #4D6070;
  --body-text: #1A2B35;
  --body-light: #3D4F5C;
  --border-light: #E2E6EA;
  --border-mid: #CBD2D9;
  --card-shadow: 0 2px 24px rgba(15,43,60,.07);
  --card-shadow-hover: 0 10px 40px rgba(15,43,60,.14);
  --font-display: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'IBM Plex Sans', 'Helvetica Neue', Arial, sans-serif;
  --nav-height: 96px;
  --section-pad: 112px;
  --container: 1160px;
  --radius: 8px;
  --radius-lg: 14px;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-height); }
body {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.75;
  color: var(--body-text);
  background: var(--cool-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--emerald); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--orange); }
/* Touch target sizing — WCAG 2.5.5 minimum 44×44px */
a, button { -webkit-tap-highlight-color: transparent; }
.nav__links a, .footer__links a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding-top: 4px;
  padding-bottom: 4px;
}
.btn { min-height: 44px; }
.nav__mobile-toggle { min-width: 44px; min-height: 44px; justify-content: center; align-items: center; }
h1, h2, h3, h4, h5 { font-family: var(--font-display); color: var(--midnight); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); letter-spacing: -0.015em; }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.55rem); letter-spacing: -0.01em; }
h4 { font-size: clamp(1rem, 1.8vw, 1.1rem); letter-spacing: -0.005em; }
p { margin-bottom: 1.1em; color: var(--body-text); }
p:last-child { margin-bottom: 0; }
ul { list-style: none; }

/* ===== UTILITY CLASSES ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 min(5vw, 40px); }
.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--midnight); }
.section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: rgba(255,255,255,.88); }
.section--dark .accent-label { color: var(--orange); }
.section--white { background: #fff; }
.section--tinted { background: var(--cool-white); }
.text-center { text-align: center; }
.text-slate { color: var(--cool-slate); }
.text-emerald { color: var(--emerald); }
.text-orange { color: var(--orange); }
.text-white { color: #fff; }

.accent-label {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 10px;
}
.orange-rule {
  width: 44px;
  height: 3px;
  background: var(--orange);
  border-radius: 2px;
  margin-bottom: 22px;
}
.orange-rule--center { margin-left: auto; margin-right: auto; }

/* ===== GRID SYSTEM ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
.grid-2--center { align-items: center; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-5 { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 768px) {
  :root { --section-pad: 72px; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; }
}

/* ===== SECTION HEADER ===== */
.section__header { margin-bottom: 60px; }
.section__header h2 { margin-bottom: 16px; }
.section__header p { max-width: 640px; color: var(--body-light); font-size: 1.05rem; line-height: 1.7; }
.section__header--center { text-align: center; }
.section__header--center p { margin-left: auto; margin-right: auto; }
.section__header--center .orange-rule { margin-left: auto; margin-right: auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: #0F2B3C;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 1000;
  transition: box-shadow .3s ease;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.18); }
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav__logo img {
  height: 64px;
  width: auto;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav__links a {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.72);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.nav__links a:hover { color: #fff; }
.nav__cta {
  font-family: var(--font-display) !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  background: var(--orange) !important;
  color: #fff !important;
  padding: 10px 22px !important;
  border-radius: 6px !important;
  transition: background .2s, transform .15s !important;
}
.nav__cta:hover { background: #d4623c !important; color: #fff !important; transform: translateY(-1px); }
.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav__mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: .3s;
}
/* ===== OFF-CANVAS DRAWER NAV ===== */
.nav__drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  z-index: 998;
  opacity: 0;
  transition: opacity .3s ease;
}
.nav__drawer-overlay.open {
  display: block;
  opacity: 1;
}
.nav__drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(320px, 85vw);
  height: 100dvh;
  background: var(--midnight);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: -8px 0 40px rgba(0,0,0,.3);
  overflow-y: auto;
}
.nav__drawer.open {
  transform: translateX(0);
}
.nav__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.nav__drawer-logo img {
  height: 52px;
  width: auto;
}
.nav__drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.7);
  border-radius: 6px;
  transition: background .2s, color .2s;
}
.nav__drawer-close:hover { background: rgba(255,255,255,.08); color: #fff; }
.nav__drawer-close svg { width: 22px; height: 22px; }
.nav__drawer-links {
  list-style: none;
  padding: 16px 0;
  flex: 1;
}
.nav__drawer-links li a {
  display: flex;
  align-items: center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: rgba(255,255,255,.78);
  text-decoration: none;
  transition: color .2s, background .2s;
  min-height: 52px;
  border-left: 3px solid transparent;
}
.nav__drawer-links li a:hover {
  color: #fff;
  background: rgba(255,255,255,.05);
  border-left-color: var(--orange);
}
.nav__drawer-footer {
  padding: 20px 24px 32px;
  border-top: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0;
}
.nav__drawer-footer .btn {
  width: 100%;
  justify-content: center;
}
/* Hamburger animation */
.nav__mobile-toggle span {
  transform-origin: center;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.nav__mobile-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav__mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
@media (max-width: 960px) {
  .nav__links { display: none; }
  .nav__mobile-toggle { display: flex; }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  padding: 14px 30px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: var(--orange); color: #fff; }
.btn--primary:hover { background: #d4623c; color: #fff; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,115,74,.32); }
.btn--secondary { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.32); }
.btn--secondary:hover { border-color: #fff; color: #fff; transform: translateY(-2px); }
.btn--outline { background: transparent; color: var(--emerald); border: 1.5px solid var(--emerald); }
.btn--outline:hover { background: var(--emerald); color: #fff; transform: translateY(-2px); }
.btn--arrow::after { content: '\2192'; transition: transform .2s; }
.btn--arrow:hover::after { transform: translateX(5px); }
.btn--sm { font-size: .85rem; padding: 10px 22px; }
.linkedin-btn { display: inline-flex; align-items: center; gap: 8px; }
.linkedin-icon { width: 16px; height: 16px; flex-shrink: 0; }
.btn--sm .linkedin-icon { width: 15px; height: 15px; }
.linkedin-footer-link { display: inline-flex; align-items: center; gap: 6px; }
.linkedin-footer-link .linkedin-icon { width: 14px; height: 14px; opacity: .7; transition: opacity .2s; }
.linkedin-footer-link:hover .linkedin-icon { opacity: 1; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--midnight);
  overflow: hidden;
  padding-top: var(--nav-height);
}
.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 15% 60%, rgba(26,122,109,.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 85% 15%, rgba(232,115,74,.1) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 90% 85%, rgba(26,122,109,.08) 0%, transparent 60%);
}
.hero__grid {
  position: absolute;
  inset: 0;
  opacity: .028;
  background-image:
    linear-gradient(rgba(255,255,255,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.15) 1px, transparent 1px);
  background-size: 64px 64px;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 80px;
  width: 100%;
  padding: 80px 0 60px;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(232,115,74,.12);
  border: 1px solid rgba(232,115,74,.25);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 28px;
  animation: fadeUp .5s ease both;
}
.hero__eyebrow span {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--orange);
  animation: pulse 2s ease infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.8); }
}
.hero h1 {
  color: #fff;
  margin-bottom: 24px;
  animation: fadeUp .6s .08s ease both;
}
.hero h1 em { font-style: normal; color: var(--orange); }
.hero__subtitle {
  font-size: 1.12rem;
  color: rgba(255,255,255,.68);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 580px;
  animation: fadeUp .6s .16s ease both;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp .6s .24s ease both;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  animation: fadeUp .6s .32s ease both;
  flex-wrap: wrap;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__trust-item span {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-family: var(--font-display);
  font-weight: 500;
}
.hero__trust-icon {
  width: 18px;
  height: 18px;
  color: var(--emerald);
  opacity: .8;
}
.hero__visual {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex-shrink: 0;
  padding-top: 68px; /* align visually with the h1 */
}
.hero__layer-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero__layer-item {
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: layerSlide .5s ease both;
}
.hero__layer-item:nth-child(1) { animation-delay: .5s; }
.hero__layer-item:nth-child(2) { animation-delay: .65s; }
.hero__layer-item:nth-child(3) { animation-delay: .8s; }
.hero__layer-item:nth-child(4) { animation-delay: .95s; }
.hero__layer-bar {
  height: 13px;
  border-radius: 4px;
}
.hero__layer-item:nth-child(1) .hero__layer-bar { width: 160px; background: rgba(26,122,109,.35); }
.hero__layer-item:nth-child(2) .hero__layer-bar { width: 200px; background: rgba(26,122,109,.6); }
.hero__layer-item:nth-child(3) .hero__layer-bar { width: 240px; background: rgba(26,122,109,.85); }
.hero__layer-item:nth-child(4) .hero__layer-bar { width: 280px; background: var(--orange); }
.hero__layer-label {
  font-family: var(--font-body);
  font-size: .68rem;
  color: rgba(255,255,255,.38);
  letter-spacing: .05em;
  white-space: nowrap;
}
.hero__layer-item:nth-child(4) .hero__layer-label { color: rgba(232,115,74,.7); }
@media (max-width: 1100px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { display: none; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
@keyframes layerSlide { from { opacity: 0; transform: translateX(-28px); } to { opacity: 1; transform: translateX(0); } }

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }

/* ===== STAT CARDS ===== */
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
@media (max-width: 768px) { .stat-row { grid-template-columns: 1fr; } }
.stat-card {
  padding: 32px 28px;
  background: #fff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--emerald);
  box-shadow: var(--card-shadow);
  transition: transform .3s, box-shadow .3s;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--card-shadow-hover); }
.stat-card--orange { border-left-color: var(--orange); }
.stat-card__number {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--midnight);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-card--orange .stat-card__number { color: var(--orange); }
.stat-card__label { font-size: .88rem; color: var(--body-light); line-height: 1.55; font-weight: 500; }

/* ===== CALLOUT BOX ===== */
.callout {
  border-left: 5px solid var(--orange);
  border-top: 1px solid rgba(232,115,74,.18);
  border-right: 1px solid rgba(232,115,74,.18);
  border-bottom: 1px solid rgba(232,115,74,.18);
  background: #FDF6F4;
  padding: 28px 36px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 40px 0;
}
.callout p {
  font-style: italic;
  color: var(--midnight);
  font-size: 1.08rem;
  line-height: 1.7;
  font-family: var(--font-display);
  font-weight: 500;
}
.callout p::before { content: '\201C'; }
.callout p::after { content: '\201D'; }

/* ===== VALUE CARDS ===== */
.value-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--card-shadow);
  border-top: 4px solid var(--emerald);
  transition: transform .3s, box-shadow .3s;
  position: relative;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.value-card--orange { border-top-color: var(--orange); }
.value-card__step {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.value-card--orange .value-card__step { color: var(--orange); }
.value-card__step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(26,122,109,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  color: var(--emerald);
  font-weight: 700;
  flex-shrink: 0;
}
.value-card--orange .value-card__step-num { background: rgba(232,115,74,.1); color: var(--orange); }
.value-card h3 { margin-bottom: 12px; font-size: 1.18rem; }
.value-card p { font-size: .92rem; color: var(--body-light); line-height: 1.65; }

/* ===== FOUR-LAYER ARCHITECTURE ===== */
.layer-stack { display: flex; flex-direction: column; gap: 3px; }
.layer-row {
  display: flex;
  align-items: stretch;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s;
}
.layer-row:hover { transform: translateX(4px); }
.layer-bar { width: 6px; flex-shrink: 0; }
.layer-content {
  flex: 1;
  padding: 20px 24px;
  background: rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 20px;
  border-left: 1px solid rgba(255,255,255,.04);
}
.layer-content h4 {
  font-size: .95rem;
  min-width: 180px;
  color: #fff;
}
.layer-content p { font-size: .88rem; color: rgba(255,255,255,.78); margin: 0; }
.layer-row:nth-child(1) .layer-bar { background: rgba(26,122,109,.38); }
.layer-row:nth-child(2) .layer-bar { background: rgba(26,122,109,.62); }
.layer-row:nth-child(3) .layer-bar { background: rgba(26,122,109,.87); }
.layer-row:nth-child(4) .layer-bar { background: var(--orange); }
.layer-row:nth-child(4) .layer-content { background: rgba(232,115,74,.07); }
.layer-row:nth-child(4) h4 { color: var(--orange); }
.layer-badge {
  font-family: var(--font-display);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(232,115,74,.15);
  color: var(--orange);
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .layer-content { flex-direction: column; align-items: flex-start; gap: 6px; }
  .layer-content h4 { min-width: unset; }
}

/* ===== DIMENSION CARDS ===== */
.dim-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border-light);
  transition: border-color .3s, box-shadow .3s, transform .3s;
  position: relative;
}
.dim-card:hover { border-color: var(--emerald); box-shadow: var(--card-shadow); transform: translateY(-3px); }
.dim-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.4rem;
  background: rgba(26,122,109,.08);
}
.dim-card__num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  color: var(--border-mid);
  letter-spacing: .06em;
}
.dim-card h4 { margin-bottom: 10px; font-size: 1.02rem; }
.dim-card p { font-size: .88rem; color: var(--body-light); line-height: 1.6; }
.dim-card__article {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 600;
  color: var(--emerald);
  letter-spacing: .06em;
  margin-top: 14px;
  display: block;
}

/* ===== COMPARISON TABLE ===== */
.diff-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin-top: 36px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
}
.diff-table thead th {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 18px 24px;
  text-align: left;
  color: #fff;
  background: var(--midnight);
}
.diff-table thead th:first-child { background: #1a3d50; }
.diff-table td {
  padding: 18px 24px;
  font-size: .92rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  line-height: 1.55;
}
.diff-table tr:last-child td { border-bottom: none; }
.diff-table tr:nth-child(even) td { background: var(--cool-white); }
.diff-table tr:nth-child(odd) td { background: #fff; }
.diff-table td:first-child { color: var(--body-light); }
.diff-table td:last-child { color: var(--midnight); font-weight: 500; }
.diff-table td:last-child::before { content: '✓ '; color: var(--emerald); font-weight: 700; }

/* ===== INSIGHT CARDS ===== */
.insight-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform .3s, box-shadow .3s;
  display: flex;
  flex-direction: column;
}
.insight-card:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.insight-card__top { height: 5px; background: var(--emerald); }
.insight-card:nth-child(2) .insight-card__top { background: var(--midnight); }
.insight-card:nth-child(3) .insight-card__top { background: var(--orange); }
.insight-card__body { padding: 28px 26px; flex: 1; display: flex; flex-direction: column; }
.insight-card__tag {
  font-family: var(--font-display);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 12px;
  display: block;
}
.insight-card h4 { font-size: 1.05rem; margin-bottom: 12px; line-height: 1.45; flex: 1; }
.insight-card p { font-size: .88rem; color: var(--body-light); line-height: 1.65; }
.insight-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--emerald);
  margin-top: 20px;
  transition: gap .2s, color .2s;
}
.insight-card__link:hover { color: var(--orange); gap: 10px; }
.insight-card__link::after { content: '\2192'; }

/* ===== PROCESS STEPS ===== */
.process-step { display: flex; gap: 20px; margin-bottom: 32px; }
.process-step:last-child { margin-bottom: 0; }
.process-step__num {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(26,122,109,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--emerald);
}
.process-step h4 { margin-bottom: 6px; font-size: 1rem; }
.process-step p { font-size: .9rem; color: var(--body-light); }

/* ===== ABOUT / FOUNDER ===== */
.about__founder { display: flex; gap: 48px; align-items: flex-start; }
.about__photo-wrap {
  flex-shrink: 0;
  position: relative;
}
.about__photo {
  width: 240px;
  height: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  position: relative;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.about__photo-accent {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5px;
  background: var(--orange);
}
.about__photo-badge {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--midnight);
  border: 2px solid var(--orange);
  border-radius: 8px;
  padding: 6px 14px;
  white-space: nowrap;
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: .04em;
}
.about__bio { flex: 1; }
.about__bio h3 { margin-bottom: 6px; }
.about__bio .role-label {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 500;
  color: var(--emerald);
  margin-bottom: 24px;
  display: block;
}
@media (max-width: 768px) {
  .about__founder { flex-direction: column; }
  .about__photo { width: 180px; height: 210px; }
}

/* ===== RESEARCH BLOCK ===== */
.research-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: background .3s, border-color .3s;
}
.research-card:hover { background: rgba(255,255,255,.08); border-color: rgba(26,122,109,.4); }
.research-card__icon { font-size: 1.6rem; margin-bottom: 14px; }
.research-card h4 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.research-card p { font-size: .88rem; color: rgba(255,255,255,.8); line-height: 1.6; }

/* ===== CONTACT SECTION ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group label {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--midnight);
  display: block;
  margin-bottom: 7px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: .92rem;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  background: #fff;
  color: var(--body-text);
  transition: border-color .2s, box-shadow .2s;
  appearance: none;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--emerald);
  box-shadow: 0 0 0 3px rgba(26,122,109,.1);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.contact-sidebar {
  background: var(--midnight);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  color: #fff;
}
.contact-sidebar h3 { color: #fff; margin-bottom: 8px; font-size: 1.3rem; }
.contact-sidebar .sidebar-intro { color: rgba(255,255,255,.82); font-size: .95rem; margin-bottom: 32px; line-height: 1.65; }
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-detail__icon {
  width: 38px;
  height: 38px;
  border-radius: 9px;
  background: rgba(26,122,109,.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .9rem;
}
.contact-detail__text { font-size: .9rem; color: rgba(255,255,255,.88); line-height: 1.5; }
.contact-detail__text strong { display: block; color: #fff; font-family: var(--font-display); font-weight: 600; margin-bottom: 2px; font-size: .88rem; }
.contact-sidebar__divider { border: none; border-top: 1px solid rgba(255,255,255,.08); margin: 28px 0; }
.speaking-block h4 { color: #fff; font-size: .95rem; margin-bottom: 10px; }
.speaking-block p { font-size: .88rem; color: rgba(255,255,255,.78); line-height: 1.6; }
.speaking-block a { color: var(--orange); }
.speaking-block a:hover { color: #fff; }
.what-to-expect {
  background: rgba(26,122,109,.1);
  border: 1px solid rgba(26,122,109,.2);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-top: 24px;
}
.what-to-expect h5 {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--emerald);
  margin-bottom: 10px;
}
.what-to-expect p { font-size: .88rem; color: rgba(255,255,255,.82); margin: 0; line-height: 1.6; }

/* ===== FOOTER ===== */
.footer {
  background: var(--midnight);
  padding: 72px 0 0;
  position: relative;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
@media (max-width: 900px) { .footer__inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__inner { grid-template-columns: 1fr; } }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo img { height: 40px; width: auto; max-width: 280px; }
.footer__tagline { font-style: italic; font-size: .9rem; color: rgba(255,255,255,.7); line-height: 1.5; }
.footer h5 {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-bottom: 18px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer__links a { font-size: .88rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom p { font-size: .78rem; color: rgba(255,255,255,.5); }
.footer__bottom a { font-size: .78rem; color: rgba(255,255,255,.5); transition: color .2s; }
.footer__bottom a:hover { color: rgba(255,255,255,.6); }
.footer__orange-bar {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: var(--orange);
}
.newsletter-form { display: flex; gap: 10px; max-width: 440px; }
.newsletter-form input {
  flex: 1;
  padding: 11px 15px;
  font-family: var(--font-body);
  font-size: .88rem;
  border: 1.5px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,.05);
  color: #fff;
  transition: border-color .2s;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,.5); }
.newsletter-form input:focus { outline: none; border-color: rgba(26,122,109,.5); }
.newsletter-form button {
  padding: 11px 20px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .85rem;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.newsletter-form button:hover { background: #d4623c; }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 10px; top: 8px; bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--emerald), var(--orange));
  border-radius: 2px;
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item:last-child { margin-bottom: 0; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -26px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--emerald);
  border: 2px solid var(--cool-white);
  box-shadow: 0 0 0 3px rgba(26,122,109,.2);
}
.timeline-item:last-child::before { background: var(--orange); box-shadow: 0 0 0 3px rgba(232,115,74,.2); }
.timeline-item__date {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.timeline-item h4 { margin-bottom: 6px; font-size: 1rem; }
.timeline-item p { font-size: .9rem; color: var(--body-light); }

/* ===== DELIVERABLES LIST ===== */
.deliverables-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.deliverables-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .92rem;
  color: var(--body-light);
  line-height: 1.55;
}
.deliverables-list li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(26,122,109,.1);
  border: 1.5px solid var(--emerald);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%231A7A6D' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===== FEATURE HIGHLIGHT ===== */
.feature-highlight {
  background: var(--midnight);
  border: 2px solid rgba(26,122,109,.45);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  margin: 40px 0;
}
.feature-highlight__label {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  display: block;
}
.feature-highlight p {
  font-size: 1.1rem;
  color: rgba(255,255,255,.92);
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.7;
}

/* ===== ALMA PRODUCT IMAGE ===== */
.alma-product-frame {
  background: var(--midnight);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--card-shadow-hover);
  position: relative;
  overflow: hidden;
}
.alma-product-frame::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--orange));
}
.alma-product-frame img { border-radius: var(--radius); width: 100%; }

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-light), transparent);
  margin: 0;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.badge--emerald { background: rgba(26,122,109,.1); color: var(--emerald); border: 1px solid rgba(26,122,109,.2); }
.badge--orange { background: rgba(232,115,74,.1); color: var(--orange); border: 1px solid rgba(232,115,74,.2); }

/* ===== ARTICLE CARD ===== */
.article-teaser {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.article-teaser:last-child { border-bottom: none; }
.article-teaser__num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--border-light);
  line-height: 1;
  flex-shrink: 0;
  width: 40px;
}
.article-teaser h4 { font-size: 1rem; margin-bottom: 6px; line-height: 1.4; }
.article-teaser p { font-size: .88rem; color: var(--body-light); }
.article-teaser a { color: var(--emerald); font-size: .85rem; font-weight: 600; font-family: var(--font-display); }
.article-teaser a:hover { color: var(--orange); }

/* ===== MOBILE RESPONSIVE — COMPREHENSIVE ===== */

/* Tablet: 768px and below */
@media (max-width: 768px) {
  :root {
    --nav-height: 88px;
    --section-pad: 64px;
  }

  /* Nav */
  .nav__logo img { height: 68px; }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 64px;
  }
  .hero__content { max-width: 100%; }
  .hero h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
  .hero__subtitle { font-size: 1rem; }
  .hero__actions { flex-direction: column; gap: 12px; }
  .hero__actions .btn { width: 100%; justify-content: center; text-align: center; }
  .hero__trust { gap: 14px; margin-top: 36px; padding-top: 28px; }
  .hero__visual { display: none; }

  /* Stat row */
  .stat-row { grid-template-columns: 1fr; gap: 16px; margin-top: 36px; }

  /* Callout */
  .callout { padding: 20px 22px; }

  /* Section headers */
  .section__header { margin-bottom: 40px; }
  .section__header h2 { font-size: clamp(1.5rem, 6vw, 2rem); }

  /* Grids — all collapse to single column */
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr; gap: 20px; }

  /* Value cards */
  .value-card { padding: 28px 22px; }

  /* Layer stack */
  .layer-content { flex-direction: column; align-items: flex-start; gap: 8px; }
  .layer-content h4 { min-width: unset; }

  /* Dimension cards */
  .dim-card { padding: 22px 18px; }

  /* Comparison table — make scrollable */
  .diff-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .diff-table { min-width: 480px; }
  .diff-table td, .diff-table thead th { padding: 14px 16px; font-size: .85rem; }

  /* Insight cards */
  .insight-card__body { padding: 22px 20px; }

  /* Process steps */
  .process-step { gap: 14px; }

  /* About founder */
  .about__founder { flex-direction: column; gap: 32px; align-items: flex-start; }
  .about__photo { width: 160px; height: 190px; }
  .about__photo-badge { font-size: .65rem; }

  /* Research cards */
  .research-card { padding: 22px 18px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-sidebar { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer { padding-top: 52px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding-bottom: 40px; }
  .footer__brand { grid-column: 1 / -1; }
  .newsletter-form { flex-direction: column; gap: 10px; max-width: 100%; }
  .newsletter-form input, .newsletter-form button { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 8px; }

  /* Feature highlight */
  .feature-highlight { padding: 24px 22px; }

  /* Article teasers */
  .article-teaser { flex-direction: column; gap: 10px; }
  .article-teaser__num { font-size: 1.4rem; }

  /* Sticky CTA */
  .sticky-cta { flex-direction: column; align-items: flex-start; gap: 10px; padding: 14px 20px; }
  .sticky-cta__text { font-size: .82rem; }
  .sticky-cta .btn { width: 100%; justify-content: center; }

  /* Buttons */
  .btn { font-size: .9rem; padding: 13px 24px; }
}

/* Mobile: 480px and below */
@media (max-width: 480px) {
  :root {
    --nav-height: 84px;
    --section-pad: 52px;
  }

  .container { padding: 0 18px; }

  /* Nav */
  .nav__logo img { height: 60px; }
  .nav__inner { padding: 0 18px; }

  /* Hero */
  .hero {
    padding-top: calc(var(--nav-height) + 36px);
    padding-bottom: 52px;
  }
  .hero h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); }
  .hero__eyebrow span { font-size: .65rem; }
  .hero__trust { gap: 10px; }
  .hero__trust-item span { font-size: .76rem; }

  /* Stat cards */
  .stat-card { padding: 24px 20px; }
  .stat-card__number { font-size: 1.8rem; }

  /* Section headers */
  .section__header { margin-bottom: 32px; }

  /* Value cards */
  .value-card { padding: 22px 18px; }

  /* ALMA dimension cards */
  .dim-card { padding: 18px 16px; }

  /* About */
  .about__photo { width: 140px; height: 165px; }
  .about__bio h3 { font-size: 1.3rem; }

  /* Contact sidebar */
  .contact-sidebar { padding: 22px 18px; }
  .contact-detail { gap: 10px; }
  .contact-detail__icon { width: 32px; height: 32px; font-size: .8rem; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer h5 { margin-bottom: 12px; }
  .footer__links { gap: 9px; }
  .footer__bottom { gap: 6px; }

  /* Insight cards */
  .insight-card__body { padding: 18px 16px; }

  /* Callout */
  .callout p { font-size: .98rem; }

  /* Layer rows */
  .layer-content { padding: 16px 18px; }
  .layer-content p { font-size: .82rem; }

  /* Process steps */
  .process-step__num { width: 36px; height: 36px; font-size: .9rem; }

  /* Timeline */
  .timeline { padding-left: 24px; }
  .timeline-item h4 { font-size: .95rem; }

  /* Sticky CTA — hide on very small screens to avoid blocking content */
  .sticky-cta { display: none; }
}

/* Prevent horizontal scroll globally */
html, body { overflow-x: hidden; }

/* ===== STICKY CTA BAR ===== */
.sticky-cta {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--midnight);
  border-top: 3px solid var(--orange);
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform .4s ease;
  box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.sticky-cta.visible { transform: translateY(0); }
.sticky-cta__text {
  font-family: var(--font-display);
  font-size: .9rem;
  color: rgba(255,255,255,.75);
}
.sticky-cta__text strong { color: #fff; }
@media (max-width: 600px) { .sticky-cta { display: none; } }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero__layer-item { animation: none !important; opacity: 1 !important; }
  .nav__drawer { transition: none !important; }
  .nav__drawer-overlay { transition: none !important; }
}

/* ===== DARK MODE ===== */
@media (prefers-color-scheme: dark) {
  :root {
    --cool-white: #111C24;
    --body-text: #DDE3E8;
    --body-light: #A8B4BE;
    --border-light: #1E3040;
    --border-mid: #2A4055;
    --card-shadow: 0 2px 24px rgba(0,0,0,.3);
    --card-shadow-hover: 0 10px 40px rgba(0,0,0,.45);
  }
  body { background: #111C24; color: var(--body-text); }
  h1, h2, h3, h4, h5 { color: #EEF2F5; }
  p { color: var(--body-text); }
  .section--white { background: #162330; }
  .section--tinted { background: #111C24; }
  .value-card, .dim-card, .research-card, .insight-card, .service-card {
    background: #162330;
    border-color: var(--border-light);
  }
  .contact-form-wrap, .contact-sidebar {
    background: #162330;
    border-color: var(--border-light);
  }
  .contact-form-wrap input,
  .contact-form-wrap textarea,
  .contact-form-wrap select {
    background: #111C24;
    border-color: var(--border-mid);
    color: var(--body-text);
  }
  .diff-table thead { background: #162330; }
  .diff-table tbody tr:nth-child(even) { background: #162330; }
  .diff-table { border-color: var(--border-light); }
  .diff-table td, .diff-table thead th { border-color: var(--border-light); }
  .callout { background: rgba(26,122,109,.15); border-color: rgba(26,122,109,.3); }
  .sticky-cta { background: #162330; border-color: var(--border-light); }
  .footer { background: #0A1A26; }
  .newsletter-form input {
    background: rgba(255,255,255,.06);
    border-color: rgba(255,255,255,.12);
    color: #fff;
  }
  .layer-item { background: rgba(255,255,255,.04); border-color: rgba(255,255,255,.08); }
  .process-step__num { background: rgba(26,122,109,.2); }
  .timeline-item { border-color: var(--border-light); }
  .nav__drawer-overlay { background: rgba(0,0,0,.7); }
}

/* ===== PRINT STYLESHEET ===== */
@media print {
  .nav, .sticky-cta, .nav__drawer, .nav__drawer-overlay,
  .hero__visual, .hero__grid, .hero__bg-gradient,
  .newsletter-form, .contact-form-wrap button[type="submit"],
  .footer__newsletter { display: none !important; }
  body {
    font-size: 11pt;
    line-height: 1.6;
    color: #000;
    background: #fff;
  }
  h1, h2, h3, h4 { color: #000; page-break-after: avoid; }
  h1 { font-size: 22pt; }
  h2 { font-size: 16pt; }
  h3 { font-size: 13pt; }
  .section { padding: 24pt 0; }
  .section--dark { background: #fff !important; }
  .section--dark h2, .section--dark h3, .section--dark h4,
  .section--dark p, .section--dark .accent-label { color: #000 !important; }
  .container { max-width: 100%; padding: 0 12pt; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: 1fr 1fr; gap: 12pt; }
  .value-card, .dim-card, .research-card, .service-card {
    border: 1pt solid #ccc;
    box-shadow: none;
    break-inside: avoid;
  }
  .hero {
    padding: 24pt 0;
    background: #fff !important;
    min-height: auto;
  }
  .hero h1 { font-size: 22pt; color: #000; }
  .hero__subtitle { color: #333; }
  .hero__eyebrow, .hero__actions, .hero__trust { display: none; }
  a[href]::after { content: " (" attr(href) ")"; font-size: 8pt; color: #666; }
  a[href^="#"]::after { content: ""; }
  .footer { background: #fff !important; }
  .footer__bottom { color: #666; }
  @page { margin: 1.5cm 2cm; }
}

/* ===== ACCESSIBILITY ENHANCEMENTS ===== */

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip navigation link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  padding: .75rem 1.5rem;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: .95rem;
  border-radius: 0 0 6px 6px;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 0;
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Global focus-visible outline */
:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
  border-radius: 3px;
}
:focus:not(:focus-visible) {
  outline: none;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ===== ALMA LOGO DISPLAY ===== */
.alma-logo-display {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--card-shadow-hover);
  max-width: 480px;
  margin: 0 auto;
}
.alma-logo-display img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

/* ===== COLLABORATIONS SECTION ===== */
.collab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  margin-bottom: 32px;
}
.collab-placeholder {
  border: 2px dashed var(--border-mid);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 120px;
  background: rgba(255,255,255,.6);
  transition: border-color .2s, background .2s;
}
.collab-placeholder:hover {
  border-color: var(--emerald);
  background: rgba(26,122,109,.04);
}
.collab-placeholder__inner { text-align: center; }
.collab-placeholder__label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cool-slate);
  margin-bottom: 6px;
}
.collab-placeholder__note {
  font-size: .85rem;
  color: var(--cool-slate);
  margin: 0;
  font-style: italic;
}
.collab-note {
  text-align: center;
  font-size: .9rem;
  color: var(--body-light);
  margin-top: 8px;
}
.text-link {
  color: var(--orange);
  text-decoration: none;
  font-weight: 600;
}
.text-link:hover { text-decoration: underline; }

@media (max-width: 768px) {
  .collab-grid { grid-template-columns: 1fr; }
  .alma-logo-display { max-width: 100%; }
}


/* ===== COLLABORATIONS TEASER (index.html) ===== */
.collab-teaser {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.collab-teaser__text h2 {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  color: var(--midnight);
  margin-bottom: 16px;
  line-height: 1.25;
}
.collab-teaser__text p {
  color: var(--body-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 580px;
}
.collab-teaser__types {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 240px;
}
.collab-type-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 500;
  border: 1px solid;
}
.collab-type-pill--academic {
  background: rgba(26,122,109,.06);
  border-color: rgba(26,122,109,.2);
  color: var(--emerald);
}
.collab-type-pill--policy {
  background: rgba(232,115,74,.06);
  border-color: rgba(232,115,74,.2);
  color: var(--orange);
}
.collab-type-pill--org {
  background: rgba(123,158,174,.06);
  border-color: rgba(123,158,174,.2);
  color: #4D7A8E;
}
@media (max-width: 768px) {
  .collab-teaser { grid-template-columns: 1fr; gap: 32px; }
  .collab-teaser__types { flex-direction: row; flex-wrap: wrap; min-width: unset; }
  .collab-type-pill { font-size: .82rem; padding: 10px 14px; }
}

/* ===== FOOTER LOGO TRANSPARENT FIX ===== */
.footer__logo-img {
  height: 58px;
  width: auto;
  display: block;
}
