/* AFRIPAYCBT — PSC presentation homepage */

:root {
  --eh-emerald: #0B6B4B;
  --eh-deep: #064E3B;
  --eh-deep-2: #033528;
  --eh-lime: #16A34A;
  --eh-lime-bright: #22C55E;
  --eh-gold: #D4AF37;
  --eh-gold-soft: rgba(212, 175, 55, 0.18);
  --eh-white: #ffffff;
  --eh-ink: #0f1f1a;
  --eh-muted: #5b6b64;
  --eh-gray: #f3f6f4;
  --eh-gray-2: #e7eee9;
  --eh-border: rgba(6, 78, 59, 0.12);
  --eh-shadow: 0 18px 50px rgba(3, 53, 40, 0.12);
  --eh-shadow-sm: 0 8px 24px rgba(3, 53, 40, 0.08);
  --eh-radius: 18px;
  --eh-radius-sm: 12px;
  --eh-font: "Plus Jakarta Sans", system-ui, sans-serif;
  --eh-serif: "Source Serif 4", Georgia, serif;
  --eh-max: 1280px;
  --eh-pad: 1.75rem;
  --eh-header-h: 112px;
}

[data-theme="dark"] {
  --eh-white: #0b1612;
  --eh-ink: #eef5f1;
  --eh-muted: #9db0a7;
  --eh-gray: #12201b;
  --eh-gray-2: #1a2c25;
  --eh-border: rgba(255, 255, 255, 0.08);
  --eh-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

.eh-body {
  margin: 0;
  font-family: var(--eh-font);
  color: var(--eh-ink);
  background: var(--eh-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
.eh-body a { color: inherit; text-decoration: none; }
.eh-body img { max-width: 100%; display: block; }

.eh-container {
  width: 100%;
  max-width: var(--eh-max);
  margin-inline: auto;
  padding-left: var(--eh-pad);
  padding-right: var(--eh-pad);
  box-sizing: border-box;
}

.eh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  font-size: 0.92rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.eh-btn--sm { padding: 0.55rem 1rem; font-size: 0.84rem; }
.eh-btn--primary {
  background: linear-gradient(135deg, var(--eh-emerald), var(--eh-deep));
  color: #fff;
  box-shadow: 0 10px 28px rgba(11, 107, 75, 0.28);
}
.eh-btn--primary:hover { transform: translateY(-1px); }
.eh-btn--lime {
  background: var(--eh-lime-bright);
  color: #052e16;
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(34, 197, 94, 0.28);
}
.eh-btn--lime:hover {
  transform: translateY(-1px);
  background: #4ade80;
}
.eh-btn--outline {
  border-color: var(--eh-emerald);
  color: var(--eh-emerald);
  background: transparent;
}
.eh-btn--outline:hover { background: rgba(11, 107, 75, 0.08); }
.eh-btn--outline-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
  background: transparent;
}
.eh-btn--outline-light:hover { background: rgba(255, 255, 255, 0.1); }
.eh-btn--ghost { color: var(--eh-ink); background: transparent; }
.eh-btn--ghost:hover { background: rgba(11, 107, 75, 0.06); }
.eh-btn--light { background: #fff; color: var(--eh-deep); }

/* App pages (apply, portals, etc.) under enterprise chrome */
.eh-body.eh-public-app .eh-main--app {
  min-height: 50vh;
  background: var(--bg, #f4f7f5);
}
.eh-body.eh-public-app .eh-main--app a:not(.btn):not(.eh-btn) {
  color: var(--primary, #0B6B4B);
}
.eh-body.eh-public-app .eh-main--app a:not(.btn):not(.eh-btn):hover {
  text-decoration: underline;
}
.eh-body.eh-public-app .public-page-content {
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.eh-body.eh-public-app .public-container {
  width: 100%;
  max-width: var(--eh-max, 1120px);
  margin-inline: auto;
  padding-left: var(--eh-pad, 1.25rem);
  padding-right: var(--eh-pad, 1.25rem);
  box-sizing: border-box;
}

/* Header */
.eh-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
[data-theme="dark"] .eh-header { background: rgba(11, 22, 18, 0.88); }
.eh-header.is-scrolled {
  border-bottom-color: var(--eh-border);
  box-shadow: 0 8px 30px rgba(3, 53, 40, 0.08);
}
.eh-prepared-bar {
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(90deg, #033528, #064E3B 55%, #0a5c42);
  color: #fff;
}
.eh-prepared-bar-inner {
  width: 100%;
  max-width: var(--eh-max);
  margin-inline: auto;
  padding: 0.4rem var(--eh-pad);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 1rem;
}
.eh-prepared-bar-label {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--eh-gold);
  flex-shrink: 0;
}
.eh-prepared-bar-orgs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.85rem;
  min-width: 0;
}
.eh-prepared-bar-org {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  min-width: 0;
}
.eh-prepared-bar-org img {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  padding: 1px;
  flex-shrink: 0;
}
.eh-prepared-bar-org span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eh-prepared-bar-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.28);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .eh-prepared-bar-sep { display: none; }
  .eh-prepared-bar-org span { font-size: 0.72rem; }
  :root { --eh-header-h: 128px; }
}
.eh-header-inner {
  width: 100%;
  max-width: var(--eh-max);
  margin-inline: auto;
  padding-left: var(--eh-pad);
  padding-right: var(--eh-pad);
  box-sizing: border-box;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.eh-brand { flex-shrink: 0; display: flex; align-items: center; }
.eh-brand--portal {
  gap: 0.7rem;
  min-width: 0;
  max-width: min(420px, 46vw);
}
.eh-brand-crests {
  display: flex;
  gap: 0.3rem;
  flex-shrink: 0;
}
.eh-brand-crests img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--eh-border, #e4ebe6);
  object-fit: contain;
}
.eh-brand-copy {
  display: grid;
  gap: 0.05rem;
  min-width: 0;
  line-height: 1.15;
}
.eh-brand-orgs {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--eh-muted, #5b6b64);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eh-brand-copy strong {
  font-size: clamp(0.82rem, 1.5vw, 0.98rem);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--eh-deep, #033528);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eh-brand-copy small {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--eh-muted, #5b6b64);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 640px) {
  .eh-brand-orgs { display: none; }
  .eh-brand--portal { max-width: 70vw; }
  .eh-brand-crests img { width: 36px; height: 36px; }
}
.eh-logo {
  width: auto; height: auto;
  max-height: 48px; max-width: 170px;
  object-fit: contain;
  background: #fff;
  border-radius: 10px;
  padding: 0.2rem 0.35rem;
}
.eh-logo--footer { max-height: 60px; max-width: 190px; margin-bottom: 0.75rem; }
.eh-brand-text { font-weight: 800; color: var(--eh-emerald); }

.eh-nav {
  display: none;
  align-items: center;
  gap: 0.05rem;
  flex: 1;
  justify-content: center;
}
.eh-nav-link {
  padding: 0.4rem 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--eh-muted);
  border-radius: 8px;
  white-space: nowrap;
}
.eh-nav-link:hover,
.eh-nav-link.is-active { color: var(--eh-emerald); background: rgba(11, 107, 75, 0.06); }

.eh-header-actions {
  display: none;
  align-items: center;
  gap: 0.55rem;
  margin-left: auto;
}
.eh-body a.eh-login-btn,
.eh-login-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 40px;
  padding: 0.5rem 1.05rem 0.5rem 0.85rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #064E3B 0%, #0B6B4B 55%, #0a5c42 100%);
  color: #ffffff;
  font-size: 0.84rem;
  font-weight: 750;
  letter-spacing: 0.02em;
  border: 1px solid rgba(212, 175, 55, 0.45);
  box-shadow: 0 6px 16px rgba(6, 78, 59, 0.22);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.eh-body a.eh-login-btn:hover,
.eh-login-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
  box-shadow: 0 10px 22px rgba(6, 78, 59, 0.28);
  color: #ffffff;
}
.eh-login-btn:focus-visible {
  outline: 2px solid var(--eh-gold, #D4AF37);
  outline-offset: 2px;
}
.eh-login-btn span,
.eh-login-btn-icon {
  color: #ffffff;
}
.eh-login-btn-icon {
  flex-shrink: 0;
  stroke: #ffffff;
  fill: none;
}
.eh-theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--eh-border);
  background: transparent;
  cursor: pointer;
  font-size: 1rem;
}
.eh-nav-toggle {
  margin-left: auto;
  width: 44px; height: 44px;
  border: 1px solid var(--eh-border);
  border-radius: 12px;
  background: transparent;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 10px;
  cursor: pointer;
}
.eh-nav-toggle span { display: block; height: 2px; background: var(--eh-ink); border-radius: 2px; }

