
/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --navy:        #0B1F3A;
  --navy-deep:   #071527;
  --navy-mid:    #132D52;
  --navy-light:  #1A3A6B;
  --gold:        #C8973A;
  --gold-light:  #E8B85A;
  --gold-pale:   #F5E6C8;
  --white:       #FFFFFF;
  --grey-50:     #F8F9FB;
  --grey-100:    #EEF0F4;
  --grey-200:    #D8DCE6;
  --grey-400:    #8896B0;
  --grey-600:    #4B5878;
  --grey-800:    #1E2B42;
  --ff-display:  'Playfair Display', Georgia, serif;
  --ff-body:     'Inter', system-ui, sans-serif;
  --ff-mono:     'JetBrains Mono', monospace;
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --r-sm:        4px;
  --r-md:        8px;
  --r-lg:        16px;
}

/* ─── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--ff-body);
  color: var(--grey-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────────────── */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--ff-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: block;
}
.section-title {
  font-family: var(--ff-display);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.18;
}
.section-title--lg { font-size: clamp(2rem, 4vw, 3rem); }
.section-title--md { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.body-lead {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-600);
  max-width: 640px;
}
.gold-rule {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 24px 0;
  border-radius: 2px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--r-sm);
  font-family: var(--ff-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .03em;
  cursor: pointer;
  border: none;
  transition: all .22s var(--ease-out);
}
.btn--gold {
  background: var(--gold);
  color: var(--navy-deep);
}
.btn--gold:hover { background: var(--gold-light); transform: translateY(-2px); }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,.4);
}
.btn--outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn--outline-navy {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy-light);
}
.btn--outline-navy:hover { border-color: var(--gold); color: var(--gold); }

/* fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s var(--ease-out), transform .6s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── NAV ────────────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(11, 31, 58, .96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, .15);
  transition: box-shadow .3s;
}
nav.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,.3); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.nav-logo-text span { color: var(--gold); }
.nav-logo-sub {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .18em;
  color: var(--grey-400);
  text-transform: uppercase;
  margin-left: 8px;
  align-self: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .04em;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  text-transform: uppercase;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  padding: 9px 22px;
  background: var(--gold);
  color: var(--navy-deep) !important;
  border-radius: var(--r-sm);
  font-weight: 700 !important;
  transition: background .2s, transform .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--navy-deep);
  border-top: 1px solid rgba(200,151,58,.15);
  padding: 16px 0;
}
.mobile-menu a {
  padding: 14px 24px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.8);
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,.05);
  transition: color .2s, background .2s;
}
.mobile-menu a:hover { color: var(--gold); background: rgba(200,151,58,.05); }
.mobile-menu.open { display: flex; }

/* ─── HERO ───────────────────────────────────────────────── */
#hero {
  min-height: 100vh;
  background: var(--navy-deep);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 0 100px;
  overflow: hidden;
}
.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,.07) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 1;
}
.hero-bg-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 60% 50%, rgba(26,58,107,.6) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 10% 80%, rgba(200,151,58,.12) 0%, transparent 60%);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,151,58,.12);
  border: 1px solid rgba(200,151,58,.3);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  margin-bottom: 36px;
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,151,58,.4); }
  50% { box-shadow: 0 0 0 6px rgba(200,151,58,0); }
}
.hero-badge-text {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}
.hero-title .accent { color: var(--gold); }
.hero-subtitle {
  font-family: var(--ff-mono);
  font-size: clamp(.8rem, 1.5vw, 1rem);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: block;
}
.hero-desc {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(255,255,255,.65);
  max-width: 560px;
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: absolute;
  right: 0; bottom: 0;
  width: clamp(260px, 35%, 380px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg) var(--r-lg) 0 0;
  padding: 32px 28px 28px;
  backdrop-filter: blur(8px);
}
.hero-stats-title {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,151,58,.2);
}
.stat-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.stat-label {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
}
.stat-value {
  font-family: var(--ff-mono);
  font-size: .82rem;
  font-weight: 500;
  color: var(--white);
}
.stat-badge {
  font-size: .68rem;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(0, 180, 100, .15);
  color: #4ADE80;
  border: 1px solid rgba(74, 222, 128, .2);
}
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.3);
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s;
  z-index: 3;
}
.hero-scroll:hover { color: var(--gold); }
.scroll-arrow {
  width: 28px;
  height: 28px;
  border: 1.5px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2.5s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(5px); }
}
.scroll-arrow svg { width: 12px; height: 12px; }

/* ─── WHAT WE DO ─────────────────────────────────────────── */
#what {
  background: var(--grey-50);
  padding: 120px 0;
}
.what-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.what-visual {
  position: relative;
}
.what-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.what-img-placeholder {
  width: 100%;
  height: 420px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.what-img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,.08) 1px, transparent 1px);
  background-size: 40px 40px;
}
.what-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy-deep);
  border: 1px solid rgba(200,151,58,.3);
  border-radius: var(--r-md);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 180px;
}
.what-float-num {
  font-family: var(--ff-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.what-float-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  font-weight: 400;
  line-height: 1.4;
}
.what-points { margin-top: 28px; display: flex; flex-direction: column; gap: 16px; }
.what-point {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.what-point-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.what-point-icon svg { color: var(--gold); width: 16px; height: 16px; }
.what-point-text h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.what-point-text p { font-size: .85rem; color: var(--grey-600); line-height: 1.6; }

/* SCM coordination visual inside placeholder */
.fourpl-diagram {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  width: 100%;
  padding: 32px 24px;
}
.fourpl-center {
  background: var(--gold);
  color: var(--navy-deep);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-md);
  text-align: center;
  position: relative;
  z-index: 3;
  box-shadow: 0 0 40px rgba(200,151,58,.4);
}
.fourpl-center-sub { font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; opacity: .7; }
.fourpl-connectors {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  position: relative;
  padding-top: 0;
  margin-top: 0;
}
.fourpl-up-line {
  width: 1px;
  height: 28px;
  background: rgba(200,151,58,.4);
  margin: 0 auto;
}
.fourpl-row {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.fourpl-down-line {
  display: flex;
  justify-content: space-around;
  width: 100%;
  position: relative;
}
.fourpl-down-line::before {
  content: '';
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: rgba(200,151,58,.25);
}
.fourpl-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.fourpl-node-line {
  width: 1px;
  height: 24px;
  background: rgba(200,151,58,.3);
}
.fourpl-node-box {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  font-size: .7rem;
  color: rgba(255,255,255,.7);
  text-align: center;
  width: 100%;
  font-family: var(--ff-mono);
}
.fourpl-top-row {
  display: flex;
  gap: 10px;
  width: 100%;
  justify-content: space-around;
  margin-bottom: 0;
}
.fourpl-top-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.fourpl-top-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-sm);
  padding: 8px 10px;
  font-size: .68rem;
  color: rgba(255,255,255,.6);
  text-align: center;
  width: 100%;
  font-family: var(--ff-mono);
}
.fourpl-vert-line {
  width: 1px;
  height: 22px;
  background: rgba(200,151,58,.3);
}