@media (min-width: 1120px) {
  .eh-nav, .eh-header-actions { display: flex; }
  .eh-nav-toggle { display: none; }
}

.eh-nav-backdrop {
  position: fixed; inset: 0;
  background: rgba(3, 53, 40, 0.45);
  z-index: 90;
}
@media (max-width: 1119px) {
  .eh-nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 88vw);
    background: var(--eh-white);
    z-index: 95;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.25rem 2rem;
    gap: 0.35rem;
    transform: translateX(105%);
    transition: transform 0.28s ease;
    box-shadow: var(--eh-shadow);
    display: flex;
  }
  .eh-body.eh-nav-open .eh-nav { transform: translateX(0); }
  .eh-body.eh-nav-open .eh-header-actions {
    display: flex;
    position: fixed;
    bottom: 1.25rem;
    right: 1.25rem;
    z-index: 96;
    flex-wrap: wrap;
    max-width: min(300px, 80vw);
    justify-content: flex-end;
  }
  .eh-nav-link { padding: 0.85rem 0.9rem; font-size: 1rem; }
}

/* Hero — PSC dark */
.eh-hero--psc {
  position: relative;
  overflow: hidden;
  color: #f4faf7;
  background: linear-gradient(145deg, #021a12 0%, #064E3B 48%, #0a5c42 100%);
  padding: 2.75rem 0 3rem;
}
.eh-hero-atmosphere {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 45% at 80% 40%, rgba(212, 175, 55, 0.16), transparent 55%),
    radial-gradient(ellipse 40% 50% at 10% 80%, rgba(11, 107, 75, 0.35), transparent 50%);
  pointer-events: none;
}
.eh-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 980px) {
  .eh-hero--psc {
    min-height: calc(100dvh - var(--eh-header-h));
    display: flex;
    align-items: center;
    padding: 3.5rem 0 4rem;
  }
  .eh-hero-inner {
    grid-template-columns: 1fr 1.08fr;
    gap: 2rem;
    width: 100%;
    align-items: stretch;
  }
  .eh-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.eh-psc-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.55rem;
  padding: 0.4rem 0.95rem;
  border-radius: 999px;
  border: 1.5px solid var(--eh-gold);
  color: var(--eh-gold);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.08);
}
.eh-psc-badge img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  padding: 1px;
}
.eh-prepared-for {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: rgba(244, 250, 247, 0.82);
  line-height: 1.4;
}
.eh-prepared-block {
  margin: 0 0 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: rgba(0, 0, 0, 0.22);
  max-width: 28rem;
}
.eh-prepared-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 0.65rem;
}
.eh-prepared-orgs {
  display: grid;
  gap: 0.55rem;
}
.eh-prepared-org {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #fff;
}
.eh-prepared-org img {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  padding: 2px;
  flex-shrink: 0;
}

.eh-hero--psc h1 {
  font-family: var(--eh-serif);
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: 1.15;
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
  color: #fff;
}
.eh-hero--psc h1 em {
  font-style: normal;
  color: #3dcf95;
}
.eh-hero-lead {
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  color: rgba(244, 250, 247, 0.78);
  max-width: 36rem;
  margin: 0 0 1.6rem;
}
.eh-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}

.eh-trust-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(244, 250, 247, 0.85);
}
.eh-trust-row span { margin-right: 0.35rem; color: var(--eh-gold); }

/* Hero visual collage — sized to match text column */
.eh-hero-visual {
  position: relative;
  min-height: 380px;
  height: 100%;
  align-self: stretch;
}
.eh-hero-stage {
  position: relative;
  height: 100%;
  min-height: 380px;
}
@media (min-width: 980px) {
  .eh-hero-visual,
  .eh-hero-stage {
    min-height: 100%;
  }
}
.eh-hero-officer {
  position: absolute;
  inset: 0;
  width: 100%;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  background: #0a2f22;
  z-index: 1;
}
.eh-hero-officer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% center;
  display: block;
}
.eh-hero-officer::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 53, 40, 0.55) 0%, transparent 38%),
    linear-gradient(180deg, transparent 48%, rgba(3, 53, 40, 0.5) 100%);
  pointer-events: none;
}
.eh-hero-crest {
  position: absolute;
  left: 4%;
  top: 4%;
  width: min(150px, 28%);
  height: auto;
  filter: drop-shadow(0 14px 32px rgba(0, 0, 0, 0.4));
  animation: eh-float 7s ease-in-out infinite;
  z-index: 4;
}
.eh-hero-crest--psc {
  left: auto;
  right: 6%;
  top: 5%;
  width: min(92px, 18%);
  animation-delay: -2.5s;
  z-index: 5;
}
.eh-hero-dash {
  position: absolute;
  left: 3%;
  bottom: 6%;
  width: min(240px, 42%);
  background: rgba(255, 255, 255, 0.97);
  color: #123;
  border-radius: 16px;
  padding: 0.9rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  z-index: 3;
  animation: eh-float-alt 5.5s ease-in-out infinite;
}
.eh-hero-dash header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.72rem;
  margin-bottom: 0.4rem;
}
.eh-dash-stat {
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  color: var(--eh-muted);
}
.eh-dash-stat b {
  display: block;
  font-size: 1.4rem;
  color: var(--eh-deep);
  line-height: 1.1;
}
.eh-dash-label {
  margin: 0.4rem 0 0.2rem;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--eh-muted);
}
.eh-hero-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
  margin-bottom: 0.4rem;
}
.eh-hero-metrics div {
  background: #f3faf6;
  border-radius: 8px;
  padding: 0.3rem 0.35rem;
}
.eh-hero-metrics b {
  display: block;
  font-size: 0.78rem;
  color: var(--eh-deep);
  line-height: 1.1;
}
.eh-hero-metrics span {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--eh-muted);
}
.eh-mini-bars {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 34px;
  margin-bottom: 0.35rem;
}
.eh-mini-bars i {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--eh-gold), var(--eh-emerald));
  opacity: 0.85;
}
.eh-mini-bars i:nth-child(1) { height: 40%; }
.eh-mini-bars i:nth-child(2) { height: 65%; }
.eh-mini-bars i:nth-child(3) { height: 50%; }
.eh-mini-bars i:nth-child(4) { height: 85%; }
.eh-mini-bars i:nth-child(5) { height: 55%; }
.eh-mini-bars i:nth-child(6) { height: 72%; }
.eh-mini-map {
  height: 44px;
  border-radius: 8px;
  background:
    radial-gradient(circle at 45% 50%, var(--eh-gold) 0 3px, transparent 4px),
    linear-gradient(160deg, #0a5a41, #033528);
}
.eh-hero-phone {
  position: absolute;
  right: 3%;
  top: 5%;
  width: 100px;
  background: #0d1a15;
  border: 3px solid #1f2e28;
  border-radius: 18px;
  padding: 0.85rem 0.55rem 0.65rem;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.35);
  z-index: 5;
  color: #fff;
  animation: eh-float 6.5s ease-in-out infinite reverse;
}
.eh-phone-notch {
  width: 36px; height: 5px;
  border-radius: 4px;
  background: #2a3b34;
  margin: 0 auto 0.55rem;
}
.eh-hero-phone p {
  margin: 0 0 0.45rem;
  font-size: 0.62rem;
  font-weight: 700;
  text-align: center;
  color: #3dcf95;
}
.eh-phone-card {
  height: 18px;
  border-radius: 5px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 0.35rem;
}
.eh-phone-card--short { width: 70%; }
.eh-phone-btn {
  margin-top: 0.45rem;
  text-align: center;
  font-size: 0.58rem;
  font-weight: 800;
  padding: 0.35rem;
  border-radius: 999px;
  background: var(--eh-emerald);
}
@media (max-width: 979px) {
  .eh-hero-officer {
    position: relative;
    width: 100%;
    height: 340px;
    inset: auto;
    border-radius: 18px;
  }
  .eh-hero-visual,
  .eh-hero-stage { min-height: 0; height: auto; }
  .eh-hero-crest { left: 4%; top: 4%; }
  .eh-hero-dash { left: 3%; bottom: 5%; width: min(220px, 55%); }
}

@keyframes eh-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes eh-float-alt {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Sections */
.eh-section { padding: 4.25rem 0; }
.eh-section--gray { background: var(--eh-gray); }
.eh-section--dark {
  background: linear-gradient(160deg, var(--eh-deep-2), var(--eh-deep) 55%, #0a5a41);
  color: #f4faf7;
}
.eh-section-head {
  text-align: center;
  max-width: 42rem;
  margin: 0 auto 2.35rem;
}
.eh-section-head h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  margin: 0 0 0.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.eh-section-head p { margin: 0; color: var(--eh-muted); font-size: 1.02rem; }
.eh-section--dark .eh-section-head p { color: rgba(244, 250, 247, 0.72); }
.eh-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--eh-gold);
  margin-bottom: 0.65rem;
}

.eh-live {
  background: rgba(34, 197, 94, 0.15);
  color: var(--eh-lime);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.65rem;
}

/* Chairman — crest + title left, three cards right */
.eh-chairman {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}
@media (min-width: 900px) {
  .eh-chairman {
    grid-template-columns: 0.9fr 1.3fr;
    gap: 2rem;
  }
}
.eh-chairman-crest { text-align: center; }
@media (min-width: 900px) {
  .eh-chairman-crest { text-align: left; }
}
.eh-chairman-crest img {
  width: 120px;
  height: auto;
  margin: 0 auto 1rem;
  filter: drop-shadow(0 10px 24px rgba(3,53,40,0.15));
}
@media (min-width: 900px) {
  .eh-chairman-crest img { margin-left: 0; }
}
.eh-chairman-crest h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.45rem, 2.4vw, 1.9rem);
  margin: 0;
  line-height: 1.25;
}
.eh-chairman-cards {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .eh-chairman-cards { grid-template-columns: repeat(3, 1fr); }
}

.eh-stats--row {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) {
  .eh-stats--row { grid-template-columns: repeat(4, 1fr); }
}

.eh-card {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--eh-shadow-sm);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.eh-card:hover { transform: translateY(-3px); box-shadow: var(--eh-shadow); }
.eh-card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(11, 107, 75, 0.12), var(--eh-gold-soft));
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--eh-emerald);
}
.eh-card h3 { margin: 0 0 0.4rem; font-size: 1.02rem; }
.eh-card p { margin: 0; color: var(--eh-muted); font-size: 0.92rem; }
.eh-card-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--eh-emerald);
}
.eh-card-link:hover { color: var(--eh-gold); }

/* Dark split: workflow + impact */
.eh-dark-split {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 960px) {
  .eh-dark-split { grid-template-columns: 1.35fr 0.85fr; gap: 2rem; align-items: start; }
}
.eh-dark-split h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin: 0 0 1.25rem;
  color: #fff;
}
.eh-section--dark .eh-workflow-step {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.12);
  color: #fff;
}
.eh-stats--compact {
  grid-template-columns: 1fr 1fr;
}
.eh-stats--compact .eh-stat {
  text-align: left;
  padding: 1rem;
}