/* ─── SERVICES ───────────────────────────────────────────── */
#services {
  background: var(--white);
  padding: 120px 0;
}
.services-header {
  text-align: center;
  margin-bottom: 64px;
}
.services-header .gold-rule { margin: 24px auto; }
.services-header .body-lead { margin: 0 auto; text-align: center; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-card {
  background: var(--white);
  padding: 36px 30px;
  border-right: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
  position: relative;
  transition: background .25s, transform .25s;
  cursor: default;
}
.service-card:hover {
  background: var(--grey-50);
  z-index: 1;
}
.service-card:hover .service-icon-wrap { background: var(--navy); }
.service-card:hover .service-icon-wrap svg { color: var(--gold); }
.service-card:hover .service-card-arrow { opacity: 1; transform: translate(2px, -2px); }
.service-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--grey-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .25s;
}
.service-icon-wrap svg { width: 22px; height: 22px; color: var(--navy-light); transition: color .25s; }
.service-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.3;
}
.service-card p { font-size: .83rem; color: var(--grey-600); line-height: 1.65; }
.service-card-arrow {
  position: absolute;
  top: 28px;
  right: 24px;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  color: var(--gold);
}
.service-card-arrow svg { width: 16px; height: 16px; }

/* ─── WHO WE SERVE ───────────────────────────────────────── */
#who {
  background: var(--navy-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#who::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    linear-gradient(rgba(200,151,58,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.who-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.who-header .section-title { color: var(--white); }
.who-header .body-lead { color: rgba(255,255,255,.55); margin: 0 auto; text-align: center; }
.who-header .gold-rule { margin: 24px auto; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.who-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 36px 24px 30px;
  text-align: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.who-card:hover {
  background: rgba(200,151,58,.07);
  border-color: rgba(200,151,58,.3);
  transform: translateY(-4px);
}
.who-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(200,151,58,.1);
  border: 1px solid rgba(200,151,58,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.who-card-icon svg { width: 24px; height: 24px; color: var(--gold); }
.who-card h3 {
  font-size: .95rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}
.who-card p { font-size: .8rem; color: rgba(255,255,255,.45); line-height: 1.65; }

/* ─── WHY DASH ───────────────────────────────────────────── */
#why {
  background: var(--grey-50);
  padding: 120px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-problems { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.problem-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  border-left: 3px solid #E53E3E;
  transition: box-shadow .2s;
}
.problem-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.problem-num {
  font-family: var(--ff-mono);
  font-size: .7rem;
  color: #E53E3E;
  font-weight: 500;
  min-width: 20px;
  padding-top: 2px;
}
.problem-item h4 { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.problem-item p { font-size: .8rem; color: var(--grey-600); line-height: 1.55; }
.solutions { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.solution-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
  border-left: 3px solid var(--gold);
  transition: box-shadow .2s;
}
.solution-item:hover { box-shadow: 0 4px 20px rgba(0,0,0,.06); }
.solution-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.solution-check svg { width: 11px; height: 11px; color: var(--navy-deep); }
.solution-item h4 { font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.solution-item p { font-size: .8rem; color: var(--grey-600); line-height: 1.55; }

/* ─── VISUALIZATION ──────────────────────────────────────── */
#viz {
  background: var(--navy-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#viz::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.viz-header { text-align: center; margin-bottom: 64px; position: relative; z-index: 2; }
.viz-header .section-title { color: var(--white); }
.viz-header .body-lead { color: rgba(255,255,255,.55); margin: 0 auto; text-align: center; }
.viz-header .gold-rule { margin: 24px auto; }
.viz-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.viz-panel {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 32px;
}
.viz-panel-title {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.viz-live { display: flex; align-items: center; gap: 6px; }
.viz-live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ADE80;
  animation: pulse 2s infinite;
}
.viz-live-text { font-size: .65rem; color: #4ADE80; }
canvas#slaChart { max-height: 240px; }

/* KPI bars */
.kpi-bars { display: flex; flex-direction: column; gap: 18px; }
.kpi-bar-row { display: flex; flex-direction: column; gap: 7px; }
.kpi-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.kpi-bar-label { font-size: .78rem; color: rgba(255,255,255,.65); }
.kpi-bar-val {
  font-family: var(--ff-mono);
  font-size: .82rem;
  color: var(--white);
  font-weight: 500;
}
.kpi-bar-track {
  height: 6px;
  background: rgba(255,255,255,.07);
  border-radius: 100px;
  overflow: hidden;
}
.kpi-bar-fill {
  height: 100%;
  border-radius: 100px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width 1.4s var(--ease-out);
  width: 0;
}
.kpi-bar-fill.green { background: linear-gradient(90deg, #22D3A0, #4ADE80); }
.kpi-bar-fill.blue  { background: linear-gradient(90deg, #60A5FA, #93C5FD); }

/* flow diagram */
.flow-wrap { overflow-x: auto; }
.flow-diagram {
  min-width: 520px;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 16px 0;
  position: relative;
}
.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}
.flow-box {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: 12px 10px;
  text-align: center;
  width: 100%;
  max-width: 110px;
  transition: background .2s, border-color .2s;
}
.flow-box:hover { background: rgba(200,151,58,.1); border-color: rgba(200,151,58,.3); }
.flow-box-icon { margin-bottom: 8px; }
.flow-box-icon svg { width: 20px; height: 20px; color: var(--gold); }
.flow-box-label { font-size: .68rem; color: rgba(255,255,255,.7); font-family: var(--ff-mono); line-height: 1.4; }
.flow-arrow {
  flex: 0 0 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200,151,58,.5);
}
.flow-arrow svg { width: 18px; height: 18px; }
.flow-center-step .flow-box {
  background: rgba(200,151,58,.15);
  border-color: rgba(200,151,58,.4);
}
.flow-center-step .flow-box-label { color: var(--gold-light); font-weight: 500; }

/* ─── CONTACT ────────────────────────────────────────────── */
#contact {
  background: var(--white);
  padding: 120px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1fr;
  gap: 40px;
  align-items: start;
}
/* Map block */
.contact-map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: 0 4px 24px rgba(11,31,58,.08);
}
.contact-map-wrap iframe {
  display: block;
  width: 100%;
  height: 340px;
  border: none;
}
.contact-map-label {
  background: var(--navy-deep);
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.contact-map-label-icon {
  width: 32px; height: 32px;
  border-radius: var(--r-sm);
  background: rgba(200,151,58,.15);
  border: 1px solid rgba(200,151,58,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.contact-map-label-icon svg { width: 14px; height: 14px; color: var(--gold); }
.contact-map-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-map-address-name {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-map-address-line {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.contact-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 20px;
}
.contact-tagline em { font-style: normal; color: var(--gold); }
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-top: 36px; }
.contact-detail-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-md);
}
.contact-detail-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 16px; height: 16px; color: var(--gold); }
.contact-detail-text { display: flex; flex-direction: column; gap: 2px; }
.contact-detail-label { font-size: .72rem; font-weight: 600; color: var(--grey-400); text-transform: uppercase; letter-spacing: .08em; }
.contact-detail-value { font-size: .88rem; color: var(--navy); font-weight: 500; }
.contact-form-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  padding: 40px;
}
.contact-form-card h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.contact-form-card p { font-size: .85rem; color: var(--grey-600); margin-bottom: 28px; }
.contact-btns { display: flex; flex-direction: column; gap: 14px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 22px;
  border-radius: var(--r-md);
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all .22s var(--ease-out);
  text-decoration: none;
}
.contact-btn--wa {
  background: #25D366;
  color: #fff;
}
.contact-btn--wa:hover { background: #1EBD5A; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,.3); }
.contact-btn--email {
  background: var(--navy);
  color: var(--white);
}
.contact-btn--email:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(11,31,58,.3); }
.contact-btn-icon {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.15);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-btn-icon svg { width: 18px; height: 18px; }
.contact-btn-text { display: flex; flex-direction: column; gap: 2px; text-align: left; }
.contact-btn-label { font-size: .68rem; opacity: .7; font-weight: 400; letter-spacing: .05em; text-transform: uppercase; }
.contact-btn-value { font-size: .9rem; }
.contact-divider {
  text-align: center;
  position: relative;
  color: var(--grey-400);
  font-size: .75rem;
  margin: 4px 0;
}
.contact-divider::before, .contact-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 40%;
  height: 1px;
  background: var(--grey-200);
}
.contact-divider::before { left: 0; }
.contact-divider::after { right: 0; }

/* ─── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(200,151,58,.15);
  padding: 48px 0 32px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,.05);
  margin-bottom: 28px;
}
.footer-brand .nav-logo-text { font-size: 1.3rem; }
.footer-brand p {
  font-size: .78rem;
  color: rgba(255,255,255,.35);
  margin-top: 10px;
  max-width: 240px;
  line-height: 1.6;
}
.footer-links h4 {
  font-family: var(--ff-mono);
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .8rem;
  color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom p { font-size: .75rem; color: rgba(255,255,255,.25); }
.footer-cert {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cert-badge {
  padding: 4px 12px;
  border: 1px solid rgba(200,151,58,.2);
  border-radius: 100px;
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,151,58,.5);
}

/* ─── LEADERSHIP TEAM ────────────────────────────────────── */
#team {
  background: var(--white);
  padding: 120px 0;
}
.team-header {
  text-align: center;
  margin-bottom: 64px;
}
.team-header .gold-rule { margin: 24px auto; }
.team-header .body-lead { margin: 0 auto; text-align: center; }
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.team-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow .3s var(--ease-out), transform .3s var(--ease-out);
}
.team-card:hover {
  box-shadow: 0 16px 48px rgba(11,31,58,.1);
  transform: translateY(-4px);
}
.team-card-top {
  background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  padding: 40px 36px 0;
  display: flex;
  gap: 28px;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.team-card-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.team-photo-wrap {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}
.team-photo {
  width: 120px;
  height: 148px;
  border-radius: var(--r-md) var(--r-md) 0 0;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.team-photo-placeholder {
  width: 120px;
  height: 148px;
  border-radius: var(--r-md) var(--r-md) 0 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-bottom: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.team-photo-placeholder svg { width: 40px; height: 40px; color: rgba(200,151,58,.35); }
.team-photo-hint {
  font-family: var(--ff-mono);
  font-size: .56rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.18);
  text-align: center;
  line-height: 1.6;
  padding: 0 8px;
}
.team-card-intro {
  position: relative;
  z-index: 2;
  padding-bottom: 24px;
  flex: 1;
}
.team-card-role {
  font-family: var(--ff-mono);
  font-size: .67rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  display: block;
}
.team-card-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.team-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(200,151,58,.12);
  border: 1px solid rgba(200,151,58,.22);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: var(--ff-mono);
  font-size: .61rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: rgba(200,151,58,.8);
}
.team-card-body {
  padding: 28px 32px 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.team-section-block h5 {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--grey-400);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--grey-200);
}
.team-resp-list { display: flex; flex-direction: column; gap: 7px; }
.team-resp-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: .8rem;
  color: var(--grey-600);
  line-height: 1.45;
}
.team-resp-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 6px;
}
.team-bg-text { font-size: .82rem; color: var(--grey-600); line-height: 1.65; }
.team-bg-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
.team-bg-tag {
  padding: 3px 10px;
  background: var(--grey-100);
  border: 1px solid var(--grey-200);
  border-radius: 100px;
  font-size: .71rem;
  color: var(--grey-600);
  font-weight: 500;
}
.team-divider { grid-column: 1 / -1; height: 1px; background: var(--grey-200); }
.team-trust-strip {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 8px; }
.trust-icon {
  width: 28px;
  height: 28px;
  border-radius: var(--r-sm);
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 13px; height: 13px; color: var(--gold); }
.trust-label { font-size: .76rem; color: var(--grey-600); font-weight: 500; }

/* ─── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { display: none; }
  .team-card-body { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .what-grid, .why-grid, .contact-grid, .viz-layout { grid-template-columns: 1fr; gap: 48px; }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  #hero { padding: 120px 0 80px; }
  .hero-title { font-size: 2.4rem; }
  .what-float { right: 0; bottom: -16px; }
  .viz-panel { padding: 24px; }
  .team-grid { grid-template-columns: 1fr; }
  .team-card-top { padding: 28px 24px 0; gap: 20px; }
  .team-card-body { padding: 22px 24px 28px; }
}
@media (max-width: 480px) {
  .who-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* ─── HORIZONTAL RULE BETWEEN SECTIONS ───────────────────── */
.section-sep {
  height: 1px;
  background: var(--grey-200);
}

/* ─── HOW WE ENGAGE ──────────────────────────────────────── */
#engage {
  background: var(--navy-deep);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
#engage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200,151,58,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,151,58,.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.engage-header { text-align: center; margin-bottom: 72px; position: relative; z-index: 2; }
.engage-header .section-title { color: var(--white); }
.engage-header .body-lead { color: rgba(255,255,255,.55); margin: 0 auto; text-align: center; }
.engage-header .gold-rule { margin: 24px auto; }
.engage-steps {
  display: grid;
  grid-template-columns: 1fr 56px 1fr 56px 1fr;
  align-items: start;
  gap: 0;
  position: relative;
  z-index: 2;
}
.engage-step {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  transition: background .25s, border-color .25s, transform .25s;
}
.engage-step:hover {
  background: rgba(200,151,58,.06);
  border-color: rgba(200,151,58,.25);
  transform: translateY(-4px);
}
.engage-step--active {
  background: rgba(200,151,58,.08);
  border-color: rgba(200,151,58,.3);
}
.engage-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
}
.engage-connector svg { width: 20px; height: 20px; color: rgba(200,151,58,.4); }
.engage-step-num {
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.engage-step-num::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(200,151,58,.12);
  border: 1px solid rgba(200,151,58,.25);
  flex-shrink: 0;
}
.engage-step:nth-child(1) .engage-step-num::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ctext x='50%25' y='55%25' text-anchor='middle' dominant-baseline='middle' font-family='JetBrains Mono,monospace' font-size='11' fill='%23C8973A'%3E01%3C/text%3E%3C/svg%3E"); }
.engage-step:nth-child(3) .engage-step-num::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ctext x='50%25' y='55%25' text-anchor='middle' dominant-baseline='middle' font-family='JetBrains Mono,monospace' font-size='11' fill='%23C8973A'%3E02%3C/text%3E%3C/svg%3E"); }
.engage-step:nth-child(5) .engage-step-num::before { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 28 28'%3E%3Ctext x='50%25' y='55%25' text-anchor='middle' dominant-baseline='middle' font-family='JetBrains Mono,monospace' font-size='11' fill='%23C8973A'%3E03%3C/text%3E%3C/svg%3E"); }
.engage-step-icon {
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  background: rgba(200,151,58,.1);
  border: 1px solid rgba(200,151,58,.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.engage-step-icon svg { width: 20px; height: 20px; color: var(--gold); }
.engage-step h3 {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
  line-height: 1.25;
}
.engage-step p { font-size: .84rem; color: rgba(255,255,255,.5); line-height: 1.7; }
.engage-step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  background: rgba(200,151,58,.08);
  border: 1px solid rgba(200,151,58,.15);
  border-radius: 100px;
  padding: 4px 12px;
  font-family: var(--ff-mono);
  font-size: .64rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(200,151,58,.7);
}
.engage-cta {
  text-align: center;
  margin-top: 64px;
  position: relative;
  z-index: 2;
}
.engage-cta p {
  font-size: .85rem;
  color: rgba(255,255,255,.35);
  margin-top: 14px;
  font-family: var(--ff-mono);
  letter-spacing: .04em;
}
@media (max-width: 900px) {
  .engage-steps {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .engage-connector { padding-top: 0; transform: rotate(90deg); }
}


/* ═══════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════ */
#pricing { background: var(--grey-50); padding: 120px 0; }
.pricing-intro { text-align: center; margin-bottom: 56px; }
.pricing-intro .gold-rule { margin: 24px auto; }
.pricing-intro .body-lead { margin: 0 auto; text-align: center; }
.dci-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,151,58,.08);
  border: 1px solid rgba(200,151,58,.2);
  border-radius: 100px;
  padding: 6px 16px;
  font-family: var(--ff-mono);
  font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.dci-note svg { width: 13px; height: 13px; }
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
  margin-bottom: 40px;
}
.pc {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.pc:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(11,31,58,.12); }
.pc--featured {
  background: var(--navy-deep);
  border-color: rgba(200,151,58,.35);
  box-shadow: 0 0 0 1px rgba(200,151,58,.2), 0 8px 32px rgba(11,31,58,.2);
}
.pc--featured:hover { box-shadow: 0 0 0 2px rgba(200,151,58,.4), 0 20px 56px rgba(11,31,58,.3); }
.pc-head {
  padding: 26px 24px 20px;
  border-bottom: 1px solid var(--grey-100);
}
.pc--featured .pc-head { border-bottom-color: rgba(200,151,58,.12); }
.pc-tier-badge {
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .62rem; letter-spacing: .14em; text-transform: uppercase;
  font-weight: 600; padding: 3px 10px; border-radius: 100px;
  margin-bottom: 14px;
}
.pc-tier-badge--standard { background: var(--grey-100); color: var(--grey-600); border: 1px solid var(--grey-200); }
.pc-tier-badge--featured { background: rgba(200,151,58,.12); color: var(--gold); border: 1px solid rgba(200,151,58,.25); }
.pc-name {
  font-family: var(--ff-display); font-size: 1.2rem; font-weight: 700;
  color: var(--navy); line-height: 1.2; margin-bottom: 4px;
}
.pc--featured .pc-name { color: var(--white); }
.pc-dci {
  font-family: var(--ff-mono); font-size: .68rem; color: var(--grey-400);
  letter-spacing: .05em; margin-bottom: 14px;
}
.pc--featured .pc-dci { color: rgba(255,255,255,.35); }
.pc-price-block { margin-top: 2px; }
.pc-price-label {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--grey-400); margin-bottom: 3px; display: block;
}
.pc--featured .pc-price-label { color: rgba(255,255,255,.3); }
.pc-price-row { display: flex; align-items: baseline; gap: 4px; flex-wrap: wrap; margin-bottom: 6px; }
.pc-price-main { font-family: var(--ff-display); font-size: 1.45rem; font-weight: 700; color: var(--navy); line-height: 1; }
.pc--featured .pc-price-main { color: var(--gold); }
.pc-price-period { font-size: .75rem; color: var(--grey-400); }
.pc--featured .pc-price-period { color: rgba(255,255,255,.35); }
.pc-onboard {
  font-size: .75rem; color: var(--grey-400);
  background: var(--grey-50); border: 1px solid var(--grey-100);
  border-radius: var(--r-sm); padding: 5px 10px; display: inline-block; margin-top: 6px;
}
.pc--featured .pc-onboard { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.4); }
.pc-body { padding: 20px 24px; flex: 1; display: flex; flex-direction: column; }
.pc-profile-label {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--grey-400); margin-bottom: 8px; display: block;
}
.pc--featured .pc-profile-label { color: rgba(200,151,58,.5); }
.pc-profile { font-size: .82rem; color: var(--grey-600); line-height: 1.6; flex: 1; }
.pc--featured .pc-profile { color: rgba(255,255,255,.6); }
.pc-features-list { margin-top: 14px; display: flex; flex-direction: column; gap: 8px; }
.pc-feat {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: .78rem; color: var(--grey-500); line-height: 1.5;
}
.pc--featured .pc-feat { color: rgba(255,255,255,.58); }
.pc-feat-dot {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold-pale); border: 1px solid rgba(200,151,58,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.pc-feat-dot svg { width: 8px; height: 8px; color: var(--gold); }
.pc--featured .pc-feat-dot { background: rgba(200,151,58,.12); }
.pc-gainshare {
  margin-top: 14px; padding: 10px 12px;
  background: rgba(200,151,58,.08); border: 1px solid rgba(200,151,58,.18);
  border-radius: var(--r-sm);
}
.pc-gainshare-label { font-family: var(--ff-mono); font-size: .58rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 3px; }
.pc-gainshare p { font-size: .76rem; line-height: 1.5; }
.pc--featured .pc-gainshare p { color: rgba(255,255,255,.6); }
.pc-foot { padding: 16px 24px 24px; border-top: 1px solid var(--grey-100); }
.pc--featured .pc-foot { border-top-color: rgba(200,151,58,.1); }
.pc-btn {
  display: flex; align-items: center; justify-content: center; gap: 7px;
  width: 100%; padding: 11px 18px; border-radius: var(--r-sm);
  font-size: .8rem; font-weight: 600; letter-spacing: .02em;
  cursor: pointer; text-decoration: none; border: none;
  transition: all .2s var(--ease-out);
}
.pc-btn--outline { background: transparent; color: var(--navy); border: 1.5px solid var(--grey-200); }
.pc-btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.pc-btn--navy { background: var(--navy); color: var(--white); }
.pc-btn--navy:hover { background: var(--navy-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(11,31,58,.22); }
.pc-btn--gold { background: var(--gold); color: var(--navy-deep); font-weight: 700; }
.pc-btn--gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,151,58,.32); }
.pricing-footer-note {
  text-align: center; font-size: .8rem; color: var(--grey-400); margin-top: 8px;
}
.pricing-footer-note a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