/* Dual: dashboards + map — stretch to shared height */
.eh-dual {
  display: grid;
  gap: 1.5rem;
  overflow: hidden;
}
.eh-dual > * {
  min-width: 0;
}
@media (min-width: 960px) {
  .eh-dual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
  }
  .eh-dual > div {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .eh-dual .eh-dash-gallery--2 {
    flex: 1 1 auto;
    grid-template-rows: repeat(2, minmax(0, 1fr));
  }
  .eh-dual .eh-map {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    min-height: 0;
    padding: 0.65rem 0.5rem 0.35rem;
  }
  .eh-dual .eh-map-apps {
    flex: 1 1 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 0.65rem;
    min-height: 0;
    align-items: stretch;
  }
  .eh-dual .eh-map img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
  }
  .eh-dual .eh-map-legend--inline {
    flex-shrink: 0;
  }
}
.eh-dual > div > h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin: 0 0 0.75rem;
  line-height: 1.25;
}
.eh-dash-gallery--2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  overflow: hidden;
}
.eh-dash-gallery--2 .eh-dash-shot {
  padding: 0;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 0;
  box-shadow: var(--eh-shadow-sm);
  overflow: hidden;
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
}
.eh-dash-shot--pro .eh-dash-chrome {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.4rem 0.55rem;
  background: linear-gradient(180deg, #f7faf8, #eef4f0);
  border-bottom: 1px solid var(--eh-gray-2);
}
[data-theme="dark"] .eh-dash-shot--pro .eh-dash-chrome {
  background: linear-gradient(180deg, #15241e, #101c17);
  border-bottom-color: rgba(255,255,255,0.08);
}
.eh-dash-dots {
  display: inline-flex;
  gap: 4px;
}
.eh-dash-dots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(11, 107, 75, 0.28);
}
.eh-dash-dots i:nth-child(1) { background: #e74c3c; }
.eh-dash-dots i:nth-child(2) { background: #f1c40f; }
.eh-dash-dots i:nth-child(3) { background: #27ae60; }
.eh-dash-win-title {
  flex: 1;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--eh-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.eh-live--sm {
  font-size: 0.55rem;
  padding: 0.12rem 0.35rem;
}
.eh-dash-gallery--2 .eh-dash-body,
.eh-ui-screen {
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  padding: 0.55rem;
  border: 0;
  border-radius: 0;
  background: linear-gradient(165deg, #fbfdfc 0%, #f0f6f3 100%);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
[data-theme="dark"] .eh-ui-screen {
  background: linear-gradient(165deg, #121f1a, #0d1713);
}
.eh-ui-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem;
}
.eh-ui-brand {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  min-width: 0;
}
.eh-ui-crest {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  background:
    radial-gradient(circle at 50% 40%, #D4AF37 0 28%, transparent 30%),
    linear-gradient(145deg, #0B6B4B, #033528);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.35);
}
.eh-ui-brand strong {
  display: block;
  font-size: 0.62rem;
  line-height: 1.15;
  color: var(--eh-deep);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
[data-theme="dark"] .eh-ui-brand strong { color: #eef5f1; }
.eh-ui-brand small {
  display: block;
  font-size: 0.52rem;
  color: var(--eh-muted);
  line-height: 1.2;
}
.eh-ui-period {
  font-size: 0.52rem;
  font-weight: 700;
  color: var(--eh-emerald);
  background: rgba(11, 107, 75, 0.1);
  border-radius: 999px;
  padding: 0.15rem 0.4rem;
  flex-shrink: 0;
}
.eh-ui-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.3rem;
}
.eh-ui-kpi {
  min-width: 0;
  text-align: center;
  padding: 0.35rem 0.2rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11, 107, 75, 0.12);
  box-shadow: 0 2px 8px rgba(3, 53, 40, 0.04);
}
[data-theme="dark"] .eh-ui-kpi {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
}
.eh-ui-kpi b {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--eh-emerald);
  line-height: 1.1;
}
.eh-dash-shot--promo .eh-ui-kpi b,
.eh-dash-shot--chairman .eh-ui-kpi:first-child b { color: #b8962e; }
.eh-ui-kpi span {
  display: block;
  font-size: 0.48rem;
  font-weight: 600;
  color: var(--eh-muted);
  margin-top: 0.1rem;
  line-height: 1.15;
  overflow-wrap: anywhere;
}
.eh-ui-main {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 0.4rem;
  min-height: 0;
  flex: 1;
}
.eh-ui-chart {
  min-width: 0;
  min-height: 58px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11, 107, 75, 0.1);
  padding: 0.35rem;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}
[data-theme="dark"] .eh-ui-chart {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.eh-ui-chart svg {
  width: 100%;
  height: 100%;
  min-height: 52px;
}
.eh-ui-zone-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  width: 100%;
  align-content: center;
}
.eh-ui-zone-grid i {
  display: block;
  aspect-ratio: 1.4;
  border-radius: 4px;
  background: rgba(11, 107, 75, 0.18);
}
.eh-ui-zone-grid i.is-hot { background: rgba(11, 107, 75, 0.55); }
.eh-ui-zone-grid i.is-warn { background: rgba(212, 175, 55, 0.7); }
.eh-ui-funnel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 100%;
}
.eh-ui-funnel i {
  display: block;
  height: 7px;
  width: var(--w, 50%);
  margin-inline: auto;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--eh-emerald), #3dcf95);
}
.eh-ui-vbars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  width: 100%;
  height: 100%;
  min-height: 52px;
  padding-top: 0.2rem;
}
.eh-ui-vbars i {
  flex: 1;
  height: var(--h, 50%);
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, #D4AF37, var(--eh-emerald));
  opacity: 0.9;
}
.eh-ui-list {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0.35rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(11, 107, 75, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.28rem;
  min-width: 0;
}
[data-theme="dark"] .eh-ui-list {
  background: rgba(255,255,255,0.03);
  border-color: rgba(255,255,255,0.08);
}
.eh-ui-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.52rem;
  line-height: 1.2;
}
.eh-ui-list span {
  color: var(--eh-muted);
  font-weight: 600;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eh-ui-list strong {
  color: var(--eh-deep);
  font-weight: 800;
  flex-shrink: 0;
}
[data-theme="dark"] .eh-ui-list strong { color: #eef5f1; }
.eh-dash-shot--igp .eh-ui-list strong { color: #27ae60; }
.eh-dash-shot--recruit .eh-ui-list strong { color: var(--eh-emerald); }
.eh-dash-shot--promo .eh-ui-list strong { color: #b8962e; }
.eh-dash-gallery--2 .eh-dash-shot h3 {
  margin: 0.45rem 0.55rem 0.05rem;
  font-size: 0.75rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.eh-dash-gallery--2 .eh-dash-shot p {
  margin: 0 0.55rem 0.55rem;
  font-size: 0.66rem;
  line-height: 1.25;
  color: var(--eh-muted);
}
.eh-map-legend--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.75rem;
  margin-top: 0.65rem;
}
.eh-map-legend--inline span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--eh-muted);
}
.eh-map-legend--inline .eh-map-dot {
  width: 8px;
  height: 8px;
}

.eh-map-apps {
  display: grid;
  gap: 0.75rem;
  min-width: 0;
}
@media (min-width: 700px) {
  .eh-map-apps {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: stretch;
  }
}
.eh-state-apps {
  min-width: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  border: 1px solid var(--eh-border);
  background: var(--eh-white);
  box-shadow: var(--eh-shadow-sm);
  overflow: hidden;
}
.eh-state-apps-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.7rem 0.75rem;
  background: linear-gradient(120deg, var(--eh-deep-2), var(--eh-emerald));
  color: #fff;
}
.eh-state-apps-head strong {
  display: block;
  font-size: 0.78rem;
  line-height: 1.2;
}
.eh-state-apps-head span:not(.eh-live) {
  display: block;
  font-size: 0.62rem;
  opacity: 0.8;
  margin-top: 0.15rem;
}
.eh-state-apps-list {
  list-style: none;
  margin: 0;
  padding: 0.45rem 0.55rem;
  overflow-y: auto;
  max-height: 280px;
  display: grid;
  gap: 0.35rem;
  flex: 1;
}
@media (min-width: 960px) {
  .eh-state-apps-list { max-height: none; }
}
.eh-state-apps-list li {
  min-width: 0;
}
.eh-state-apps-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.4rem;
  margin-bottom: 0.15rem;
  font-size: 0.68rem;
}
.eh-state-apps-meta span {
  font-weight: 600;
  color: var(--eh-ink);
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eh-state-apps-meta strong {
  color: var(--eh-emerald);
  font-weight: 800;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}
.eh-state-apps-bar {
  display: block;
  height: 5px;
  width: var(--w, 40%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--eh-emerald), var(--eh-gold));
}
.eh-state-apps-note {
  margin: 0;
  padding: 0.45rem 0.7rem 0.55rem;
  font-size: 0.58rem;
  color: var(--eh-muted);
  border-top: 1px solid var(--eh-gray-2);
  line-height: 1.3;
}

.eh-exec-panel-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.55rem;
}
.eh-exec-panel-head .eh-dash-label { margin: 0; }
.eh-exec-panel-head strong {
  font-size: 0.95rem;
  color: var(--eh-emerald);
  font-variant-numeric: tabular-nums;
}
.eh-exec-state-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.eh-exec-state-list li {
  display: grid;
  grid-template-columns: 4.5rem 1fr 3.2rem;
  gap: 0.4rem;
  align-items: center;
  font-size: 0.72rem;
}
.eh-exec-state-list span {
  font-weight: 600;
  color: var(--eh-muted);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.eh-exec-state-list i {
  display: block;
  height: 7px;
  width: var(--w, 50%);
  border-radius: 4px;
  background: linear-gradient(90deg, var(--eh-emerald), var(--eh-gold));
}
.eh-exec-state-list strong {
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--eh-deep);
  font-size: 0.7rem;
}
[data-theme="dark"] .eh-exec-state-list strong { color: #eef5f1; }
.eh-exec-state-more {
  margin: 0.55rem 0 0;
  font-size: 0.68rem;
  color: var(--eh-muted);
  font-weight: 600;
}

/* Bottom trio: future + PPP + CTA card — compact, no overflow */
.eh-bottom-trio {
  display: grid;
  gap: 1.25rem;
  overflow: hidden;
}
.eh-bottom-trio > * {
  min-width: 0;
}
@media (min-width: 1000px) {
  .eh-bottom-trio { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
}
.eh-bottom-trio > div > h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin: 0 0 0.55rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.eh-bottom-trio .eh-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}
.eh-muted { color: var(--eh-muted); margin: 0 0 0.75rem; font-size: 0.82rem; line-height: 1.4; }
.eh-capability-grid--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem;
  overflow: hidden;
}
.eh-capability-grid--compact .eh-capability {
  padding: 0.55rem 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  overflow-wrap: anywhere;
  min-width: 0;
}
.eh-ppp-cols--stack {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.45rem;
  overflow: hidden;
}
.eh-ppp-cols--stack.eh-ppp-cols {
  grid-template-columns: minmax(0, 1fr);
}
.eh-ppp-cols--stack .eh-ppp-col {
  padding: 0.55rem 0.7rem;
  text-align: left;
  border-radius: 10px;
  min-width: 0;
  box-shadow: none;
}
.eh-ppp-cols--stack .eh-ppp-col h3 {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
}
.eh-ppp-cols--stack .eh-ppp-col ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem 0.55rem;
}
.eh-ppp-cols--stack .eh-ppp-col li {
  border: 0;
  padding: 0;
  font-size: 0.72rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}
.eh-final-card {
  background: linear-gradient(145deg, var(--eh-deep-2), var(--eh-emerald));
  color: #fff;
  border-radius: var(--eh-radius);
  padding: 1.25rem 1.1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--eh-shadow);
  min-width: 0;
  overflow: hidden;
}
.eh-final-card h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  margin: 0 0 1.1rem;
  line-height: 1.3;
  color: #fff;
}
.eh-final-card .eh-hero-cta { margin: 0; flex-wrap: wrap; }

/* Premium modules — compact */
.eh-module-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
.eh-module-grid--compact {
  gap: 0.65rem;
  overflow: hidden;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 860px) {
  .eh-module-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1180px) {
  .eh-module-grid--compact { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (min-width: 700px) {
  .eh-module-grid:not(.eh-module-grid--compact) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .eh-module-grid:not(.eh-module-grid--compact) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.eh-premium-card {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  padding: 1.4rem 1.25rem;
  box-shadow: var(--eh-shadow-sm);
  transition: transform 0.22s ease, border-color 0.22s ease;
  min-width: 0;
}
.eh-premium-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
}
.eh-premium-card h3 { margin: 0 0 0.75rem; font-size: 1.08rem; }
.eh-premium-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.eh-premium-card li {
  position: relative;
  padding: 0.28rem 0 0.28rem 1.1rem;
  font-size: 0.9rem;
  color: var(--eh-muted);
}
.eh-premium-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--eh-gold);
}
.eh-premium-card--compact {
  padding: 0.75rem 0.8rem 0.7rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  box-shadow: none;
}
.eh-premium-card--compact:hover { transform: translateY(-2px); }
.eh-premium-card-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}
.eh-premium-card--compact .eh-card-icon {
  width: 1.85rem;
  height: 1.85rem;
  font-size: 0.85rem;
  margin: 0;
  border-radius: 8px;
  flex-shrink: 0;
}
.eh-premium-card--compact h3 {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}
.eh-premium-card--compact ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.28rem;
  flex: 1;
}
.eh-premium-card--compact li {
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
  background: rgba(11, 107, 75, 0.07);
  border: 1px solid rgba(11, 107, 75, 0.1);
  font-size: 0.62rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--eh-muted);
}
.eh-premium-card--compact li::before { display: none; }
.eh-premium-card--compact .eh-card-link {
  margin-top: auto;
  font-size: 0.72rem;
}
#modules .eh-section-head {
  margin-bottom: 1rem;
}
#modules .eh-section-head h2 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  margin-bottom: 0;
}