/* Support model table */
.support-table-wrap {
  background: var(--white); border: 1px solid var(--grey-200);
  border-radius: var(--r-lg); overflow: hidden; margin-top: 40px;
}
.support-table-head {
  padding: 18px 28px; border-bottom: 1px solid var(--grey-200);
  display: flex; align-items: center; justify-content: space-between;
}
.support-table-head h3 { font-family: var(--ff-display); font-size: .95rem; font-weight: 700; color: var(--navy); }
.support-table-head span { font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--grey-400); }
.stbl { width: 100%; border-collapse: collapse; font-size: .8rem; }
.stbl thead tr { background: var(--navy-deep); }
.stbl thead th { padding: 12px 20px; font-family: var(--ff-mono); font-size: .63rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.5); font-weight: 500; text-align: left; }
.stbl thead th:last-child { color: var(--gold); }
.stbl tbody tr { border-bottom: 1px solid var(--grey-100); transition: background .15s; }
.stbl tbody tr:hover { background: var(--grey-50); }
.stbl tbody tr:last-child { border-bottom: none; }
.stbl td { padding: 13px 20px; color: var(--grey-600); }
.stbl td:first-child { font-family: var(--ff-mono); font-size: .7rem; color: var(--gold); font-weight: 600; }
.stbl td:nth-child(2) { font-weight: 600; color: var(--navy); }