/* Workflow — compact, no horizontal overflow */
.eh-workflow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  padding: 0;
  overflow: hidden;
}
@media (min-width: 640px) {
  .eh-workflow { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
.eh-workflow-step {
  text-align: center;
  padding: 0.65rem 0.4rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  position: relative;
  min-width: 0;
}
.eh-workflow-step::after { display: none; }
.eh-workflow-num {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--eh-deep-2);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  margin-bottom: 0.3rem;
  border: 1px solid rgba(212, 175, 55, 0.45);
}
.eh-workflow-step.is-final {
  background: linear-gradient(145deg, #e8c96a, var(--eh-gold));
  border-color: transparent;
  color: var(--eh-deep-2);
}
.eh-workflow-step.is-final .eh-workflow-num {
  background: var(--eh-deep);
  color: #fff;
  border-color: transparent;
}
.eh-workflow-step strong {
  display: block;
  font-size: 0.72rem;
  line-height: 1.25;
  font-weight: 700;
  word-wrap: break-word;
  overflow-wrap: anywhere;
}

/* Stats */
.eh-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 800px) {
  .eh-stats { grid-template-columns: repeat(4, 1fr); }
}
.eh-stat {
  text-align: center;
  padding: 1.4rem 1rem;
  border-radius: var(--eh-radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.eh-stat strong {
  display: block;
  font-family: var(--eh-serif);
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: var(--eh-gold);
  margin-bottom: 0.25rem;
}
.eh-stat span { font-size: 0.88rem; opacity: 0.8; }

/* Dashboard gallery */
.eh-dash-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .eh-dash-gallery:not(.eh-dash-gallery--2) { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .eh-dash-gallery:not(.eh-dash-gallery--2) { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.eh-dash-shot {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  padding: 0.85rem;
  box-shadow: var(--eh-shadow-sm);
  min-width: 0;
}
.eh-dash-chrome {
  display: flex; gap: 5px; margin-bottom: 0.55rem;
}
.eh-dash-chrome i {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(11, 107, 75, 0.25);
}
.eh-dash-body {
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fbf9, #eef5f1);
  border: 1px solid var(--eh-gray-2);
  padding: 0.75rem;
  min-height: 110px;
  margin-bottom: 0.75rem;
  overflow: hidden;
}
[data-theme="dark"] .eh-dash-body {
  background: linear-gradient(180deg, #15241e, #101c17);
}
.eh-glass-line {
  height: 8px;
  border-radius: 4px;
  background: rgba(11, 107, 75, 0.15);
  margin-bottom: 0.45rem;
}
.eh-glass-line--gold { background: rgba(212, 175, 55, 0.35); width: 62%; }
.eh-glass-line--short { width: 40%; }
.eh-dash-shot h3 { margin: 0 0 0.25rem; font-size: 0.92rem; }
.eh-dash-shot p { margin: 0; font-size: 0.78rem; color: var(--eh-muted); }

/* Map */
.eh-map-wrap {
  display: grid;
  gap: 1.5rem;
  align-items: center;
}
@media (min-width: 860px) {
  .eh-map-wrap { grid-template-columns: 1.25fr 0.75fr; }
}
.eh-map {
  position: relative;
  margin: 0;
  border-radius: var(--eh-radius);
  background:
    radial-gradient(ellipse 70% 60% at 50% 40%, rgba(212, 175, 55, 0.12), transparent 60%),
    linear-gradient(165deg, #0a5a41, var(--eh-deep-2));
  overflow: hidden;
  box-shadow: var(--eh-shadow);
  padding: 1rem 0.75rem 0.5rem;
}
.eh-map img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
}
.eh-map-legend { display: grid; gap: 0.75rem; }
.eh-map-legend article {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius-sm);
  padding: 0.9rem 1rem;
}
.eh-map-legend strong {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}
.eh-map-legend span { font-size: 0.85rem; color: var(--eh-muted); }
.eh-map-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}
.eh-map-dot--fhq { background: var(--eh-gold); box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25); }
.eh-map-dot--zone { background: #27AE60; }
.eh-map-dot--state { background: #3498DB; }
.eh-map-dot--train { background: #F1C40F; }
.eh-map-dot--centre { background: #E74C3C; }

.eh-card-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) {
  .eh-card-grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 960px) {
  .eh-card-grid--6 { grid-template-columns: repeat(3, 1fr); }
}

/* Capability */
.eh-capability-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 800px) {
  .eh-capability-grid:not(.eh-capability-grid--compact) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .eh-capability-grid:not(.eh-capability-grid--compact) { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.eh-capability {
  text-align: center;
  padding: 1.1rem 0.75rem;
  border-radius: var(--eh-radius-sm);
  background: var(--eh-white);
  border: 1px dashed rgba(11, 107, 75, 0.28);
  font-weight: 700;
  font-size: 0.88rem;
  min-width: 0;
  overflow-wrap: anywhere;
}
.eh-capability-note {
  text-align: center;
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--eh-muted);
}

/* PPP */
.eh-ppp-cols {
  display: grid;
  gap: 1rem;
}
@media (min-width: 800px) {
  .eh-ppp-cols:not(.eh-ppp-cols--stack) { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.eh-ppp-col {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  padding: 1.5rem 1.25rem;
  box-shadow: var(--eh-shadow-sm);
  text-align: center;
  min-width: 0;
}
.eh-ppp-col h3 {
  margin: 0 0 1rem;
  color: var(--eh-emerald);
  font-size: 1.15rem;
}
.eh-ppp-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.eh-ppp-col li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--eh-gray-2);
  font-weight: 600;
  color: var(--eh-muted);
}
.eh-ppp-col li:last-child { border-bottom: 0; }

/* Final CTA */
.eh-final-cta--psc {
  padding: 4rem 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(212, 175, 55, 0.18), transparent 55%),
    linear-gradient(120deg, var(--eh-deep-2), var(--eh-emerald));
  color: #fff;
  text-align: center;
}
.eh-final-brand {
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--eh-gold);
}
.eh-final-cta--psc h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  margin: 0 auto 0.75rem;
  max-width: 36rem;
  line-height: 1.25;
}
.eh-final-cta--psc p {
  margin: 0 auto 1.5rem;
  max-width: 32rem;
  opacity: 0.85;
}
.eh-final-cta--psc .eh-hero-cta { justify-content: center; margin-bottom: 0; }

/* Footer */
.eh-footer {
  background: #071410;
  color: rgba(244, 250, 247, 0.88);
  padding-top: 3.5rem;
}
.eh-footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2.5rem;
}
.eh-footer-grid--psc {
  grid-template-columns: 1fr;
}
@media (min-width: 700px) {
  .eh-footer-grid--psc { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1050px) {
  .eh-footer-grid--psc { grid-template-columns: 1.4fr repeat(3, 1fr) 1.1fr; }
}
.eh-footer h4 {
  margin: 0 0 0.85rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--eh-gold);
}
.eh-footer ul { list-style: none; margin: 0; padding: 0; }
.eh-footer li { margin-bottom: 0.45rem; }
.eh-footer a { color: rgba(244, 250, 247, 0.75); font-size: 0.9rem; }
.eh-footer a:hover { color: #fff; }
.eh-footer-brand p {
  font-size: 0.9rem;
  color: rgba(244, 250, 247, 0.65);
  max-width: 22rem;
}
.eh-social { display: flex; gap: 0.5rem; margin-top: 1rem; }
.eh-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  font-weight: 700;
}
.eh-footer-contact {
  margin-top: 1rem;
  font-size: 0.85rem;
  line-height: 1.7;
}
.eh-footer-endorse {
  text-align: center;
}
.eh-footer-crests {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.eh-footer-crests img {
  width: 64px; height: 64px;
  background: #fff;
  border-radius: 50%;
  padding: 0.25rem;
}
.eh-footer-endorse p {
  font-size: 0.82rem;
  color: rgba(244, 250, 247, 0.7);
  margin: 0;
  line-height: 1.45;
}
.eh-footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem 0;
  font-size: 0.78rem;
  color: rgba(244, 250, 247, 0.55);
}
.eh-footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
}
.eh-footer-demo-note {
  margin: 0.45rem 0 0;
  text-align: center;
  font-size: 0.72rem;
  color: rgba(244, 250, 247, 0.58);
  letter-spacing: 0.02em;
}

/* Portal strip */
.eh-portal-strip {
  background: #fff;
  border-bottom: 1px solid var(--eh-border);
  padding: 0.85rem 0;
}
.eh-portal-strip-inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}
@media (min-width: 700px) {
  .eh-portal-strip-inner { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .eh-portal-strip-inner { grid-template-columns: repeat(6, 1fr); }
}
.eh-portal-strip a {
  display: block;
  padding: 0.7rem 0.85rem;
  border-radius: var(--eh-radius-sm);
  border: 1px solid var(--eh-border);
  background: var(--eh-gray);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.eh-portal-strip a:hover {
  border-color: var(--eh-emerald);
  transform: translateY(-1px);
}
.eh-portal-strip strong {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}
.eh-portal-strip span {
  font-size: 0.72rem;
  color: var(--eh-muted);
  font-weight: 600;
}

/* Full recruitment lifecycle */
.eh-lifecycle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
}
@media (min-width: 700px) {
  .eh-lifecycle { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1000px) {
  .eh-lifecycle { grid-template-columns: repeat(4, 1fr); }
}
.eh-lifecycle-step {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius-sm);
  padding: 0.95rem 0.85rem;
  box-shadow: var(--eh-shadow-sm);
  position: relative;
}
.eh-lifecycle-num {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--eh-gold);
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}
.eh-lifecycle-step strong {
  display: block;
  font-size: 0.88rem;
  line-height: 1.3;
}
.eh-lifecycle-step.is-final {
  background: linear-gradient(145deg, #e8c96a, var(--eh-gold));
  border-color: transparent;
  color: var(--eh-deep-2);
}
.eh-lifecycle-step.is-final .eh-lifecycle-num { color: var(--eh-deep); }

/* Chairman executive board */
.eh-exec-board { display: grid; gap: 1.25rem; }
.eh-exec-kpis {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 800px) {
  .eh-exec-kpis { grid-template-columns: repeat(4, 1fr); }
}
.eh-exec-kpis article {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--eh-radius-sm);
  padding: 1.1rem 1rem;
}
.eh-exec-kpis strong {
  display: block;
  font-family: var(--eh-serif);
  font-size: 1.6rem;
  color: var(--eh-gold);
  margin-bottom: 0.2rem;
}
.eh-exec-kpis span { font-size: 0.85rem; opacity: 0.8; }
.eh-exec-panels {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 800px) {
  .eh-exec-panels { grid-template-columns: repeat(3, 1fr); }
}
.eh-exec-panels article {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--eh-radius);
  padding: 1.2rem 1.1rem;
}
.eh-exec-panels h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
  color: #fff;
}
.eh-exec-panels ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.eh-exec-panels li {
  position: relative;
  padding: 0.3rem 0 0.3rem 1rem;
  font-size: 0.88rem;
  color: rgba(244,250,247,0.78);
}
.eh-exec-panels li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.7rem;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--eh-gold);
}

/* Recruitment metrics */
.eh-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 800px) {
  .eh-metric-grid { grid-template-columns: repeat(4, 1fr); }
}
.eh-metric-card {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius-sm);
  padding: 1.1rem 1rem;
  box-shadow: var(--eh-shadow-sm);
}
.eh-metric-card span {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--eh-muted);
  margin-bottom: 0.35rem;
}
.eh-metric-card strong {
  font-size: 1.25rem;
  color: var(--eh-deep);
}

.eh-detail-grid {
  display: grid;
  gap: 0.85rem;
}
@media (min-width: 700px) {
  .eh-detail-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .eh-detail-grid { grid-template-columns: repeat(3, 1fr); }
}
.eh-detail-card {
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius);
  padding: 1.25rem 1.15rem;
  box-shadow: var(--eh-shadow-sm);
}
.eh-detail-card h3 { margin: 0 0 0.45rem; font-size: 1.02rem; }
.eh-detail-card p { margin: 0; color: var(--eh-muted); font-size: 0.92rem; }

.eh-check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.eh-check-list li {
  position: relative;
  padding: 0.45rem 0 0.45rem 1.35rem;
  border-bottom: 1px solid var(--eh-gray-2);
  font-weight: 600;
  color: var(--eh-muted);
  font-size: 0.92rem;
}
.eh-check-list li:last-child { border-bottom: 0; }
.eh-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--eh-lime);
  font-weight: 800;
}
.eh-check-list--light li {
  border-bottom-color: rgba(255,255,255,0.1);
  color: rgba(244,250,247,0.82);
}
.eh-check-list--light li::before { color: var(--eh-gold); }