/* ═══════════════════════════════════════════════════════
   DCI ASSESSMENT SECTION
═══════════════════════════════════════════════════════ */
#dci { background: var(--navy-deep); padding: 120px 0; position: relative; overflow: hidden; }
#dci::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,151,58,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(200,151,58,.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.dci-header { text-align: center; margin-bottom: 56px; position: relative; z-index: 2; }
.dci-header .section-title { color: var(--white); }
.dci-header .body-lead { color: rgba(255,255,255,.5); margin: 0 auto; text-align: center; }
.dci-header .gold-rule { margin: 24px auto; }
.dci-quiz-wrap {
  position: relative; z-index: 2;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg); overflow: hidden;
}
/* Progress bar */
.dci-progress-bar-wrap {
  padding: 0; height: 3px; background: rgba(255,255,255,.07);
}
.dci-progress-bar-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transition: width .4s var(--ease-out); width: 0%;
}
.dci-progress-info {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 28px 0;
}
.dci-progress-text {
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.35);
}
.dci-progress-score {
  font-family: var(--ff-mono); font-size: .7rem; letter-spacing: .06em;
  color: var(--gold); font-weight: 600;
}
/* Questions */
.dci-questions { padding: 28px 28px 24px; }
.dci-q {
  display: none; animation: fadeQ .3s ease;
}
.dci-q.active { display: block; }
@keyframes fadeQ { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
.dci-q-header { margin-bottom: 20px; }
.dci-q-num {
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block;
}
.dci-q-title {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700;
  color: var(--white); line-height: 1.3; margin-bottom: 4px;
}
.dci-q-subtitle { font-size: .78rem; color: rgba(255,255,255,.4); line-height: 1.5; }
.dci-options { display: flex; flex-direction: column; gap: 9px; }
.dci-option {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-sm); cursor: pointer;
  transition: all .18s var(--ease-out);
}
.dci-option:hover { background: rgba(200,151,58,.06); border-color: rgba(200,151,58,.2); }
.dci-option input[type="radio"] { display: none; }
.dci-option-radio {
  width: 18px; height: 18px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all .18s;
}
.dci-option-radio::after {
  content: ''; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); opacity: 0; transform: scale(0); transition: all .18s;
}
.dci-option.selected { background: rgba(200,151,58,.08); border-color: rgba(200,151,58,.3); }
.dci-option.selected .dci-option-radio { border-color: var(--gold); }
.dci-option.selected .dci-option-radio::after { opacity: 1; transform: scale(1); }
.dci-option-text { font-size: .85rem; color: rgba(255,255,255,.7); line-height: 1.4; flex: 1; }
.dci-option-pts {
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .06em;
  color: rgba(255,255,255,.3); flex-shrink: 0;
}
.dci-option.selected .dci-option-text { color: var(--white); }
.dci-option.selected .dci-option-pts { color: var(--gold); }
/* Navigation buttons */
.dci-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 28px 28px; border-top: 1px solid rgba(255,255,255,.06);
}
.dci-nav-btn {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 22px; border-radius: var(--r-sm);
  font-size: .82rem; font-weight: 600; cursor: pointer;
  transition: all .2s; border: none;
}
.dci-btn-prev { background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); }
.dci-btn-prev:hover { background: rgba(255,255,255,.1); color: var(--white); }
.dci-btn-next { background: var(--gold); color: var(--navy-deep); }
.dci-btn-next:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,151,58,.3); }
.dci-btn-next:disabled { background: rgba(255,255,255,.1); color: rgba(255,255,255,.3); cursor: not-allowed; transform: none; box-shadow: none; }
.dci-btn-submit { background: var(--gold); color: var(--navy-deep); }
.dci-btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(200,151,58,.3); }
/* Result panel */
.dci-result {
  display: none; padding: 40px 28px;
  animation: fadeQ .4s ease;
}
.dci-result.show { display: block; }
.dci-result-score-row {
  display: flex; align-items: flex-start; gap: 32px;
  margin-bottom: 32px; flex-wrap: wrap;
}
.dci-score-dial {
  text-align: center; flex-shrink: 0;
}
.dci-score-number {
  font-family: var(--ff-display); font-size: 4rem; font-weight: 900;
  color: var(--gold); line-height: 1;
}
.dci-score-label {
  font-family: var(--ff-mono); font-size: .62rem; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.35); display: block; margin-top: 4px;
}
.dci-score-bar-wrap { flex: 1; min-width: 200px; padding-top: 14px; }
.dci-score-track {
  height: 8px; background: rgba(255,255,255,.08); border-radius: 100px;
  overflow: hidden; margin-bottom: 8px;
}
.dci-score-fill {
  height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 100px; transition: width 1s var(--ease-out); width: 0;
}
.dci-score-range-labels {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: .58rem; color: rgba(255,255,255,.3);
}
.dci-result-package {
  background: rgba(200,151,58,.07); border: 1px solid rgba(200,151,58,.2);
  border-radius: var(--r-lg); padding: 28px; margin-bottom: 24px;
}
.dci-pkg-badge {
  display: inline-block; font-family: var(--ff-mono); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  background: rgba(200,151,58,.15); color: var(--gold);
  border: 1px solid rgba(200,151,58,.3); border-radius: 100px;
  padding: 3px 12px; margin-bottom: 12px;
}
.dci-pkg-name {
  font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700;
  color: var(--white); margin-bottom: 6px;
}
.dci-pkg-desc { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.65; margin-bottom: 18px; }
.dci-pkg-pricing {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
.dci-pkg-price-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-sm); padding: 14px 16px;
}
.dci-pkg-price-box-label {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .1em;
  text-transform: uppercase; color: rgba(255,255,255,.3); display: block; margin-bottom: 5px;
}
.dci-pkg-price-box-value {
  font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; color: var(--gold);
}
.dci-result-support {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 28px;
}
.dci-result-support-label {
  font-family: var(--ff-mono); font-size: .6rem; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.3); display: block; margin-bottom: 8px;
}
.dci-result-support-value { font-size: .88rem; color: rgba(255,255,255,.75); font-weight: 500; }
.dci-result-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.dci-restart-btn {
  background: rgba(255,255,255,.06); color: rgba(255,255,255,.7); border: none;
  padding: 12px 22px; border-radius: var(--r-sm); font-size: .82rem;
  font-weight: 600; cursor: pointer; transition: all .2s;
}
.dci-restart-btn:hover { background: rgba(255,255,255,.1); color: var(--white); }
.dci-breakdown-toggle {
  background: rgba(255,255,255,.04); color: rgba(255,255,255,.5); border: 1px solid rgba(255,255,255,.08);
  padding: 12px 22px; border-radius: var(--r-sm); font-size: .82rem;
  font-weight: 600; cursor: pointer; transition: all .2s;
}
.dci-breakdown-toggle:hover { background: rgba(255,255,255,.07); color: rgba(255,255,255,.8); }
.dci-breakdown {
  display: none; margin-top: 20px;
  background: rgba(255,255,255,.02); border: 1px solid rgba(255,255,255,.05);
  border-radius: var(--r-md); overflow: hidden;
}
.dci-breakdown.show { display: block; }
.dci-breakdown-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 20px; border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .78rem;
}
.dci-breakdown-row:last-child { border-bottom: none; }
.dci-breakdown-row span:first-child { color: rgba(255,255,255,.5); }
.dci-breakdown-row span:last-child { font-family: var(--ff-mono); font-size: .75rem; color: var(--gold); font-weight: 600; }
@media (max-width: 1024px) {
  .pricing-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .pricing-cards { grid-template-columns: 1fr; }
  .dci-result-score-row { flex-direction: column; gap: 20px; }
  .dci-pkg-pricing { grid-template-columns: 1fr; }
  .dci-questions { padding: 20px 18px 18px; }
  .dci-nav { padding: 16px 18px 20px; }
  .dci-result { padding: 28px 18px; }
}

/* ═══════════════════════════════════════════════════════════
   DASH TECHNOLOGIES — EXTENDED SYSTEM
   Added for the multi-product corporate site. Built entirely
   from the DASH SCM tokens/components above — no new palette,
   no new type system, no new spacing scale.
   ═══════════════════════════════════════════════════════════ */

/* ── LOGO LOCKUP (parent + product) ──────────────────────── */
.nav-logo-parent { display: flex; align-items: baseline; gap: 4px; }
.nav-logo-parent .nav-logo-text { font-size: 1.25rem; }
.nav-logo-divider { width: 1px; height: 20px; background: rgba(255,255,255,.15); margin: 0 14px; }
.nav-logo-product { font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.55); }
.nav-logo-product span { color: var(--gold); }

/* ── NAV DROPDOWN (Products) ─────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger { display: flex; align-items: center; gap: 5px; cursor: pointer; }
.nav-dropdown-trigger svg { width: 12px; height: 12px; transition: transform .2s; }
.nav-dropdown.open .nav-dropdown-trigger svg { transform: rotate(180deg); }
.nav-dropdown-panel {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: var(--navy-deep);
  border: 1px solid rgba(200,151,58,.2);
  border-radius: var(--r-md);
  box-shadow: 0 24px 60px rgba(0,0,0,.4);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 50;
}
.nav-dropdown.open .nav-dropdown-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.nav-dropdown-item:hover { background: rgba(200,151,58,.08); }
.nav-dropdown-item-icon {
  width: 38px; height: 38px;
  border-radius: var(--r-sm);
  background: rgba(200,151,58,.1);
  border: 1px solid rgba(200,151,58,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.nav-dropdown-item-icon svg { width: 18px; height: 18px; color: var(--gold); }
.nav-dropdown-item-text { text-align: left; }
.nav-dropdown-item-name { font-size: .84rem; font-weight: 600; color: var(--white); text-transform: none; letter-spacing: 0; display: block; }
.nav-dropdown-item-desc { font-size: .72rem; color: rgba(255,255,255,.4); text-transform: none; letter-spacing: 0; }
.nav-dropdown-footer {
  padding: 10px 14px 4px;
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  border-top: 1px solid rgba(255,255,255,.06);
  margin-top: 4px;
  padding-top: 12px;
}
.mobile-menu .mm-group-label {
  padding: 14px 24px 4px;
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .15em;
  color: rgba(200,151,58,.6);
  text-transform: uppercase;
}
.mobile-menu .mm-sub { padding-left: 40px !important; font-size: .82rem !important; }

/* ── INTERIOR PAGE HERO (Services/Industries/Case Studies/etc) ─ */
.page-hero {
  background: var(--navy-deep);
  position: relative;
  padding: 160px 0 90px;
  overflow: hidden;
}
.page-hero .hero-bg-grid, .page-hero .hero-bg-fade { position: absolute; inset: 0; }
.page-hero-inner { position: relative; z-index: 2; max-width: 720px; }
.page-hero-eyebrow {
  font-family: var(--ff-mono);
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.14;
  letter-spacing: -.01em;
  margin-bottom: 20px;
}
.page-hero h1 .accent { color: var(--gold); }
.page-hero p {
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255,255,255,.6);
  max-width: 560px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: .7rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
}
.breadcrumb a { color: rgba(255,255,255,.5); transition: color .2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .accent { color: var(--gold); }

/* ── HOME · PORTFOLIO PRODUCT CARDS ──────────────────────── */
#portfolio { background: var(--white); padding: 120px 0; }
.portfolio-list { display: flex; flex-direction: column; gap: 2px; margin-top: 56px; }
.portfolio-card {
  display: grid;
  grid-template-columns: 90px 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 44px 36px;
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  transition: background .25s, border-color .25s;
  position: relative;
}
.portfolio-card:first-child { border-radius: var(--r-lg) var(--r-lg) 0 0; }
.portfolio-card:last-child { border-radius: 0 0 var(--r-lg) var(--r-lg); }
.portfolio-card + .portfolio-card { border-top: none; }
.portfolio-card:hover { background: var(--white); border-color: var(--gold); box-shadow: 0 20px 50px rgba(11,31,58,.08); z-index: 2; }
.portfolio-num { font-family: var(--ff-display); font-size: 2.6rem; font-weight: 700; color: var(--grey-200); transition: color .25s; line-height: 1; }
.portfolio-card:hover .portfolio-num { color: var(--gold-pale); }
.portfolio-body .portfolio-tag {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 10px;
}
.portfolio-body h3 { font-family: var(--ff-display); font-size: 1.7rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.portfolio-body p { font-size: .92rem; color: var(--grey-600); max-width: 520px; line-height: 1.65; }
.portfolio-modules { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.portfolio-modules span {
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .04em; text-transform: uppercase;
  color: var(--navy-light); background: var(--grey-100); padding: 4px 10px; border-radius: 100px;
}
.portfolio-cta { display: flex; align-items: center; gap: 10px; }
.portfolio-more {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 36px; border: 1px dashed var(--grey-200); border-radius: var(--r-md);
  margin-top: 2px; color: var(--grey-400); font-family: var(--ff-mono); font-size: .78rem;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ── HOME · COMPANY STRIP / STATS ────────────────────────── */
.company-strip { background: var(--navy-deep); padding: 56px 0; position: relative; overflow: hidden; }
.company-strip-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
  position: relative; z-index: 2;
}
.company-strip-item { text-align: center; border-left: 1px solid rgba(255,255,255,.08); padding-left: 32px; }
.company-strip-item:first-child { border-left: none; padding-left: 0; }
.company-strip-num { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--gold); }
.company-strip-label { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: 6px; }

/* ── SERVICES PAGE · SERVICE DETAIL ROWS ─────────────────── */
.svc-detail-grid { display: flex; flex-direction: column; gap: 2px; }
.svc-detail-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 28px;
  padding: 40px 0; border-bottom: 1px solid var(--grey-200);
}
.svc-detail-row:last-child { border-bottom: none; }
.svc-detail-icon {
  width: 56px; height: 56px; border-radius: var(--r-md); background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
}
.svc-detail-icon svg { width: 24px; height: 24px; color: var(--navy-light); }
.svc-detail-row h3 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 8px; }
.svc-detail-row p { color: var(--grey-600); font-size: .92rem; line-height: 1.7; max-width: 640px; }