.eh-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}
.eh-chip {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--eh-gray);
  border: 1px solid var(--eh-border);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--eh-deep);
}

.eh-demo-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}
@media (min-width: 700px) {
  .eh-demo-flow { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1000px) {
  .eh-demo-flow { grid-template-columns: repeat(3, 1fr); }
}
.eh-demo-flow li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-radius: var(--eh-radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--eh-shadow-sm);
}
.eh-demo-flow span {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--eh-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 800;
}

.eh-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.eh-reveal.is-visible { opacity: 1; transform: none; }

/* —— Proposal presentation blocks —— */
.eh-stats-banner {
  background: linear-gradient(90deg, var(--eh-deep-2), var(--eh-emerald));
  color: #fff;
  padding: 1.15rem 0 1.35rem;
  border-bottom: 2px solid var(--eh-gold);
}
.eh-demo-note {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(244, 250, 247, 0.72);
}
.eh-stat-star {
  color: var(--eh-gold);
  margin-left: 0.1rem;
}
.eh-stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 0.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .eh-stats-banner-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1000px) {
  .eh-stats-banner-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
}
.eh-stats-banner-grid strong {
  display: block;
  font-family: var(--eh-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  color: var(--eh-gold);
  line-height: 1.15;
  margin-bottom: 0.2rem;
}
.eh-stats-banner-grid span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  opacity: 0.88;
  line-height: 1.3;
  padding: 0 0.2rem;
}

.eh-vision {
  background: var(--eh-white);
  padding: 2.25rem 0;
  border-bottom: 1px solid var(--eh-border);
}
.eh-vision-inner {
  text-align: center;
  max-width: 46rem;
  margin-inline: auto;
}
.eh-vision .eh-eyebrow {
  color: var(--eh-gold);
}
.eh-vision blockquote {
  margin: 0.5rem 0 0;
  font-family: var(--eh-serif);
  font-size: clamp(1.2rem, 2.4vw, 1.65rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--eh-deep);
  border: 0;
  padding: 0;
}