/* ── INDUSTRIES PAGE · TABS ──────────────────────────────── */
.ind-tabs { display: flex; gap: 4px; flex-wrap: wrap; border-bottom: 1px solid var(--grey-200); margin-bottom: 56px; }
.ind-tab {
  padding: 16px 22px; font-size: .85rem; font-weight: 600; color: var(--grey-400);
  border-bottom: 2px solid transparent; cursor: pointer; transition: color .2s, border-color .2s;
  display: flex; align-items: center; gap: 10px;
}
.ind-tab:hover { color: var(--navy); }
.ind-tab.active { color: var(--navy); border-bottom-color: var(--gold); }
.ind-tab-icon { width: 18px; height: 18px; }
.ind-panel { display: none; }
.ind-panel.active { display: block; animation: fadein .3s var(--ease-out); }
@keyframes fadein { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ind-panel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.ind-rec-card {
  border: 1px solid var(--grey-200); border-radius: var(--r-lg); padding: 32px; background: var(--grey-50);
}
.ind-rec-card + .ind-rec-card { margin-top: 20px; }
.ind-rec-card.primary { border-color: var(--gold); background: var(--gold-pale); }
.ind-rec-tag {
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 14px;
}
.ind-rec-card.primary .ind-rec-tag { background: var(--gold); color: var(--navy-deep); }
.ind-rec-card:not(.primary) .ind-rec-tag { background: var(--grey-200); color: var(--grey-600); }
.ind-rec-card h4 { font-family: var(--ff-display); font-size: 1.25rem; color: var(--navy); margin-bottom: 8px; }
.ind-rec-card p { font-size: .88rem; color: var(--grey-600); line-height: 1.6; margin-bottom: 16px; }

/* ── CASE STUDIES · PLACEHOLDER CARDS ────────────────────── */
.cs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.cs-card {
  border: 1px solid var(--grey-200); border-radius: var(--r-lg); overflow: hidden;
  background: var(--white); transition: box-shadow .25s, transform .25s;
}
.cs-card:hover { box-shadow: 0 24px 60px rgba(11,31,58,.1); transform: translateY(-4px); }
.cs-card-top { background: var(--navy-deep); padding: 32px 28px; position: relative; overflow: hidden; }
.cs-card-top::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,151,58,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(200,151,58,.07) 1px, transparent 1px);
  background-size: 30px 30px;
}
.cs-card-industry {
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); position: relative; z-index: 2; display: block; margin-bottom: 10px;
}
.cs-card-product { position: relative; z-index: 2; color: rgba(255,255,255,.4); font-size: .78rem; }
.cs-card-body { padding: 26px 28px 30px; }
.cs-card-body h3 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 12px; line-height: 1.35; }
.cs-card-stats { display: flex; gap: 20px; margin: 16px 0; }
.cs-card-stat-num { font-family: var(--ff-display); font-weight: 700; color: var(--gold); font-size: 1.3rem; }
.cs-card-stat-label { font-size: .68rem; color: var(--grey-400); }
.cs-card-body p { font-size: .84rem; color: var(--grey-600); line-height: 1.6; }
.cs-placeholder-note {
  margin-top: 56px; padding: 20px 24px; background: var(--gold-pale); border-radius: var(--r-md);
  font-size: .82rem; color: var(--navy); display: flex; gap: 12px; align-items: flex-start;
}
.cs-placeholder-note svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 1px; }

/* ── RESOURCES PAGE ───────────────────────────────────────── */
.res-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.res-card { border: 1px solid var(--grey-200); border-radius: var(--r-lg); padding: 30px; background: var(--white); transition: border-color .2s, transform .2s; }
.res-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.res-card-type {
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 14px;
}
.res-card h3 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 10px; line-height: 1.35; }
.res-card p { font-size: .85rem; color: var(--grey-600); line-height: 1.6; margin-bottom: 18px; }
.res-card-link { font-size: .8rem; font-weight: 600; color: var(--navy-light); display: inline-flex; align-items: center; gap: 6px; }
.res-card-link svg { width: 14px; height: 14px; }

/* ── ABOUT PAGE · SUBNAV + SECTIONS ──────────────────────── */
.about-subnav {
  position: sticky; top: 68px; z-index: 40; background: var(--white);
  border-bottom: 1px solid var(--grey-200); display: flex; gap: 4px; overflow-x: auto;
}
.about-subnav .container { display: flex; gap: 4px; }
.about-subnav a {
  padding: 18px 20px; font-size: .82rem; font-weight: 600; color: var(--grey-400);
  border-bottom: 2px solid transparent; white-space: nowrap; transition: color .2s, border-color .2s;
}
.about-subnav a:hover { color: var(--navy); }
.about-subnav a.active { color: var(--navy); border-bottom-color: var(--gold); }
.about-block { padding: 100px 0; border-bottom: 1px solid var(--grey-200); }
.about-block:last-child { border-bottom: none; }
.about-block-alt { background: var(--grey-50); }
.about-block-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.value-card { padding: 28px; border: 1px solid var(--grey-200); border-radius: var(--r-md); }
.value-card-icon { width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--gold-pale); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.value-card-icon svg { width: 20px; height: 20px; color: var(--gold); }
.value-card h4 { font-size: .95rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p { font-size: .84rem; color: var(--grey-600); line-height: 1.6; }
.careers-placeholder {
  text-align: center; padding: 64px 40px; border: 1px dashed var(--grey-200); border-radius: var(--r-lg); margin-top: 40px;
}
.careers-placeholder svg { width: 36px; height: 36px; color: var(--gold); margin: 0 auto 20px; }
.careers-placeholder h4 { font-family: var(--ff-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 10px; }
.careers-placeholder p { color: var(--grey-600); font-size: .9rem; max-width: 440px; margin: 0 auto; }

/* ── CONTACT PAGE ─────────────────────────────────────────── */
.contact-page-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact-channels { display: flex; flex-direction: column; gap: 2px; margin-top: 32px; }
.contact-channel {
  display: flex; align-items: center; gap: 18px; padding: 20px; border: 1px solid var(--grey-200);
  transition: border-color .2s, background .2s;
}
.contact-channel:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
.contact-channel:last-child { border-radius: 0 0 var(--r-md) var(--r-md); }
.contact-channel + .contact-channel { border-top: none; }
.contact-channel:hover { border-color: var(--gold); background: var(--grey-50); }
.contact-channel-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm); background: var(--grey-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-channel-icon svg { width: 20px; height: 20px; color: var(--navy-light); }
.contact-channel-text .label { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--grey-400); font-family: var(--ff-mono); }
.contact-channel-text .value { font-size: .92rem; font-weight: 600; color: var(--navy); margin-top: 2px; }
.contact-form-panel { background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--r-lg); padding: 40px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 600; color: var(--navy); }
.field select,
.field input, .field textarea {
  padding: 12px 14px; border: 1px solid var(--grey-200); border-radius: var(--r-sm);
  font-family: var(--ff-body); font-size: .88rem; color: var(--grey-800); background: var(--white);
  transition: border-color .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }
.form-msg {
  display: none; margin-top: 16px; padding: 14px 16px; background: var(--gold-pale); color: var(--navy);
  border-radius: var(--r-sm); font-size: .84rem; text-align: center;
}
.form-msg.show { display: block; }
.map-placeholder {
  margin-top: 56px; height: 320px; border-radius: var(--r-lg); background: var(--grey-100);
  display: flex; align-items: center; justify-content: center; flex-direction: column; gap: 10px;
  border: 1px solid var(--grey-200); color: var(--grey-400);
}
.map-placeholder svg { width: 32px; height: 32px; color: var(--gold); }
.map-placeholder span { font-family: var(--ff-mono); font-size: .75rem; letter-spacing: .06em; text-transform: uppercase; }

/* ── FOOTER · EXTRA LEGAL LINE (registration placeholders) ─ */
.footer-legal {
  display: flex; gap: 28px; flex-wrap: wrap;
  font-size: .72rem; color: rgba(255,255,255,.25); margin-top: 10px;
}
.footer-legal span strong { color: rgba(255,255,255,.4); font-weight: 500; }
.footer-links.footer-brand-col { max-width: 260px; }

/* ── PRODUCT ACCENT: LEANPRO (secondary accent within same system) ─ */
/* LeanPro pages reuse every DASH SCM token 1:1. This single accent
   variable lets LeanPro-specific highlights read as its own product
   line without introducing a second design language. */