.eh-outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  overflow: hidden;
}
@media (min-width: 800px) {
  .eh-outcome-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.eh-outcome-card {
  min-width: 0;
  padding: 1.25rem 1.05rem;
  border-radius: 14px;
  background: linear-gradient(165deg, #064E3B, #033528);
  color: #fff;
  border: 1px solid rgba(212, 175, 55, 0.28);
  box-shadow: var(--eh-shadow-sm);
}
.eh-outcome-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  color: var(--eh-gold);
}
.eh-outcome-card p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: rgba(244, 250, 247, 0.82);
}
.eh-future-sub {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--eh-emerald);
  line-height: 1.35;
}

.eh-challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  overflow: hidden;
}
@media (min-width: 700px) {
  .eh-challenge-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.eh-imperative-split {
  display: grid;
  gap: 1.25rem;
  align-items: stretch;
  overflow: hidden;
}
.eh-imperative-split > * { min-width: 0; }
@media (min-width: 960px) {
  .eh-imperative-split {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 1.5rem;
  }
}
.eh-imperative-challenges {
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.eh-imperative-challenges .eh-challenge-grid {
  flex: 1;
  grid-template-rows: repeat(3, minmax(0, 1fr));
}
.eh-challenge-card {
  min-width: 0;
  min-height: 0;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--eh-border);
  background: var(--eh-white);
  box-shadow: var(--eh-shadow-sm);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}
.eh-challenge-ico {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  margin: 0;
  border-radius: 9px;
  background: rgba(185, 28, 28, 0.08);
  color: #9f1239;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.eh-challenge-card h3 {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.3;
  font-weight: 700;
  color: var(--eh-ink);
  overflow-wrap: anywhere;
}
.eh-solution-bridge {
  position: relative;
  text-align: left;
  max-width: none;
  margin: 0;
  padding: 0;
  border-radius: var(--eh-radius);
  background:
    radial-gradient(ellipse 70% 60% at 100% 0%, rgba(212, 175, 55, 0.18), transparent 55%),
    linear-gradient(160deg, #064E3B 0%, #033528 55%, #02261c 100%);
  color: #fff;
  box-shadow: var(--eh-shadow);
  overflow: hidden;
  display: flex;
  min-height: 100%;
}
.eh-solution-bridge::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1rem;
  bottom: 1.1rem;
  width: 3px;
  border-radius: 0 3px 3px 0;
  background: linear-gradient(180deg, var(--eh-gold), transparent);
}
.eh-solution-bridge-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 1.35rem 1.5rem 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.eh-solution-bridge .eh-eyebrow {
  color: var(--eh-gold);
  margin-bottom: 0.35rem;
}
.eh-solution-bridge h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.7rem);
  margin: 0 0 0.7rem;
  color: #fff;
  line-height: 1.2;
}
.eh-solution-bridge p {
  margin: 0 0 1rem;
  color: rgba(244, 250, 247, 0.84);
  font-size: 0.9rem;
  line-height: 1.55;
}
.eh-solution-points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}
.eh-solution-points li {
  position: relative;
  padding: 0.45rem 0.65rem 0.45rem 1.55rem;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(244, 250, 247, 0.92);
}
.eh-solution-points li::before {
  content: "✓";
  position: absolute;
  left: 0.55rem;
  top: 0.45rem;
  color: var(--eh-gold);
  font-weight: 800;
  font-size: 0.75rem;
}
.eh-solution-bridge .eh-btn--primary {
  background: var(--eh-gold);
  color: var(--eh-deep-2);
  border-color: transparent;
  align-self: flex-start;
  margin-top: auto;
}
.eh-solution-bridge .eh-btn--primary:hover {
  filter: brightness(1.05);
}

.eh-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  overflow: hidden;
}
@media (min-width: 800px) {
  .eh-why-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.eh-why-card {
  min-width: 0;
  padding: 1.15rem 1rem;
  border-radius: 12px;
  background: var(--eh-white);
  border: 1px solid var(--eh-border);
  border-top: 3px solid var(--eh-emerald);
  box-shadow: var(--eh-shadow-sm);
}
.eh-why-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  color: var(--eh-emerald);
}
.eh-why-card p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--eh-muted);
  line-height: 1.45;
}

.eh-exec-board {
  border-radius: var(--eh-radius);
  border: 1px solid var(--eh-border);
  background: var(--eh-white);
  box-shadow: var(--eh-shadow);
  overflow: hidden;
}
.eh-exec-board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: linear-gradient(120deg, var(--eh-deep-2), var(--eh-emerald));
  color: #fff;
}
.eh-exec-board-top strong {
  display: block;
  font-size: 1.05rem;
}
.eh-exec-board-top span:not(.eh-live) {
  display: block;
  font-size: 0.75rem;
  opacity: 0.78;
  margin-top: 0.15rem;
}
.eh-exec-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  padding: 1rem;
  overflow: hidden;
}
@media (min-width: 700px) {
  .eh-exec-kpis { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
.eh-exec-kpi {
  min-width: 0;
  padding: 0.85rem 0.7rem;
  border-radius: 10px;
  background: #f6faf8;
  border: 1px solid var(--eh-gray-2);
  text-align: center;
}
[data-theme="dark"] .eh-exec-kpi {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
.eh-exec-kpi strong {
  display: block;
  font-family: var(--eh-serif);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--eh-emerald);
  line-height: 1.15;
  margin-bottom: 0.25rem;
  overflow-wrap: anywhere;
}
.eh-exec-kpi span {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--eh-muted);
  line-height: 1.25;
}
.eh-exec-panels {
  display: grid;
  gap: 0.85rem;
  padding: 0 1rem 1.15rem;
}
@media (min-width: 800px) {
  .eh-exec-panels { grid-template-columns: 1.2fr 0.8fr; }
}
.eh-exec-panel {
  padding: 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--eh-gray-2);
  background: linear-gradient(180deg, #f8fbf9, #eef5f1);
  min-width: 0;
}
[data-theme="dark"] .eh-exec-panel {
  background: linear-gradient(180deg, #15241e, #101c17);
  border-color: rgba(255, 255, 255, 0.08);
}
.eh-mini-bars--tall { height: 72px; }
.eh-pipeline-bars {
  display: grid;
  gap: 0.45rem;
}
.eh-pipeline-bars > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.5rem;
  align-items: center;
}
.eh-pipeline-bars span {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--eh-muted);
}
.eh-pipeline-bars i {
  display: block;
  height: 8px;
  border-radius: 4px;
  width: var(--w, 50%);
  background: linear-gradient(90deg, var(--eh-emerald), var(--eh-gold));
}
.eh-future-card h2 {
  font-family: var(--eh-serif);
  font-size: clamp(1.05rem, 1.8vw, 1.3rem);
  margin: 0 0 0.55rem;
  line-height: 1.25;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .eh-hero-crest, .eh-hero-dash, .eh-hero-phone { animation: none; }
  .eh-reveal { opacity: 1; transform: none; transition: none; }
}