.accent-steel { color: var(--steel-accent, #6E8FB8); }
:root { --steel-accent: #6E8FB8; }

/* ── GENERIC TAG CHIP (used across Industries / Case Studies) ── */
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 100px; background: var(--grey-100); color: var(--navy-light);
}

/* ── RESPONSIVE — EXTENDED COMPONENTS ────────────────────── */
@media (max-width: 1024px) {
  .nav-dropdown { display: none; }
  .portfolio-card { grid-template-columns: 1fr; text-align: left; gap: 16px; }
  .company-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .ind-panel-grid { grid-template-columns: 1fr; gap: 40px; }
  .cs-grid, .res-grid { grid-template-columns: repeat(2, 1fr); }
  .about-block-grid { grid-template-columns: 1fr; gap: 40px; }
  .value-grid { grid-template-columns: 1fr 1fr; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 48px; }
  .svc-detail-row { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .company-strip-item { border-left: none; padding-left: 0; }
  .company-strip-grid { grid-template-columns: 1fr 1fr; }
  .cs-grid, .res-grid, .value-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 130px 0 70px; }
  .ind-tabs { overflow-x: auto; flex-wrap: nowrap; }
}

/* ═══════════════════════════════════════════════════════════
   DASH TECHNOLOGIES — SITE UPGRADE ADDENDUM
   KPI cards, comparison cards, trust section, product meta,
   screenshot placeholders, accessibility & footer legal links.
   Same tokens, same visual language — no new palette.
   ═══════════════════════════════════════════════════════════ */

/* ── ACCESSIBILITY: SKIP LINK + FOCUS STATES ─────────────── */
.skip-link {
  position: absolute; left: -999px; top: auto;
  background: var(--gold); color: var(--navy-deep); padding: 12px 20px;
  z-index: 1000; font-weight: 700; font-size: .85rem; border-radius: var(--r-sm);
}
.skip-link:focus {
  left: 16px; top: 16px;
}
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ── KPI / BUSINESS OUTCOME CARDS ─────────────────────────── */
.kpi-outcome-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.kpi-outcome-card {
  background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--r-lg);
  padding: 32px 28px; position: relative; overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s;
}
.kpi-outcome-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(11,31,58,.1); border-color: var(--gold); }
.kpi-outcome-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--gold);
  transform: scaleY(0); transform-origin: top; transition: transform .35s var(--ease-out);
}
.kpi-outcome-card:hover::before { transform: scaleY(1); }
.kpi-outcome-icon {
  width: 48px; height: 48px; border-radius: var(--r-sm); background: var(--gold-pale);
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.kpi-outcome-icon svg { width: 22px; height: 22px; color: var(--gold); }
.kpi-outcome-num { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 10px; }
.kpi-outcome-num .counter { color: var(--navy); }
.kpi-outcome-card h4 { font-size: .98rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.kpi-outcome-card p { font-size: .85rem; color: var(--grey-600); line-height: 1.6; }

/* ── INDUSTRY GRID (homepage summary version) ────────────── */
.industry-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.industry-mini-card {
  background: var(--grey-50); border: 1px solid var(--grey-200); border-radius: var(--r-md);
  padding: 26px 20px; text-align: center; transition: border-color .25s, background .25s, transform .25s;
}
.industry-mini-card:hover { border-color: var(--gold); background: var(--white); transform: translateY(-3px); }
.industry-mini-icon {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy-deep);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px;
}
.industry-mini-icon svg { width: 20px; height: 20px; color: var(--gold); }
.industry-mini-card h4 { font-size: .88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.industry-mini-card p { font-size: .74rem; color: var(--grey-500); line-height: 1.5; }

/* ── WHY DASH · COMPARISON TABLE ─────────────────────────── */
.compare-wrap {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--grey-200);
}
.compare-col { padding: 44px 40px; }
.compare-col.old { background: var(--grey-50); }
.compare-col.dash { background: var(--navy-deep); position: relative; overflow: hidden; }
.compare-col-label {
  font-family: var(--ff-mono); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase;
  display: inline-block; margin-bottom: 20px; padding: 5px 12px; border-radius: 100px;
}
.compare-col.old .compare-col-label { background: var(--grey-200); color: var(--grey-600); }
.compare-col.dash .compare-col-label { background: var(--gold); color: var(--navy-deep); position: relative; z-index: 2; }
.compare-col h3 { font-family: var(--ff-display); font-size: 1.5rem; margin-bottom: 24px; position: relative; z-index: 2; }
.compare-col.old h3 { color: var(--navy); }
.compare-col.dash h3 { color: var(--white); }
.compare-list { display: flex; flex-direction: column; gap: 16px; position: relative; z-index: 2; }
.compare-item { display: flex; align-items: center; gap: 12px; font-size: .92rem; }
.compare-col.old .compare-item { color: var(--grey-600); }
.compare-col.dash .compare-item { color: rgba(255,255,255,.75); }
.compare-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.compare-col.old .compare-item svg { color: var(--grey-400); }
.compare-col.dash .compare-item svg { color: var(--gold); }
@media (max-width: 900px) { .compare-wrap { grid-template-columns: 1fr; } }

/* ── TRUST & CREDIBILITY ─────────────────────────────────── */
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-card { padding: 30px; text-align: left; }
.trust-card-icon {
  width: 50px; height: 50px; border-radius: var(--r-sm); background: rgba(200,151,58,.1);
  border: 1px solid rgba(200,151,58,.2); display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.trust-card-icon svg { width: 22px; height: 22px; color: var(--gold); }
.trust-card h4 { color: var(--white); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.trust-card p { color: rgba(255,255,255,.55); font-size: .85rem; line-height: 1.65; }

/* ── PRODUCT PAGE: SCREENSHOT + META GRID ────────────────── */
.product-screenshot {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(200,151,58,.2);
  box-shadow: 0 40px 90px rgba(0,0,0,.35); position: relative;
}
.product-screenshot-placeholder {
  aspect-ratio: 16/10; background: linear-gradient(135deg, var(--navy-deep), #0F2A44);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
  color: rgba(255,255,255,.3); position: relative; overflow: hidden;
}
.product-screenshot-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(200,151,58,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(200,151,58,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.product-screenshot-placeholder svg { width: 40px; height: 40px; color: var(--gold); position: relative; z-index: 2; }
.product-screenshot-placeholder span {
  font-family: var(--ff-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; position: relative; z-index: 2;
}
.product-meta-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; margin-top: 56px; background: var(--grey-200); border-radius: var(--r-md); overflow: hidden; }
.product-meta-item { background: var(--grey-50); padding: 28px 24px; }
.product-meta-item .label { font-family: var(--ff-mono); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 10px; }
.product-meta-item .value { font-size: .88rem; color: var(--navy); font-weight: 600; line-height: 1.5; }
.product-outcomes-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.product-outcome-item { display: flex; gap: 12px; align-items: flex-start; }
.product-outcome-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.product-outcome-item span { font-size: .9rem; color: var(--grey-600); line-height: 1.6; }

/* ── CONTACT: ACTION BUTTON ROW + MAP EMBED ──────────────── */
.contact-action-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.map-embed { margin-top: 56px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--grey-200); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ── FOOTER: LEGAL LINKS ──────────────────────────────────── */
.footer-legal { align-items: center; }
.footer-legal a { color: rgba(255,255,255,.35); text-decoration: underline; text-underline-offset: 2px; }
.footer-legal a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 14px; }
.footer-social a {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center; transition: border-color .2s, background .2s;
}
.footer-social a:hover { border-color: var(--gold); background: rgba(200,151,58,.1); }
.footer-social svg { width: 15px; height: 15px; color: rgba(255,255,255,.6); }

/* ── SIMPLE LEGAL PAGE (Privacy / Terms) ─────────────────── */
.legal-body { padding: 90px 0 120px; max-width: 780px; }
.legal-body h2 { font-family: var(--ff-display); font-size: 1.5rem; color: var(--navy); margin: 40px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: .92rem; color: var(--grey-600); line-height: 1.75; }
.legal-body ul { padding-left: 20px; margin: 12px 0; }
.legal-body .updated { font-family: var(--ff-mono); font-size: .72rem; color: var(--grey-400); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 40px; display: block; }

/* ── RESPONSIVE — UPGRADE ADDENDUM ───────────────────────── */
@media (max-width: 1024px) {
  .kpi-outcome-grid { grid-template-columns: 1fr 1fr; }
  .industry-mini-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .product-meta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .kpi-outcome-grid, .industry-mini-grid, .trust-grid, .product-meta-grid { grid-template-columns: 1fr; }
  .compare-col { padding: 32px 24px; }
}
