/* =========================
   KENILVERSE HOME PAGE
   Pixel-faithful to design
========================= */

:root {
  --kv-teal: #006D68;
  --kv-teal-dark: #005550;
  --kv-teal-light: #e6f5f4;
  --kv-accent-green: #2DD4BF;
  --kv-navy: #0B1A2E;
  --kv-text: #334155;
  --kv-text-muted: #64748b;
  --kv-border: #e2e8f0;
  --kv-bg: #ffffff;
  --kv-bg-alt: #f8fafc;
  --kv-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
  --kv-shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.1);
  --kv-radius: 8px;
  --kv-radius-lg: 12px;
  --kv-max: 1200px;
}

body.home-page {
  background: var(--kv-bg);
  color: var(--kv-text);
}

/* =========================
   NAVBAR — 3-column layout
========================= */

/* .home-page .navbar,
.home-page .home-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 48px;
  height: 72px;
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--kv-border);
  width: 100%;
} */

/* .home-page .navbar .logo,
.home-page .home-navbar .logo {
  flex-shrink: 0;
} */

.kv-logo-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.kv-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--kv-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  border-radius: 6px;
  letter-spacing: -0.5px;
}

.kv-logo-text {
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-teal);
  letter-spacing: 2px;
}

.home-page .navbar .logo img,
.home-page .home-navbar .logo img {
  width: 110px;
  height: auto;
}

.home-page .navbar .nav-links,
.home-page .home-navbar .nav-links {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.home-page .nav-links a {
  font-size: 12px;
  font-weight: 500;
  color: var(--kv-text-muted);
  padding: 4px 0;
  position: relative;
  background: transparent !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.home-page .nav-links a.active {
  background: transparent;
  color: var(--kv-teal);
  padding: 4px 0;
  border-radius: 0;
  box-shadow: none;
}

.home-page .nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--kv-teal);
  border-radius: 2px;
}

.home-page .nav-links a:hover {
  color: var(--kv-teal);
}

.home-nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: var(--kv-teal);
  color: #fff !important;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.25s;
  justify-self: end;
}

.home-nav-cta:hover {
  background: var(--kv-teal-dark);
  color: #fff !important;
}

.home-nav-cta-mobile { display: none !important; }
.home-nav-cta-desktop { display: inline-flex; }

/* =========================
   UTILITIES
========================= */

.kv-container {
  width: 100%;
  max-width: var(--kv-max);
  margin: 0 auto;
  padding: 0 24px;
}

.kv-section {
  padding: 40px 0;
}

.kv-section-alt {
  background: var(--kv-bg-alt);
}

.kv-teal { color: var(--kv-teal); }

.kv-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s;
  text-decoration: none;
}

.kv-btn-primary {
  background: var(--kv-teal);
  color: #fff;
  border-color: var(--kv-teal);
}

.kv-btn-primary:hover {
  background: var(--kv-teal-dark);
  border-color: var(--kv-teal-dark);
  color: #fff;
}

.kv-btn-outline {
  background: #035a5b;
  color: #fff;
  border-color: var(--kv-teal);
}

.kv-btn-outline:hover {
  background: var(--kv-teal-light);
  color: #035a5b;
}

/* Section headers */
.kv-section-head {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

.kv-section-head-center {
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.kv-section-num-large {
  min-width: unset;
  width: auto;
  height: auto;
  background: transparent;
  color: var(--kv-teal);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 800;
  border-radius: 0;
  line-height: 1;
  margin-bottom: 4px;
}

.kv-section-head-left {
  flex-direction: row;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.kv-section-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  background: var(--kv-teal);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  flex-shrink: 0;
}

.kv-section-title {
  font-size: clamp(28px, 3.5vw, 25px);
  font-weight: 700;
  color: var(--kv-navy);
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.kv-section-title-left {
  text-align: left;
  margin-bottom: 8px;
}

.kv-section-subtitle {
  color: var(--kv-text-muted);
  font-size: 16px;
  line-height: 1.6;
  max-width: 600px;
}

.kv-section-subtitle-left {
  text-align: left;
  margin: 0;
}

.kv-section-head-center .kv-section-subtitle {
  margin: 0px auto 0;
}

/* =========================
   HERO
========================= */

.kv-hero {
  padding: 64px 0 80px;
  background: #fff;
}

.kv-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 56px;
  align-items: center;
}

.kv-hero-content h1 {
  font-size: clamp(34px, 4.2vw, 50px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--kv-navy);
  letter-spacing: -1.2px;
  margin-bottom: 18px;
}

.kv-hero-sub {
  font-size: 18px;
  color: var(--kv-text-muted);
  margin-bottom: 32px;
}

.kv-hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Dashboard */
.kv-dashboard {
  background: var(--kv-navy);
  border-radius: var(--kv-radius-lg);
  padding: 24px;
  box-shadow: var(--kv-shadow-lg);
  color: #fff;
}

.kv-dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.kv-dashboard-header span {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  font-weight: 500;
}

.kv-dashboard-dots { display: flex; gap: 6px; }
.kv-dashboard-dots i {
  width: 9px; height: 9px;
  border-radius: 50%;
  display: block;
}
.kv-dashboard-dots i:nth-child(1) { background: #ef4444; }
.kv-dashboard-dots i:nth-child(2) { background: #f59e0b; }
.kv-dashboard-dots i:nth-child(3) { background: #22c55e; }

.kv-dash-metrics {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.kv-dash-metric {
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
  padding: 16px;
}

.kv-dash-metric label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}

.kv-dash-metric strong {
  display: block;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 2px;
}

.kv-dash-sub {
  display: block;
  font-size: 11px;
  color: var(--kv-accent-green);
  margin-bottom: 10px;
}

.kv-dash-chart { width: 100%; height: 40px; }
.kv-dash-chart svg { width: 100%; height: 100%; }

.kv-dash-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.kv-dash-stat {
  text-align: center;
  padding: 18px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
}

.kv-dash-stat label {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 6px;
}

.kv-dash-stat strong {
  display: block;
  font-size: 30px;
  font-weight: 800;
  color: var(--kv-accent-green);
  line-height: 1;
}

.kv-dash-vs {
  display: block;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-top: 4px;
}

.kv-gauge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px;
  background: rgba(255,255,255,0.06);
  border-radius: 12px;
}

.kv-gauge-wrap label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.kv-gauge {
  width: 88px;
  height: 88px;
  position: relative;
}

.kv-gauge svg { width: 100%; height: 100%; }

.kv-gauge-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.kv-gauge-value {
  font-size: 20px;
  font-weight: 800;
  color: var(--kv-accent-green);
  line-height: 1;
}

.kv-gauge-vs {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  margin-top: 2px;
}

/* =========================
   PROCESS FLOW
========================= */

.kv-process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  position: relative;
}

.kv-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  padding: 0 10px;
}

.kv-process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 38px);
  width: calc(100% - 76px);
  height: 2px;
  background: repeating-linear-gradient(90deg, #cbd5e1 0, #cbd5e1 4px, transparent 4px, transparent 9px);
  z-index: 0;
}

.kv-process-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--kv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--kv-text-muted);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.kv-process-step h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
  line-height: 1.3;
  margin-bottom: 6px;
}

.kv-process-step p {
  font-size: 12px;
  color: var(--kv-text-muted);
  line-height: 1.5;
  max-width: 140px;
}

.kv-process-step.active .kv-process-icon {
  background: var(--kv-teal);
  border-color: var(--kv-teal);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0,109,104,0.35);
}

.kv-process-step.active h4 { color: var(--kv-teal); }

.kv-framework-flow .kv-process-icon {
  background: var(--kv-teal-light);
  border-color: transparent;
  color: var(--kv-teal);
}

.kv-framework-flow .kv-process-step:hover .kv-process-icon {
  background: var(--kv-teal);
  color: #fff;
}

/* =========================
   VS COMPARISON
========================= */

.kv-vs-section { position: relative; }

.kv-vs-wrapper {
  position: relative;
}

.kv-vs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.kv-vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  background: var(--kv-teal);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  z-index: 5;
  box-shadow: 0 4px 16px rgba(0, 109, 104, 0.35);
  border: 4px solid #fff;
}

.kv-journey-card {
  background: #fff;
  border-radius: var(--kv-radius-lg);
  overflow: hidden;
  box-shadow: var(--kv-shadow);
  border: 1px solid var(--kv-border);
}

.kv-journey-header {
  padding: 18px 24px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.kv-journey-header.navy { background: var(--kv-navy); text-align: center; }
.kv-journey-header.teal { background: var(--kv-teal); text-align: center; }

.kv-journey-body { padding: 28px 20px 24px; }

.kv-journey-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 22px;
}

.kv-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 58px;
}

.kv-journey-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--kv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: var(--kv-text-muted);
  margin-bottom: 6px;
}

.kv-journey-step span {
  font-size: 10px;
  font-weight: 600;
  color: var(--kv-text);
  line-height: 1.2;
  max-width: 64px;
}

.kv-journey-arrow {
  font-size: 10px;
  color: #cbd5e1;
  padding: 0 2px;
  margin-bottom: 18px;
}

.kv-journey-card.teal-card .kv-journey-step-icon {
  background: var(--kv-teal-light);
  border-color: transparent;
  color: var(--kv-teal);
}

.kv-journey-desc {
  font-size: 13px;
  color: var(--kv-text-muted);
  line-height: 1.7;
  border-top: 1px solid var(--kv-border);
  padding-top: 18px;
  text-align: center;
}

/* =========================
   METRIC CARDS
========================= */

.kv-metrics-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.kv-metric-card {
  background: #fff;
  border: 1px solid var(--kv-border);
  border-radius: var(--kv-radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--kv-shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.kv-metric-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--kv-shadow-lg);
}

.kv-metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--kv-teal-light);
  color: var(--kv-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin: 0 auto 16px;
}

.kv-metric-value {
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 600;
  color: var(--kv-teal);
  margin-bottom: 5px;
  line-height: 1.1;
}

.kv-metric-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 8px;
}

.kv-metric-desc {
  font-size: 12px;
  color: var(--kv-text-muted);
  line-height: 1.5;
}

/* =========================
   FINAL CTA
========================= */

.kv-final-cta { background: var(--kv-bg-alt); }

.kv-final-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.kv-final-text h2 {
  font-size: clamp(28px, 3.2vw, 36px);
  font-weight: 700;
  color: var(--kv-navy);
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.kv-final-sub {
  font-size: 16px;
  color: var(--kv-text-muted);
  line-height: 1.6;
  margin-top: 16px;
  padding-left: 60px;
}

.kv-audit-card {
  background: #fff;
  border-radius: var(--kv-radius-lg);
  padding: 32px 28px;
  box-shadow: var(--kv-shadow-lg);
  border: 1px solid var(--kv-border);
}

.kv-audit-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.kv-audit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--kv-teal-light);
  color: var(--kv-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.kv-audit-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--kv-navy);
}

.kv-checklist {
  list-style: none;
  margin-bottom: 24px;
}

.kv-checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 0;
  font-size: 15px;
  color: var(--kv-text);
  border-bottom: 1px solid var(--kv-border);
}

.kv-checklist li:last-child { border-bottom: none; }

.kv-checklist li i {
  color: var(--kv-teal);
  flex-shrink: 0;
}

.kv-audit-card .kv-btn-primary {
  width: 100%;
  justify-content: center;
}

/* =========================
   FOOTER
========================= */

.kv-footer { background: #fff; }

.kv-trust-section {
  padding: 40px 0 40px;
  text-align: center;
}

.kv-trust-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--kv-text-muted);
  margin-bottom: 28px;
  text-transform: uppercase;
}

.kv-trust-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px 48px;
}

.kv-trust-logo {
  font-size: 15px;
  font-weight: 600;
  color: #94a3b8;
  filter: grayscale(1);
  opacity: 0.75;
  letter-spacing: 0.3px;
}

.kv-footer-bar {
  background: var(--kv-teal);
  padding: 18px 0;
}

.kv-footer-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  color: rgba(255,255,255,0.9);
  font-size: 13px;
}

.kv-footer-links { display: flex; gap: 24px; }

.kv-footer-links a {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
}

.kv-footer-links a:hover { color: #fff; }

.kv-popup-trigger-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* =========================
   RESPONSIVE
========================= */

.kv-footer-divider {
  color: rgba(255, 255, 255, 0.5);
  margin: 0 4px;
}

@media (max-width: 1100px) {
  /* .home-page .navbar,
  .home-page .home-navbar {
    display: flex;
    padding: 0 18px;
  } */

  .home-nav-cta-desktop { display: none !important; }

  .kv-metrics-grid { grid-template-columns: repeat(3, 1fr); }

  .kv-process-step:not(:last-child)::after { display: none; }

  .kv-journey-flow { gap: 4px; }

  .kv-journey-step { min-width: 50px; }
}

@media (max-width: 768px) {


  
  .kv-section { padding: 52px 0; }

  .kv-hero { padding: 36px 0 52px; }

  .kv-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .kv-hero-btns { flex-direction: column; }
  .kv-hero-btns .kv-btn { width: 100%; justify-content: center; }

  .kv-section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .kv-section-head-center { align-items: center; }

  .kv-process-flow {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }

  .kv-process-step {
    flex-direction: row;
    text-align: left;
    gap: 16px;
    padding: 0;
    max-width: 100%;
  }

  .kv-process-icon { flex-shrink: 0; margin-bottom: 0; }

  .kv-process-step p { max-width: none; text-align: left; }

  .kv-vs-grid { grid-template-columns: 1fr; gap: 20px; }

  .kv-vs-badge {
    position: relative;
    top: auto; left: auto;
    transform: none;
    margin: -8px auto;
  }

  .kv-journey-flow {
    flex-direction: column;
    align-items: stretch;
  }

  .kv-journey-arrow {
    transform: rotate(90deg);
    margin: 0 auto;
  }

  .kv-journey-step {
    flex-direction: row;
    text-align: left;
    gap: 12px;
    min-width: auto;
    width: 100%;
  }

  .kv-journey-step-icon { margin-bottom: 0; flex-shrink: 0; }

  .kv-metrics-grid { grid-template-columns: 1fr 1fr; }

  .kv-final-grid { grid-template-columns: 1fr; gap: 28px; }

  .kv-final-sub { padding-left: 0; }

  .kv-footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .home-nav-cta-mobile {
    display: inline-flex !important;
    width: 100%;
    justify-content: center;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .kv-metrics-grid { grid-template-columns: 1fr; }

  .kv-dash-metrics,
  .kv-dash-bottom { grid-template-columns: 1fr; }
}

/* Hide global footer override on home page */
body.home-page footer.kv-footer {
  text-align: center;
  padding: 0 !important;
  color: inherit;
  font-size: inherit;
  background: #fff;
  border-top: none;
}

/* =========================
   WHY PAGE
========================= */

.why-page {
  --kv-teal: #008a8a;
  --kv-teal-dark: #006d68;
  --kv-teal-light: #f0f9f9;
  --kv-navy: #0a1f44;
  --kv-text: #23396e;
  --kv-text-muted: #64748b;
  --kv-bg-alt: #f8fafc;
}

.why-page .kv-logo-mark {
  background: var(--kv-navy);
}

.why-page .kv-logo-text,
.why-page .kv-section-title,
.why-page .kv-why-hero-content h1 {
  color: var(--kv-navy);
}

/* Hero */
.kv-why-hero {
  padding: 40px 0 40px;
  background-color: var(--kv-bg-alt);
  /* background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px); */
  background-size: 20px 20px;
}

.kv-why-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 48px;
  align-items: center;
}

.kv-why-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--kv-teal);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.kv-why-hero-content h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 18px;
}

.kv-why-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--kv-text-muted);
  margin-bottom: 28px;
  max-width: 480px;
}

/* Hero nodes diagram */
.kv-why-nodes {
  position: relative;
  width: 100%;
  aspect-ratio: 520 / 380;
}

.kv-why-nodes-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.kv-why-center {
  position: absolute;
  left: 33.65%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.kv-why-center-circle {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 28px rgba(10, 31, 68, 0.08);
}

.kv-why-node {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3;
  transform: translate(-22px, -50%); /* -22px aligns 44px icon center with left % coordinate */
}

.kv-why-node-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--kv-teal);
  background: #fff;
  color: var(--kv-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 138, 138, 0.08);
}

.kv-why-node-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kv-why-node-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-navy);
  line-height: 1.2;
}

.kv-why-node-text span {
  font-size: 12px;
  color: var(--kv-text-muted);
  line-height: 1.3;
  white-space: nowrap;
}

.kv-why-node-1 { left: 71.15%; top: 16.32%; }
.kv-why-node-2 { left: 75.96%; top: 31.05%; }
.kv-why-node-3 { left: 77.88%; top: 50%; }
.kv-why-node-4 { left: 75.96%; top: 68.95%; }
.kv-why-node-5 { left: 71.15%; top: 83.68%; }

/* Comparison */
.kv-why-compare {
  padding: 40px 0;
}

.kv-why-compare-wrap {
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 32px;
  align-items: stretch;
}

.kv-why-compare-main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--kv-border, #e2e8f0);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.03);
  padding: 32px;
}

.kv-why-compare-main::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 50%;
  width: 1px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.kv-why-compare-main .kv-vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #cbd5e1;
  color: var(--kv-navy);
  font-size: 13px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(10, 31, 68, 0.08);
}

.kv-why-compare-card {
  background: transparent;
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.kv-why-compare-header {
  display: inline-block;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  margin: 0 auto 20px;
  text-align: center;
  width: fit-content;
}

.kv-why-compare-header-red {
  background: #fef2f2;
  color: #dc2626;
}

.kv-why-compare-header-teal {
  background: var(--kv-teal-light);
  color: var(--kv-teal);
}

.kv-why-compare-list {
  list-style: none;
  padding: 0;
}

.kv-why-compare-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--kv-text);
  border-bottom: 1px solid #f1f5f9;
}

.kv-why-compare-list li:last-child {
  border-bottom: none;
}

.kv-why-x,
.kv-why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

.kv-why-x {
  background: #ef4444; /* solid red fill */
  color: #ffffff;      /* white cross */
}

.kv-why-check {
  background: var(--kv-teal); /* solid teal fill */
  color: #ffffff;             /* white checkmark */
}

.kv-why-check-small {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--kv-teal); /* solid teal fill */
  color: #ffffff;             /* white checkmark */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  flex-shrink: 0;
}

.kv-why-footer-check {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--kv-teal); /* solid teal fill */
  color: #ffffff;             /* white checkmark */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  flex-shrink: 0;
}

/* Outcome Chart Card */
.kv-why-outcome-card {
  background: #fff;
  border: 1px solid var(--kv-border, #e2e8f0);
  border-radius: 12px;
  padding: 24px 20px;
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.kv-why-outcome-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
  text-align: center;
  margin-bottom: 18px;
}

.kv-why-outcome-chart {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: flex-end;
}

.kv-why-chart-main {
  position: relative;
  height: 120px;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-around;
  padding: 0 10px;
}

.kv-why-bar {
  width: 32px;
  border-radius: 6px 6px 2px 2px;
  min-height: 10px;
  z-index: 2;
}

.kv-why-bar-grey {
  background: #cbd5e1;
}

.kv-why-bar-teal {
  background: linear-gradient(180deg, #2DD4BF 0%, var(--kv-teal) 100%);
}

.kv-why-chart-arrow-svg {
  position: absolute;
  inset: 0;
  width: 80%;
  height: 90%;
  pointer-events: none;
  z-index: 1;
}

.kv-why-chart-labels {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top: 12px;
  padding: 0 5px;
}

.kv-why-chart-labels span {
  font-size: 10px;
  font-weight: 600;
  color: var(--kv-text-muted);
  text-align: center;
  line-height: 1.25;
  flex: 1;
}

/* Process */
.kv-why-process {
  padding: 40px 0;
}

.kv-why-process-flow {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 16px;
}

.kv-why-process-box {
  flex: 1;
  max-width: 300px;
  background: #fff;
  border: 1px solid var(--kv-border);
  border-radius: var(--kv-radius-lg);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--kv-shadow);
}

.kv-why-process-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kv-teal-light);
  color: var(--kv-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.kv-why-process-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.kv-why-process-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  text-align: left;
}

.kv-why-process-items span {
  font-size: 12px;
  color: var(--kv-text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.kv-why-process-items span i {
  color: #fff;
  font-size: 10px;
}

.kv-why-process-box-highlight {
  background: var(--kv-teal-light) !important;
  border: 1px solid #ccfbf1 !important;
}

.kv-why-process-box-highlight p {
  font-size: 13px;
  color: var(--kv-text-muted);
  line-height: 1.6;
  text-align: left;
}

.kv-why-process-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  flex-shrink: 0;
  font-size: 22px;
  color: #94a3b8;
  font-weight: 300;
}

/* Flywheel */
.kv-why-flywheel {
  padding: 40px 0;
}

.kv-why-flywheel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.kv-why-flywheel-diagram {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  aspect-ratio: 1;
}

.kv-why-flywheel-svg {
  width: 100%;
  height: 100%;
}

.kv-why-flywheel-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--kv-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.kv-why-fw-node {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  width: 125px;
}

.kv-why-fw-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kv-teal-light);
  border: 2px solid var(--kv-teal);
  color: var(--kv-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.kv-why-fw-node span {
  font-size: 10px;
  font-weight: 700;
  color: var(--kv-navy);
  line-height: 1.25;
}

.kv-why-fw-node-1 { left: -4%; top: 12%; }
.kv-why-fw-node-2 { right: -4%; top: 12%; }
.kv-why-fw-node-3 { right: -4%; bottom: 18%; }
.kv-why-fw-node-4 { bottom: -4%; left: 50%; transform: translateX(-50%); }
.kv-why-fw-node-5 { left: -4%; bottom: 18%; }

.kv-why-flywheel-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.kv-why-flywheel-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.kv-why-feature-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--kv-teal); /* solid teal fill */
  color: #ffffff;             /* white checkmark */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 138, 138, 0.15);
}

.kv-why-flywheel-feature h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 6px;
}

.kv-why-flywheel-feature p {
  font-size: 14px;
  color: var(--kv-text-muted);
  line-height: 1.6;
}

/* Values */
.kv-why-values {
  padding: 40px 0 40px;
}

.kv-why-values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--kv-border, #e2e8f0);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.02);
  padding: 24px 12px;
}

.kv-why-value-card {
  text-align: center;
  padding: 16px 20px;
  border-right: 1px solid #e2e8f0;
}

.kv-why-value-card:last-child {
  border-right: none;
}

.kv-why-value-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--kv-teal);
  background: #fff;
  color: var(--kv-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
  box-shadow: 0 4px 10px rgba(0, 138, 138, 0.08);
}

.kv-why-value-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 8px;
  line-height: 1.35;
}

.kv-why-value-card p {
  font-size: 12px;
  color: var(--kv-text-muted);
  line-height: 1.55;
}

/* Footer CTA */
.kv-why-footer-cta {
  background: #fff;
  padding: 40px 0;
}

.kv-why-footer-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 32px;
  align-items: center;
  background: var(--kv-teal-light, #f0f9f9);
  border: 1px solid #ccfbf1;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 138, 138, 0.03);
}

.kv-why-footer-cta-text h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--kv-navy);
  line-height: 1.25;
  letter-spacing: -0.4px;
}

.kv-why-footer-checklist {
  list-style: none;
}

.kv-why-footer-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  color: var(--kv-text);
}

.kv-why-footer-checklist li i {
  color: #fff;
  font-size: 12px;
}

.kv-why-footer-cta-action {
  text-align: center;
}

.kv-why-cta-btn {
  width: 100%;
  justify-content: center;
  border-radius: 8px;
  padding: 15px 24px;
}

.kv-why-footer-cta-action p {
  font-size: 12px;
  color: var(--kv-text-muted);
  margin-top: 10px;
}

/* Trusted Logos Footer section */
.kv-trust-logos {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.kv-trust-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #94a3b8;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}

.kv-trust-logo:hover {
  opacity: 1;
}

.kv-trust-logo i {
  font-size: 24px;
  color: #64748b;
}

.kv-trust-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.kv-trust-logo-text .logo-main {
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: #475569;
}

.kv-trust-logo-text .logo-sub {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 1.5px;
  color: #94a3b8;
  margin-top: 2px;
}

/* Why page responsive */
@media (max-width: 1100px) {
  .kv-why-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .kv-why-nodes {
    max-width: 480px;
    margin: 0 auto;
  }

  .kv-why-compare-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .kv-why-outcome-card {
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
  }

  .kv-why-values-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kv-why-value-card {
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .kv-why-value-card:nth-child(4),
  .kv-why-value-card:nth-child(5) {
    border-bottom: none;
  }

  .kv-why-footer-cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
    padding: 32px;
  }

  .kv-why-footer-checklist li {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .kv-why-hero {
    padding: 48px 0 56px;
  }

  .kv-why-compare-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px;
  }

  .kv-why-compare-main::before {
    display: none;
  }

  .kv-why-compare-main .kv-vs-badge {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -12px auto;
  }

  .kv-why-process-flow {
    flex-direction: column;
    align-items: center;
  }

  .kv-why-process-box {
    max-width: 100%;
    width: 100%;
  }

  .kv-why-process-plus {
    transform: rotate(90deg);
    height: 28px;
    margin: 4px 0;
  }

  .kv-why-flywheel-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .kv-why-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kv-why-value-card {
    border: none;
    border-bottom: 1px solid #e2e8f0;
  }

  .kv-why-value-card:nth-child(2n) {
    border-left: 1px solid #e2e8f0;
  }

  .kv-why-value-card:nth-child(4),
  .kv-why-value-card:nth-child(5) {
    border-bottom: none;
  }

  /* Clear absolute positions on mobile diagram nodes */
  .kv-why-node {
    position: relative;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    margin-bottom: 16px;
    justify-content: flex-start;
  }

  .kv-why-node:last-child {
    margin-bottom: 0;
  }

  .kv-why-nodes {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: auto;
    padding-left: 12%;
    aspect-ratio: auto;
  }

  .kv-why-nodes-svg,
  .kv-why-center {
    display: none;
  }

  .kv-trust-logos {
    justify-content: center;
    gap: 20px 32px;
  }
}

@media (max-width: 480px) {
  .kv-why-values-grid {
    grid-template-columns: 1fr;
  }

  .kv-why-value-card {
    border-left: none !important;
    border-bottom: 1px solid #e2e8f0 !important;
  }

  .kv-why-value-card:last-child {
    border-bottom: none !important;
  }

  .kv-why-process-items {
    grid-template-columns: 1fr;
  }

  .kv-why-nodes {
    padding-left: 0;
    align-items: center;
  }
}

/* ==========================================================================
   ENGAGEMENT PAGE REDESIGN
   ========================================================================== */

/* Hero Section */
.kv-eng-hero {
  padding: 40px 0 40px;
  background-color: var(--kv-bg-alt, #f8fafc);
  /* background-image: radial-gradient(#cbd5e1 1.2px, transparent 1.2px); */
  background-size: 20px 20px;
}

.kv-eng-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.kv-eng-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--kv-teal, #008a8a);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.kv-eng-hero-content h1 {
  font-size: clamp(32px, 3.8vw, 44px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.8px;
  color: var(--kv-navy, #0a1f44);
  margin-bottom: 18px;
}

.kv-eng-hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--kv-text-muted, #64748b);
  margin-bottom: 32px;
  max-width: 520px;
}

/* Trust Features Row */
.kv-eng-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 24px;
  margin-bottom: 36px;
}

.kv-eng-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.kv-eng-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--kv-teal-light, #f0f9f9);
  color: var(--kv-teal, #008a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  border: 1px solid #ccfbf1;
}

.kv-eng-feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kv-eng-feature-text strong {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--kv-navy, #0a1f44);
}

.kv-eng-feature-text span {
  font-size: 12px;
  color: var(--kv-text-muted, #64748b);
  line-height: 1.35;
}

.kv-eng-hero-cta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.kv-eng-cta-sub {
  font-size: 13.5px;
  font-weight: 500;
  color: #3b82f6;
  text-decoration: underline;
  transition: color 0.2s;
}

.kv-eng-cta-sub:hover {
  color: #2563eb;
}

/* Right Column: Dashboard Card */
.kv-eng-dashboard-card {
  background: #fff;
  border: 1px solid var(--kv-border, #e2e8f0);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.05);
}

.kv-eng-dashboard-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--kv-navy, #0a1f44);
  margin-bottom: 24px;
}

.kv-eng-metrics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.kv-eng-metric-box {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: 0 2px 8px rgba(10, 31, 68, 0.01);
}

.metric-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--kv-text-muted, #64748b);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.metric-val {
  font-size: 24px;
  font-weight: 700;
  margin: 6px 0;
  line-height: 1.15;
}

.text-red { color: #ef4444; }
.text-blue { color: #3b82f6; }
.text-green { color: #10b981; }

.metric-desc {
  font-size: 10px;
  color: var(--kv-text-muted, #64748b);
  font-weight: 500;
}

.text-teal { color: var(--kv-teal, #008a8a) !important; font-weight: 600 !important; }

.sparkline-container {
  height: 30px;
  margin-top: 10px;
  width: 100%;
}

.sparkline-container svg {
  width: 100%;
  height: 100%;
}

.metric-gauge-box {
  align-items: center;
  text-align: center;
  justify-content: center;
}

.gauge-wrapper {
  width: 100px;
  height: 65px;
  margin: 8px 0;
}

.gauge-wrapper svg {
  width: 100%;
  height: 100%;
}

/* Card Bottom Columns */
.kv-eng-card-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 28px;
  border-top: 1px solid #f1f5f9;
  padding-top: 24px;
}

.opportunity-areas h4,
.roi-projection-box h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--kv-navy, #0a1f44);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.opportunity-areas ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.opportunity-areas ul li {
  font-size: 13px;
  color: var(--kv-text, #23396e);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.opportunity-areas ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kv-teal, #008a8a);
  flex-shrink: 0;
}

.roi-chart-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.roi-num {
  display: flex;
  flex-direction: column;
}

.roi-num strong {
  font-size: 26px;
  font-weight: 700;
  color: var(--kv-teal, #008a8a);
  line-height: 1.1;
}

.roi-num span {
  font-size: 10px;
  color: var(--kv-text-muted, #64748b);
  font-weight: 500;
}

.roi-bar-chart {
  width: 80px;
  height: 50px;
  flex-shrink: 0;
}

.roi-bar-chart svg {
  width: 100%;
  height: 100%;
}

/* Process Section */
.kv-eng-process {
  padding: 40px 0;
}

.kv-eng-process-timeline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-top: 48px;
}

.kv-eng-process-step {
  flex: 1;
  text-align: center;
  position: relative;
}

.kv-eng-process-step .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--kv-teal, #008a8a);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 16px;
}

.kv-eng-process-step .step-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff;
  color: var(--kv-navy, #0a1f44);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
  border: 2px solid var(--kv-navy, #0a1f44); /* navy outline to match design */
  box-shadow: none;
  transition: all 0.3s ease;
}

.kv-eng-process-step:hover .step-icon {
  color: var(--kv-teal, #008a8a);
  border-color: var(--kv-teal, #008a8a);
}

.kv-eng-process-step h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--kv-navy, #0a1f44);
  margin-bottom: 8px;
  line-height: 1.35;
}

.kv-eng-process-step p {
  font-size: 12.5px;
  color: var(--kv-text-muted, #64748b);
  line-height: 1.55;
  padding: 0 10px;
}

.kv-eng-process-arrow {
  flex-grow: 0.3;
  height: 2px;
  border-bottom: 2px dotted var(--kv-teal, #008a8a); /* teal dotted arrow line */
  margin-top: 70px; /* perfectly vertically aligned with center of 60px icon circle */
  position: relative;
  min-width: 30px;
}

.kv-eng-process-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid var(--kv-teal, #008a8a); /* teal arrowhead pointing right */
}

/* Walk Away Section */
.kv-eng-walkaway {
  padding: 40px 0;
}

.kv-eng-walkaway-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.kv-eng-walkaway-card {
  background: #fff;
  border: 1px solid var(--kv-border, #e2e8f0);
  border-radius: 12px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(10, 31, 68, 0.015);
  transition: transform 0.2s, box-shadow 0.2s;
}

.kv-eng-walkaway-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(10, 31, 68, 0.04);
}

.kv-eng-walkaway-card .card-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--kv-teal-light, #f0f9f9);
  color: var(--kv-teal, #008a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 16px;
}

.kv-eng-walkaway-card .card-icon.text-red {
  background: #fef2f2;
  color: #ef4444;
}

.kv-eng-walkaway-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-navy, #0a1f44);
  margin-bottom: 10px;
  line-height: 1.35;
}

.kv-eng-walkaway-card p {
  font-size: 12px;
  color: var(--kv-text-muted, #64748b);
  line-height: 1.6;
}

/* Fit Section */
.kv-eng-fit {
  padding: 40px 0;
}

.kv-eng-fit-main {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--kv-border, #e2e8f0);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.03);
  padding: 40px;
}

.kv-eng-fit-main::before {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 1px;
  background: #e2e8f0;
  transform: translateX(-50%);
}

.kv-eng-fit-main .kv-vs-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  border: 1px solid #cbd5e1;
  color: var(--kv-navy, #0a1f44);
  font-size: 13px;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(10, 31, 68, 0.08);
}

.kv-eng-fit-column {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.fit-header {
  display: inline-block;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 700;
  border-radius: 20px;
  margin: 0 auto 24px;
  text-align: center;
  width: fit-content;
}

.fit-header-red {
  background: #fef2f2;
  color: #dc2626;
}

.fit-header-teal {
  background: var(--kv-teal-light, #f0f9f9);
  color: var(--kv-teal, #008a8a);
}

.kv-eng-fit-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.kv-eng-fit-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  font-size: 14px;
  color: var(--kv-text, #23396e);
  border-bottom: 1px solid #f1f5f9;
}

.kv-eng-fit-list li:last-child {
  border-bottom: none;
}

/* Achievements Section */
.kv-eng-achieve {
  padding: 40px 0;
}

.kv-eng-achieve-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--kv-border, #e2e8f0);
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.02);
  padding: 32px 16px;
  gap: 0;
}

.kv-eng-achieve-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 8px 24px;
  border-right: 1px solid #e2e8f0;
}

.kv-eng-achieve-item:last-child {
  border-right: none;
}

.achieve-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--kv-teal-light, #f0f9f9);
  color: var(--kv-teal, #008a8a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.achieve-text {
  display: flex;
  flex-direction: column;
}

.achieve-text strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--kv-teal, #008a8a); /* teal values per design image */
  line-height: 1.2;
}

.achieve-text span {
  font-size: 13px;
  color: var(--kv-navy, #0a1f44); /* navy labels per design image */
  font-weight: 600;
  white-space: nowrap;
}

/* Timeline Section */
.kv-eng-timeline {
  padding: 40px 0;
}

.kv-eng-timeline-flow {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 56px;
  padding: 0 20px;
}

.kv-eng-timeline-line {
  position: absolute;
  top: 24px;
  left: 32px;
  right: 32px;
  height: 2px;
  background: var(--kv-teal, #008a8a); /* green/teal timeline line to match design */
  z-index: 1;
}

.kv-eng-timeline-node {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 2;
}

.node-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--kv-teal, #008a8a);
  color: var(--kv-teal, #008a8a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0, 138, 138, 0.1);
  transition: all 0.3s ease;
}

.kv-eng-timeline-node:hover .node-circle {
  background: var(--kv-teal, #008a8a);
  color: #fff;
}

.kv-eng-timeline-node h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--kv-navy, #0a1f44);
  margin-bottom: 8px;
}

.kv-eng-timeline-node p {
  font-size: 12px;
  color: var(--kv-text-muted, #64748b);
  line-height: 1.6;
  padding: 0 6px;
}

/* FAQ Section */
.kv-eng-faq {
  padding: 40px 0;
}

.kv-eng-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 32px;
  margin-top: 40px;
}

.kv-faq-item {
  background: #fff;
  border: 1px solid var(--kv-border, #e2e8f0);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.kv-faq-item[open] {
  border-color: var(--kv-teal, #008a8a);
  box-shadow: 0 4px 15px rgba(0, 138, 138, 0.04);
}

.kv-faq-summary {
  padding: 18px 24px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--kv-navy, #0a1f44);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}

.kv-faq-summary::-webkit-details-marker {
  display: none;
}

.kv-faq-summary::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: var(--kv-text-muted, #64748b);
  transition: transform 0.3s ease;
}

.kv-faq-item[open] .kv-faq-summary::after {
  transform: rotate(180deg);
  color: var(--kv-teal, #008a8a);
}

.kv-faq-content {
  padding: 0 24px 20px;
  font-size: 13.5px;
  color: var(--kv-text-muted, #64748b);
  line-height: 1.65;
  border-top: 1px solid #f8fafc;
  padding-top: 12px;
}

/* Footer CTA section */
.kv-eng-footer-cta {
  background: #fff;
  padding: 40px 0 40px;
}

.kv-eng-footer-cta-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--kv-navy, #0a1f44);
  border-radius: 16px;
  padding: 48px 56px;
  box-shadow: 0 10px 30px rgba(10, 31, 68, 0.1);
  color: #fff;
}

.kv-eng-footer-cta-left h2 {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.5px;
}

.kv-eng-footer-cta-left .text-teal {
  color: var(--kv-teal, #008a8a) !important;
}

.kv-eng-footer-cta-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.kv-eng-footer-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.kv-eng-footer-trust span {
  font-size: 12px;
  font-weight: 500;
  color: #e2e8f0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.kv-eng-footer-trust span i {
  color: var(--kv-teal, #008a8a);
  font-size: 14px;
}

.kv-eng-footer-cta-right .kv-btn {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 8px;
  margin-bottom: 10px;
}

.kv-eng-footer-cta-right .cta-subtext {
  font-size: 12px;
  color: #94a3b8;
}

/* Responsive Overrides */

@media (max-width: 1100px) {
  .kv-eng-hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .kv-eng-dashboard-card {
    max-width: 540px;
    margin: 0 auto;
  }

  .kv-eng-process-timeline {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .kv-eng-walkaway-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .kv-eng-fit-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .kv-eng-fit-main::before {
    display: none;
  }

  .kv-eng-fit-main .kv-vs-badge {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    margin: -12px auto;
  }

  .kv-eng-achieve-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px 0;
  }

  .kv-eng-achieve-item:nth-child(3) {
    border-right: none;
  }

  .kv-eng-timeline-flow {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px 16px;
    display: grid;
  }

  .kv-eng-timeline-line {
    display: none;
  }

  .kv-eng-faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .kv-eng-hero {
    padding: 48px 0 56px;
  }

  .kv-eng-features {
    grid-template-columns: 1fr;
  }

  .kv-eng-hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    text-align: center;
  }

  .kv-eng-process-timeline {
    flex-direction: column;
    align-items: center;
  }

  .kv-eng-process-arrow {
    transform: none;
    width: 2px;
    height: 30px;
    border-bottom: none;
    border-left: 2px dotted var(--kv-teal, #008a8a); /* vertical dotted line on mobile */
    margin: 16px auto;
    margin-right: 155px;
  }

  .kv-eng-process-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    right: auto;
    top: 30px;
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 6px solid var(--kv-teal, #008a8a); /* pointing down */
  }


  
  .kv-eng-walkaway-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kv-eng-achieve-grid {
    grid-template-columns: 1fr 1fr;
  }

  .kv-eng-achieve-item {
    border-right: none;
    border-bottom: 1px solid #f1f5f9;
  }

  .kv-eng-achieve-item:nth-child(even) {
    border-left: 1px solid #f1f5f9;
  }

  .kv-eng-achieve-item:nth-child(5) {
    border-bottom: none;
  }

  /* Vertical timeline for mobile */
  .kv-eng-timeline-flow {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left: 36px;
    gap: 28px;
  }

  .kv-eng-timeline-node {
    text-align: left;
    display: flex;
    gap: 16px;
    align-items: flex-start;
  }

  .node-circle {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .kv-eng-timeline-node h3 {
    margin-bottom: 4px;
  }

  .kv-eng-timeline-node p {
    padding: 0;
  }

  /* Add a vertical line for the vertical timeline */
  .kv-eng-timeline-flow::before {
    content: '';
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 58px;
    width: 2px;
    background: var(--kv-teal, #008a8a); /* green/teal vertical line on mobile */
    z-index: 1;
  }

  .kv-eng-footer-cta-card {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 28px;
  }
}

@media (max-width: 480px) {
  .kv-eng-walkaway-grid {
    grid-template-columns: 1fr;
  }

  .kv-eng-achieve-grid {
    grid-template-columns: 1fr;
  }

  .kv-eng-achieve-item {
    border: none !important;
    border-bottom: 1px solid #f1f5f9 !important;
  }

  .kv-eng-achieve-item:last-child {
    border-bottom: none !important;
  }
}
/* ==========================================
   HOW IT WORKS PAGE - CUSTOM PREMIUM CSS
   ========================================== */

/* Preserve How It Works page background & text colors while using home-page header */
body.how-it-works-body {
    background: #edf4fb !important;
    color: #0d1b4c !important;
}

/* Nav booking button styling (responsive matching index page) */
.home-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 11px 22px;
    background: #0065ae;
    color: #fff !important;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.25s;
    box-shadow: 0 4px 15px rgba(0, 101, 174, 0.2);
}

.home-nav-cta:hover {
    background: #00adf0;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 173, 240, 0.3);
}

.home-nav-cta-mobile { display: none !important; }
.home-nav-cta-desktop { display: inline-flex; }

@media (max-width: 768px) {
    .home-nav-cta-desktop { display: none !important; }
    .home-nav-cta-mobile {
        display: inline-flex !important;
        width: 100%;
        justify-content: center;
        margin-top: 15px;
        padding: 12px 20px;
        border-radius: 8px;
    }
}

/* How It Works Container */
.how-works-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 40px 24px;
    color: #0d1b4c;
}

/* 1. HERO SECTION */
.how-works-hero {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 40px;
    align-items: center;
    padding: 40px 0;
}

.hero-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-badge-pill {
    background: rgba(0, 173, 240, 0.1);
    color: #0065ae;
    border: 1px solid rgba(0, 173, 240, 0.2);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1.15;
    color: #0d1b4c;
    margin-bottom: 20px;
}

.hero-title span {
    color: #006D68;
    background: #006D68;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 18px;
    line-height: 1.6;
    color: #606b85;
    margin-bottom: 35px;
}

.hero-bullets-row {
    display: flex;
    gap: 24px;
    width: 100%;
    border-top: 1px solid #eef2f7;
    padding-top: 24px;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
}

.bullet-item i {
    color: #00b894;
    font-size: 16px;
}

/* Winding Roadmap Visual */
.hero-graphic-col {
    position: relative;
    width: 100%;
    height: 480px;
}

.roadmap-svg-container {
    width: 100%;
    height: 100%;
}

/* Winding Roadmap Milestone Pins & Nodes */
.roadmap-milestone {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 135px;
    transform: translateX(-50%);
    z-index: 10;
    transition: all 0.3s ease;
    cursor: pointer;
}

.roadmap-milestone:hover {
    transform: translateX(-50%) translateY(-5px);
}

.milestone-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid #00b894;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    color: #0d1b4c;
    font-size: 16px;
    transition: all 0.3s ease;
}

.roadmap-milestone:hover .milestone-circle {
    color: #ffffff !important;
    box-shadow: 0 8px 20px rgba(0, 101, 174, 0.2);
}

.roadmap-milestone:hover:nth-child(even) .milestone-circle { background: #0065ae !important; }
.roadmap-milestone:hover:nth-child(odd) .milestone-circle { background: #00b894 !important; }
/* Custom hovers matching the theme border colors */
.node-milestone-1:hover .milestone-circle { background: #00b894 !important; }
.node-milestone-2:hover .milestone-circle { background: #0065ae !important; }
.node-milestone-3:hover .milestone-circle { background: #e17055 !important; }
.node-milestone-4:hover .milestone-circle { background: #9b59b6 !important; }
.node-milestone-5:hover .milestone-circle { background: #f1c40f !important; }

.milestone-text {
    margin-top: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.milestone-num {
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.node-milestone-1 .milestone-num { color: #00b894; }
.node-milestone-2 .milestone-num { color: #0065ae; }
.node-milestone-3 .milestone-num { color: #e17055; }
.node-milestone-4 .milestone-num { color: #9b59b6; }
.node-milestone-5 .milestone-num { color: #f1c40f; }

.milestone-title {
    font-size: 11px;
    font-weight: 700;
    color: #0d1b4c;
    line-height: 1.25;
}

/* Connector lines from card to road base */
.node-pin {
    position: absolute;
    width: 2px;
    border-left: 2px dashed rgba(0, 101, 174, 0.2);
    z-index: 5;
    transform: translateX(-50%);
}

.node-dot-base {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #00adf0;
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(0, 173, 240, 0.5);
    z-index: 6;
    transform: translate(-50%, -50%);
}

/* Precise positioning based on road coordinates */
.node-milestone-1 { left: 15%; top: 38%; }
.pin-1 { left: 15%; top: 60%; height: 26.6%; }
.dot-1 { left: 15%; top: 86.6%; }

.node-milestone-2 { left: 32.5%; top: 20%; }
.pin-2 { left: 32.5%; top: 42%; height: 22.4%; }
.dot-2 { left: 32.5%; top: 64.4%; }

.node-milestone-3 { left: 47.5%; top: 10%; }
.pin-3 { left: 47.5%; top: 32%; height: 22.4%; }
.dot-3 { left: 47.5%; top: 54.4%; }

.node-milestone-4 { left: 62.5%; top: 2%; }
.pin-4 { left: 62.5%; top: 24%; height: 14.9%; }
.dot-4 { left: 62.5%; top: 38.9%; }

.node-milestone-5 { left: 81.25%; top: -10%; }
.pin-5 { left: 81.25%; top: 12%; height: 12.4%; }
.dot-5 { left: 81.25%; top: 24.4%; }


/* 2. INSIDE EACH STEP SECTION */
.steps-section {
    padding: 40px 0;
}

.sect-title-center {
    font-size: 30px;
    font-weight: 700;
    color: #0d1b4c;
    text-align: center;
    margin-bottom: 40px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.step-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    padding: 24px 18px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 101, 174, 0.08);
}

.step-card-hdr {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}

.step-badge {
    background: #006D68;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 20px;
}

.step-card-title {
    font-size: 13px;
    font-weight: 700;
    color: #0d1b4c;
}

.step-card-sub {
    font-size: 11px;
    color: #606b85;
    margin-bottom: 16px;
    font-weight: 500;
}

/* Card Mockups inside the cards */
.step-mockup-wrapper {
    background: #f8fafc;
    border-radius: 10px;
    height: 160px;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #f0f4f8;
    overflow: hidden;
    position: relative;
}

/* Mockup 1: Campaign Audit dashboard grid */
.mock-audit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 4px;
    height: 100%;
}

.audit-grid-box {
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #eef2f7;
    padding: 6px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.audit-grid-box span {
    font-size: 8px;
    font-weight: 600;
    color: #606b85;
}

.mock-bar-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 20px;
    margin-top: 4px;
}

.mock-bar {
    width: 6px;
    background: #0065ae;
    border-radius: 1px 1px 0 0;
}

.mock-line-chart {
    height: 20px;
    width: 100%;
    margin-top: 4px;
}

/* Mockup 2: Intelligence Report document and circular gauge */
.mock-report-layout {
    display: flex;
    gap: 8px;
    height: 100%;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    border: 1px solid #eef2f7;
}

.report-doc-text {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.report-doc-text h5 {
    font-size: 8px;
    color: #0065ae;
    margin: 0;
}

.report-doc-text h6 {
    font-size: 9px;
    color: #0d1b4c;
    margin: 0;
}

.report-doc-line {
    height: 3px;
    background: #eef2f7;
    border-radius: 2px;
    width: 100%;
}

.report-doc-line.short {
    width: 60%;
}

.report-score-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #f0f4f8;
    padding-left: 4px;
}

.circular-score {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 4px solid #eef2f7;
    border-top-color: #0065ae;
    border-right-color: #0065ae;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: #0065ae;
    margin-bottom: 4px;
}

.score-lbl {
    font-size: 7px;
    text-align: center;
    color: #606b85;
    font-weight: 600;
}

/* Mockup 3: Executive Workshop (Image wrapper) */
.step-mockup-wrapper.img-mockup {
    padding: 0;
}

.step-mockup-wrapper.img-mockup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mockup 4: Optimization Roadmap table */
.mock-opt-table {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 6px;
    border: 1px solid #eef2f7;
    border-collapse: collapse;
    font-size: 8px;
}

.mock-opt-table th {
    background: #f8fafc;
    color: #0d1b4c;
    text-align: left;
    padding: 4px;
    font-weight: 700;
    border-bottom: 1px solid #eef2f7;
}

.mock-opt-table td {
    padding: 4px;
    border-bottom: 1px solid #f8fafc;
    color: #2d3748;
}

.badge-td {
    padding: 2px 5px !important;
    border-radius: 4px;
    font-size: 7px;
    font-weight: 700;
    display: inline-block;
}

.badge-td.high {
    background: rgba(0, 184, 148, 0.1);
    color: #00b894;
}

.badge-td.med {
    background: rgba(0, 101, 174, 0.1);
    color: #0065ae;
}

.badge-td.low {
    background: #edf2f7;
    color: #606b85;
}

/* Mockup 5: Dark dashboard */
.mock-dark-db {
    background: #0f172a;
    height: 100%;
    border-radius: 8px;
    padding: 8px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dark-db-title {
    font-size: 8px;
    color: #94a3b8;
    font-weight: 600;
}

.dark-db-row {
    display: flex;
    justify-content: space-between;
    gap: 4px;
    margin: 4px 0;
}

.dark-db-stat {
    display: flex;
    flex-direction: column;
}

.dark-db-stat span {
    font-size: 6px;
    color: #64748b;
}

.dark-db-stat strong {
    font-size: 9px;
    color: #38bdf8;
}

.dark-chart-svg {
    width: 100%;
    height: 35px;
}

/* Checklist container inside the cards */
.step-checklist {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-top: 1px solid #eef2f7;
    padding-top: 16px;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    line-height: 1.35;
    color: #2d3748;
}

.checklist-item i {
    color: #00adf0;
    margin-top: 2px;
    font-size: 13px;
}


/* 3. WHAT YOU'LL RECEIVE SECTION */
.receive-section {
    padding: 40px 0;
    background: #f8fafc;
    border-radius: 24px;
    margin: 40px 0;
    padding: 50px 30px;
}

.receive-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.receive-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    padding: 24px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.receive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 101, 174, 0.06);
}

.receive-icon-box {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}

.receive-icon-box i {
    font-size: 20px;
}

/* Color palettes for receive icons */
.receive-card:nth-child(1) .receive-icon-box { background: rgba(58, 115, 255, 0.1); color: #3a73ff; }
.receive-card:nth-child(2) .receive-icon-box { background: rgba(231, 76, 60, 0.1); color: #e74c3c; }
.receive-card:nth-child(3) .receive-icon-box { background: rgba(0, 184, 148, 0.1); color: #00b894; }
.receive-card:nth-child(4) .receive-icon-box { background: rgba(155, 89, 182, 0.1); color: #9b59b6; }
.receive-card:nth-child(5) .receive-icon-box { background: rgba(241, 196, 15, 0.1); color: #f1c40f; }

.receive-title {
    font-size: 15px;
    font-weight: 700;
    color: #0d1b4c;
    margin-bottom: 10px;
}

.receive-desc {
    font-size: 12px;
    color: #606b85;
    line-height: 1.5;
}


/* 4. REAL-TIME INTELLIGENCE / DASHBOARDS SECTION */
.dashboards-section {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 50px;
    align-items: center;
    padding: 40px 0;
}

.dash-badge {
    background: #006D68;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    display: inline-block;
}

.dash-title {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #0d1b4c;
    margin-bottom: 16px;
}

.dash-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: #606b85;
    margin-bottom: 28px;
}

.dash-preview-link {
    color: #0065ae;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.dash-preview-link:hover {
    color: #00adf0;
    transform: translateX(4px);
}

/* KPI Widgets Grid */
.kpi-widgets-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.kpi-widget-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #eef2f7;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

.kpi-lbl {
    font-size: 12px;
    font-weight: 600;
    color: #606b85;
    margin-bottom: 8px;
}

.kpi-val {
    font-size: 28px;
    font-weight: 700;
    color: #0d1b4c;
    margin-bottom: 2px;
}

.kpi-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 16px;
}

.sparkline-svg {
    width: 100%;
    height: 35px;
    overflow: visible;
}

/* Custom donut/semi-donut widget styles */
.donut-widget {
    align-items: center;
    text-align: center;
    justify-content: center;
}

.donut-svg-wrapper {
    position: relative;
    width: 130px;
    height: 75px;
    margin: 0 auto;
}

.donut-val-overlay {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
}

.donut-val-overlay h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0d1b4c;
    margin: 0;
}

.donut-val-overlay span {
    font-size: 9px;
    color: #94a3b8;
}

.donut-caption {
    font-size: 11px;
    font-weight: 700;
    color: #00b894;
    margin-top: 10px;
}


/* 5. ENGAGEMENT TIMELINE SECTION */
.timeline-section {
    padding: 40px 0;
}

.timeline-row-horizontal {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
    padding: 0 20px;
}

.timeline-horizontal-line {
    position: absolute;
    top: 50px;
    left: 6%;
    right: 6%;
    height: 2px;
    border-top: 2px dashed rgba(0, 184, 148, 0.4);
    z-index: 1;
}

.timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
    width: 14%;
}

.timeline-node-day {
    font-size: 13px;
    font-weight: 700;
    color: #006D68;
    margin-bottom: 12px;
}

.timeline-node-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #00b894;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0d1b4c;
    font-size: 16px;
    margin-bottom: 12px;
    box-shadow: 0 4px 10px rgba(0, 184, 148, 0.15);
    transition: all 0.3s ease;
}

.timeline-node:hover .timeline-node-circle {
    transform: scale(1.15);
    background: #00b894;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0, 184, 148, 0.3);
}

.timeline-node-desc {
    font-size: 12px;
    font-weight: 700;
    color: #0d1b4c;
    line-height: 1.3;
}


/* 6. WHY THIS WORKS SECTION */
.why-works-section {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: center;
    padding: 40px 0;
}

.why-works-img-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    height: 380px;
}

.why-works-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Watermark logo overlay */
.why-works-logo-watermark {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.85);
    padding: 6px 14px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.why-works-logo-watermark img {
    height: 16px;
    width: auto;
    object-fit: contain;
}

.why-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.why-pillar-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.pillar-icon-box {
    background: rgba(0, 173, 240, 0.08);
    color: #00adf0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
}

.pillar-content h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0d1b4c;
    margin-bottom: 6px;
}

.pillar-content p {
    font-size: 11.5px;
    color: #606b85;
    line-height: 1.45;
}


/* 7. BOTTOM CTA BANNER */
.cta-banner-container {
    background: linear-gradient(135deg, #091c3f 0%, #030d22 100%);
    border-radius: 24px;
    padding: 50px 60px;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
    box-shadow: 0 20px 50px rgba(9, 28, 63, 0.35);
    position: relative;
    overflow: hidden;
}

/* Background soft decorative glows */
.cta-banner-container::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 173, 240, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-flex-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    z-index: 2;
}

.cta-text-side {
    max-width: 60%;
}

.cta-heading {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.25;
    color: #ffffff;
}

.cta-heading span {
    color: #00c2cb;
    background: linear-gradient(90deg, #00c2cb, #00adf0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-btn-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.cta-main-btn {
    background: #006D68;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 36px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 194, 203, 0.3);
    text-align: center;
    border: none;
    cursor: pointer;
}

.cta-main-btn:hover {
    background: #00adf0;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 173, 240, 0.4);
}

.cta-sub-btn-lbl {
    font-size: 12px;
    color: #a0aec0;
}

.cta-trust-items-row {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: flex-start;
    gap: 40px;
    z-index: 2;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: #cbd5e0;
}

.trust-item i {
    color: #00c2cb;
    font-size: 14px;
}

/* ==========================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================== */

@media (max-width: 1024px) {
    .how-works-hero {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .hero-text-col {
        align-items: center;
    }
    
    .hero-bullets-row {
        justify-content: center;
    }
    
    .hero-graphic-col {
        height: 400px;
    }
    
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .roadmap-milestone {
        width: 105px;
    }
    
    .milestone-circle {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }
    
    .milestone-num {
        font-size: 8px;
    }
    
    .milestone-title {
        font-size: 9.5px;
    }
    
    .receive-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .dashboards-section {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .dash-preview-link {
        justify-content: center;
    }
    
    .why-works-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .why-works-img-box {
        height: 300px;
    }
    
    .cta-flex-row {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }
    
    .cta-text-side {
        max-width: 100%;
    }
    
    .cta-trust-items-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-desc {
        font-size: 16px;
    }
    
    .hero-bullets-row {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-graphic-col {
        display: none; /* Hide SVG roadmap on small viewports, stack step details */
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .receive-grid {
        grid-template-columns: 1fr;
    }
    
    .kpi-widgets-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-row-horizontal {
        flex-direction: column;
        gap: 30px;
        margin-top: 40px;
    }
    
    .timeline-horizontal-line {
        display: none;
    }
    
    .timeline-node {
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        align-items: center;
    }
    
    .timeline-node-day {
        margin-bottom: 0;
        min-width: 60px;
        font-size: 14px;
    }
    
    .timeline-node-circle {
        margin-bottom: 0;
    }
    
    .why-pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-container {
        padding: 30px 24px;
    }
    
    .cta-heading {
        font-size: 24px;
    }
}

/* ==========================================================================
   ECONOMICS PAGE REDESIGN STYLES
   ========================================================================= */

.econ-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    font-family: 'Inter', sans-serif;
    color: #1e293b;
    box-sizing: border-box;
}

.econ-page-container * {
    box-sizing: border-box;
}

/* SECTION 1: HERO & SPEND TO PROFIT */
.econ-hero {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0px;
    align-items: start;
    margin-bottom: 40px;
}

.econ-hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.econ-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 9999px;
    padding: 8px 16px;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}

.econ-pill i {
    font-size: 12px;
}

.econ-hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f172a;
    margin: 0 0 24px 0;
    letter-spacing: -0.02em;
}

.econ-hero-title .highlight-blue {
    color: #006D68;
}

.econ-benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 24px;
    margin-bottom: 24px;
}

.econ-benefit-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.econ-benefit-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #006D68;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    flex-shrink: 0;
}

.econ-benefit-text {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

.econ-hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 16px 0;
    max-width: 600px;
}

.econ-hero-cta {
    margin: 16px 0 32px 0;
}

.econ-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #006D68;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px -1px rgba(37, 99, 235, 0.2);
}

.econ-btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-1px);
}

.econ-btn-primary i {
    font-size: 14px;
    transition: transform 0.2s ease;
}

.econ-btn-primary:hover i {
    transform: translateX(4px);
}

.econ-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 30px;
    border-top: 1px solid #e2e8f0;
    padding-top: 24px;
    margin-top: 36px;
    width: 100%;
}

.econ-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.econ-trust-item > i {
    font-size: 16px;
    color: #64748b;
    width: 20px;
    text-align: center;
    flex-shrink: 0;
}

.econ-trust-item .fa-linkedin {
    color: #0077b5;
}

.trust-icon-stack {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    text-align: center;
    flex-shrink: 0;
}

.trust-icon-stack .fa-dollar-sign {
    font-size: 14px;
    color: #64748b;
}

.trust-icon-stack .fa-slash {
    position: absolute;
    top: 2px;
    left: 2px;
    font-size: 16px;
    color: #ef4444;
}

/* FLOW CHART BOX (Right Side) */
.econ-flow-box {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
}

.econ-flow-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 30px 0;
    text-align: center;
}

.econ-flow-timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-right: 130px;
}

.econ-flow-node {
    display: flex;
    align-items: start;
    gap: 16px;
    position: relative;
    z-index: 2;
}

.econ-node-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #006D68;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    flex-shrink: 0;
    position: relative;
}

/* Connecting arrows between node icons */
.econ-flow-node:not(:last-of-type) .econ-node-icon::after {
    content: "\f063";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    color: #93c5fd;
    font-size: 11px;
    z-index: 5;
}

.econ-node-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 4px 0;
}

.econ-node-content p {
    font-size: 13px;
    color: #64748b;
    margin: 0;
    line-height: 1.4;
}

/* Dotted curve positioning */
.econ-curve-container {
    position: absolute;
    right: 0;
    top: 15px;
    bottom: 15px;
    width: 120px;
    pointer-events: none;
    z-index: 1;
}

.econ-flow-curve {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.econ-curve-badge {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #ffffff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    padding: 8px 10px;
    width: 115px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: center;
    font-size: 10px;
    z-index: 5;
}

.econ-curve-badge strong {
    color: #1d4ed8;
    font-weight: 700;
}

.econ-curve-badge span {
    color: #475569;
}

/* SECTION COMMON STYLING */
.econ-section {
    padding: 40px 0;
    border-top: 1px solid #f1f5f9;
}

.econ-section-header {
    text-align: center;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.econ-section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
    margin: 0 0 12px 0;
    letter-spacing: -0.02em;
}

.econ-section-header p {
    font-size: 16px;
    color: #64748b;
    margin: 0;
}

/* SECTION 2: THE COST OF HIDDEN INEFFICIENCIES */
.econ-ineff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.econ-ineff-card {
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 30px 30px 0 30px;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.03);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.econ-ineff-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.06);
}

.econ-card-header-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.econ-card-top-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.econ-card-top-icon.waste-color {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #ef4444;
}

.econ-card-top-icon.cost-color {
    background-color: #fff5f5;
    border: 1px solid #ffe3e3;
    color: #e53e3e;
}

.econ-card-top-icon.growth-color {
    background-color: #fff5f5;
    border: 1px solid #ffe3e3;
    color: #e53e3e;
}

.econ-ineff-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}

.econ-card-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.econ-card-bullets li {
    position: relative;
    padding-left: 16px;
    font-size: 14px;
    color: #475569;
    font-weight: 500;
}

.econ-card-bullets li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-size: 18px;
    line-height: 1;
    top: -1px;
}

.econ-card-footer {
    margin: 0 -30px;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    border-top: 1px solid #fee2e2;
}

.econ-card-footer.footer-red {
    background-color: #fef2f2;
    color: #ef4444;
}

/* SECTION 3: WHERE EVERY MARKETING DOLLAR GOES */
.econ-comparison-container {
    display: flex;
    align-items: center;
    gap: 16px;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
}

.econ-comp-side {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px 24px 0 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.econ-comp-side h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 30px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.traditional-side h3 {
    color: #ef4444;
}

.kenilverse-side h3 {
    color: #1d4ed8;
}

.econ-horizontal-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 30px;
}

.econ-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: 80px;
    text-align: center;
}

.flow-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
}

.flow-icon.red-text {
    background-color: #fef2f2;
    border: 1px solid #fee2e2;
    color: #ef4444;
}

.flow-icon.blue-text {
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    color: #006D68;
}

.flow-label {
    font-size: 10px;
    font-weight: 700;
    color: #64748b;
    line-height: 1.25;
}

.econ-flow-arrow {
    color: #cbd5e1;
    font-size: 14px;
    align-self: flex-start;
    margin-top: 10px; /* Center-aligned with 36px flow-icon height */
}

.econ-comp-footer {
    margin: 0 -24px;
    padding: 12px 24px;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 8px;
    border-top: 1px solid #e2e8f0;
}

.econ-comp-footer.footer-traditional {
    background-color: #fef2f2;
    color: #ef4444;
    border-top-color: #fee2e2;
}

.econ-comp-footer.footer-kenilverse {
    background-color: #eff6ff;
    color: #1d4ed8;
    border-top-color: #dbeafe;
}

.econ-vs-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: #f1f5f9;
    border: 4px solid #f8fafc;
    color: #475569;
    font-weight: 800;
    font-size: 13px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    z-index: 2;
}

/* SECTION 4: EXECUTIVE ROI DASHBOARD */
.econ-dash-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.econ-dash-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.econ-dash-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.04);
}

.econ-dash-icon-container {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background-color: #eff6ff;
    border: 1px solid #dbeafe;
    color: #006D68;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    flex-shrink: 0;
}

.econ-dash-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.econ-dash-title {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.econ-dash-value {
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
    letter-spacing: -0.01em;
}

.econ-dash-sub {
    font-size: 11px;
    color: #94a3b8;
    margin-bottom: 4px;
    line-height: 1;
}

.econ-dash-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 700;
    color: #16a34a;
}

.econ-dash-note {
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    margin: 24px 0 0 0;
}

/* SECTION 5: BUSINESS IMPACT YOU CAN EXPECT */
.econ-impact {
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 60px 40px;
    margin-top: 40px;
}

.econ-impact-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.econ-impact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.econ-impact-circle {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background-color: #eff6ff;
    border: 2px solid #bfdbfe;
    color: #006D68;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.econ-impact-item:hover .econ-impact-circle {
    transform: scale(1.08);
    border-color: #006D68;
}

.econ-impact-num {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 6px;
}

.econ-impact-title {
    font-size: 15px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
}

.econ-impact-desc {
    font-size: 13px;
    color: #64748b;
    line-height: 1.4;
    margin: 0;
    max-width: 180px;
}

/* SECTION 6: WHAT THIS MEANS FOR LEADERSHIP */
.econ-leadership-box {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: stretch;
    gap: 30px;
    background-color: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.econ-lead-side {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.without-side {
    border-color: #fee2e2;
}

.with-side {
    border-color: #dbeafe;
}

.econ-lead-side h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 24px 0;
}

.without-side h3 {
    color: #dc2626;
}

.with-side h3 {
    color: #1d4ed8;
}

.econ-lead-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.econ-lead-bullets li {
    display: flex;
    align-items: start;
    gap: 12px;
}

.lead-bullet-icon {
    font-size: 16px;
    margin-top: 2px;
    flex-shrink: 0;
}

.lead-bullet-icon.red-text {
    color: #ef4444;
}

.lead-bullet-icon.blue-text {
    color: #006D68;
}

.lead-bullet-text {
    font-size: 14px;
    color: #475569;
    font-weight: 500;
    line-height: 1.4;
}

.econ-lead-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    min-height: 250px;
    width: 60px;
}

.econ-lead-center::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    border-left: 2px dashed #bfdbfe;
    z-index: 1;
}

.econ-center-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    background-color: #eff6ff;
    border: 2px solid #bfdbfe;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #006D68;
    font-size: 22px;
    box-shadow: 0 4px 10px rgba(37, 99, 235, 0.1);
}

/* SECTION 7: EVERY MARKETING BUDGET HAS HIDDEN PROFIT (Footer CTA) */
.econ-footer-cta {
    border-bottom: none;
}

.econ-footer-cta-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.8fr 1.1fr;
    gap: 40px;
    align-items: center;
    background-color: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 50px;
}

.econ-fcta-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.econ-fcta-left h2 {
    font-size: 28px;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.25;
    margin: 0 0 16px 0;
    letter-spacing: -0.01em;
}

.econ-fcta-left p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 24px 0;
}

.econ-fcta-center {
    display: flex;
    justify-content: center;
}

/* Browser Mockup */
.econ-browser-mockup {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    width: 220px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
    position: relative; /* relative positioning to hold magnifying glass zoom overlay */
}

.econ-mockup-header {
    background-color: #f1f5f9;
    border-bottom: 1px solid #e2e8f0;
    padding: 10px 14px;
    display: flex;
    gap: 6px;
}

.mockup-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.mockup-dot.red { background-color: #ef4444; }
.mockup-dot.yellow { background-color: #eab308; }
.mockup-dot.green { background-color: #22c55e; }

.econ-mockup-body {
    padding: 24px 20px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 130px;
}

.mockup-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
}

.chart-bar {
    width: 16px;
    background-color: #dbeafe;
    border-radius: 4px 4px 0 0;
    height: var(--h);
}

.chart-bar.highlight-bar {
    background-color: #006D68;
}

.mockup-zoom {
    position: absolute;
    top: 0;
    left: 55%;
    width: 80px;
    height: 80px;
    pointer-events: none;
    z-index: 10;
}

.magnifier-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
}

.econ-fcta-right {
    display: flex;
    flex-direction: column;
}

.econ-fcta-bullets {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.econ-fcta-bullets li {
    display: flex;
    align-items: center;
    gap: 12px;
}

.fcta-bullet-icon {
    color: #006D68;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.fcta-bullet-text {
    font-size: 13px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
}

/* ==========================================================================
   RESPONSIVENESS MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1024px) {
    .econ-hero {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .econ-flow-box {
        max-width: 500px;
        margin: 0 auto;
        width: 100%;
    }
    
    .econ-curve-container {
        display: none;
    }
    
    .econ-flow-timeline {
        padding-right: 0;
    }
    
    .econ-ineff-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .econ-comparison-container {
        flex-direction: column;
        gap: 24px;
        padding: 30px 20px;
    }
    
    .econ-vs-circle {
        transform: rotate(90deg);
        margin: -5px 0;
    }
    
    .econ-dash-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .econ-impact-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .econ-leadership-box {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .econ-lead-center {
        display: none;
    }
    
    .econ-footer-cta-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 35px 24px;
    }
    
    .econ-fcta-left {
        order: 1;
    }
    
    .econ-fcta-right {
        order: 2;
    }
    
    .econ-fcta-center {
        order: 3;
    }
}

@media (max-width: 768px) {
    .econ-page-container {
        padding: 40px 16px;
    }
    
    .econ-hero-title {
        font-size: 34px;
    }
    
    .econ-benefits-list {
        flex-direction: column;
        gap: 10px;
    }
    
    .econ-trust-indicators {
        flex-direction: column;
        gap: 12px;
    }
    
    .econ-horizontal-flow {
        flex-direction: column;
        gap: 16px;
    }
    
    .econ-flow-arrow {
        transform: rotate(90deg);
        margin-left: 135px;
    }
    
    .econ-comp-footer {
        flex-wrap: wrap;
        gap: 4px 8px;
    }
    
    .econ-dash-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .econ-impact-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .econ-dash-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   DEMAND ENGINE PAGE STYLES
   ========================================================================== */

/* Hero Section */
.de-hero {
  padding: 64px 0 80px;
  background: #ffffff;
}

.de-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.de-hero-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--kv-teal-light);
  color: var(--kv-teal);
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 24px;
}

.de-hero-title {
  font-size: 46px;
  line-height: 1.15;
  color: var(--kv-navy);
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1.2px;
}

.de-hero-title span.de-highlight {
  color: var(--kv-teal);
  font-style: italic;
}

.de-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--kv-text-muted);
  margin-bottom: 18px;
  max-width: 580px;
}

.de-hero-btns {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 32px;
}

.de-btn-play {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-navy);
  cursor: pointer;
  transition: color 0.3s;
}

.de-btn-play:hover {
  color: var(--kv-teal);
}

.de-play-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--kv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-teal);
  font-size: 12px;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
  transition: all 0.3s;
}

.de-btn-play:hover .de-play-icon {
  border-color: var(--kv-teal);
  background: var(--kv-teal-light);
  transform: scale(1.05);
}

/* Road Split Graphic Container */
.de-hero-visual {
  position: relative;
  min-height: 560px;
  background: url('../img/demand_hero_road.jpg') no-repeat center center;
  background-size: cover;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.de-hero-visual::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  pointer-events: none;
  z-index: 1;
}

.de-path-col {
  width: 47%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.de-path-col.left-path {
  align-items: flex-start;
}

.de-path-col.right-path {
  align-items: flex-end;
}

.de-path-pill {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.de-path-pill.red {
  background: #ef4444;
}

.de-path-pill.teal {
  background: #006D68;
}

.de-path-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 15px 0;
}

.de-path-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 12px;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  width: 100%;
}

.de-path-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.de-path-card i {
  font-size: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.left-path .de-path-card i {
  background: #fee2e2;
  color: #ef4444;
}

.right-path .de-path-card i {
  background: var(--kv-teal-light);
  color: var(--kv-teal);
}

.de-path-card span {
  font-size: 12px;
  font-weight: 600;
  color: var(--kv-navy);
}

.de-path-summary {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
  padding: 8px 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  width: 100%;
}

.left-path .de-path-summary {
  border-left: 4px solid #ef4444;
  color: #b91c1c;
}

.right-path .de-path-summary {
  border-left: 4px solid var(--kv-teal);
  color: var(--kv-teal);
}

/* Sections Base */
.de-section {
  padding: 40px 0;
  background: #ffffff;
}

.de-section-alt {
  background: var(--kv-bg-alt);
}

.de-section-title {
  font-size: 25px;
  font-weight: 800;
  color: var(--kv-navy);
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: -0.8px;
}

.de-section-title span.de-underline-red {
  border-bottom: 3.5px solid #ef4444;
  padding-bottom: 2px;
}

/* Hidden Cost Section */
.de-cost-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.de-cost-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--kv-border);
  padding: 28px 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  box-shadow: var(--kv-shadow);
  transition: all 0.3s ease;
}

.de-cost-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kv-shadow-lg);
  border-color: #cbd5e1;
}

.de-cost-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.de-cost-card.tax .de-cost-icon {
  background: #fdf2f8;
  color: #db2777;
}

.de-cost-card.access .de-cost-icon {
  background: #faf5ff;
  color: #7c3aed;
}

.de-cost-card.pipe .de-cost-icon {
  background: #f0f9ff;
  color: #0284c7;
}

.de-cost-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 10px;
}

.de-cost-info .de-cost-stat {
  font-size: 36px;
  font-weight: 800;
  color: #ef4444;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -1px;
}

.de-cost-info p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--kv-text-muted);
}

/* Comparison Section */
.de-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 50px 1fr;
  gap: 16px;
  align-items: center;
}

.de-comp-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--kv-border);
  overflow: hidden;
  box-shadow: var(--kv-shadow);
}

.de-comp-header {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
}

.de-comp-header.bg-navy {
  background: var(--kv-navy);
}

.de-comp-header.bg-teal {
  background: var(--kv-teal);
}

.de-comp-body {
  padding: 17px 24px;
}

.de-comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}

.de-comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13.5px;
  color: var(--kv-text);
  line-height: 1.5;
}

.de-comp-list li i {
  font-size: 15px;
  margin-top: 2px;
  flex-shrink: 0;
}

.de-comp-list li i.color-red {
  color: #ef4444;
}

.de-comp-list li i.color-teal {
  color: var(--kv-accent-green);
}

.de-comp-footer {
  border-top: 1px solid var(--kv-border);
  padding-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.de-comp-footer-text {
  display: flex;
  flex-direction: column;
}

.de-comp-footer-text span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--kv-text-muted);
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.de-comp-footer-text strong {
  font-size: 15px;
  font-weight: 800;
}

.without-engine .de-comp-footer-text strong {
  color: #ef4444;
}

.with-engine .de-comp-footer-text strong {
  color: var(--kv-teal);
}

.de-comp-graph {
  width: 180px;
  height: 50px;
}

.de-vs-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--kv-bg-alt);
  border: 1px solid var(--kv-border);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.05);
  font-size: 12px;
  font-weight: 800;
  color: var(--kv-text-muted);
  z-index: 5;
  margin: 0 auto;
}

/* Ground Up / How it helps */
.de-helps-badge-wrap {
  text-align: center;
  margin-bottom: 16px;
}

.de-helps-badge {
  display: inline-flex;
  padding: 6px 14px;
  background: var(--kv-teal-light);
  color: var(--kv-teal);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.de-helps-sub {
  text-align: center;
  font-size: 15px;
  color: var(--kv-text-muted);
  max-width: 650px;
  margin: -32px auto 48px;
  line-height: 1.5;
}

.de-helps-timeline {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  position: relative;
  margin-top: 32px;
}

.de-helps-timeline::before {
  content: '';
  position: absolute;
  top: 41px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-top: 2px dashed var(--kv-border);
  z-index: 1;
  pointer-events: none;
}

.de-timeline-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.de-timeline-step .step-num {
  font-size: 12px;
  font-weight: 800;
  color: var(--kv-teal);
  margin-bottom: 12px;
}

.de-timeline-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--kv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--kv-teal);
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
  transition: all 0.3s ease;
}

.de-timeline-step:hover .de-timeline-icon {
  border-color: var(--kv-teal);
  background: var(--kv-teal-light);
  transform: scale(1.08);
}

.de-timeline-content {
  margin-top: 14px;
}

.de-timeline-content h4 {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 6px;
}

.de-timeline-content p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--kv-text-muted);
  padding: 0 4px;
}

/* Journey Stage Selector */
.de-journey-track {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.de-journey-step-container {
  display: flex;
  align-items: center;
  flex: 1;
}

.de-journey-step-container:last-child {
  flex: none;
}

.de-stage-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid var(--kv-border);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--kv-shadow);
  position: relative;
  flex: 1;
  transition: all 0.3s ease;
  min-height: 160px;
}

.de-stage-card.active {
  border: 2px solid var(--kv-teal);
  box-shadow: 0 10px 30px rgba(0, 109, 104, 0.08);
}

.de-stage-icon {
  font-size: 18px;
  color: var(--kv-text-muted);
}

.de-stage-card.active .de-stage-icon {
  color: var(--kv-teal);
}

.de-stage-card h4 {
  font-size: 10px;
  font-weight: 700;
  color: var(--kv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}

.de-stage-card.active h4 {
  color: var(--kv-teal);
}

.de-stage-card h3 {
  font-size: 15px;
  font-weight: 800;
  color: var(--kv-navy);
}

.de-stage-card p {
  font-size: 12px;
  line-height: 1.4;
  color: var(--kv-text-muted);
}

.de-stage-badge {
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--kv-teal);
  color: #ffffff;
  font-size: 8px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 109, 104, 0.2);
}

.de-journey-arrow {
  font-size: 14px;
  color: #cbd5e1;
  padding: 0 12px;
  flex-shrink: 0;
}

/* Outcomes Grid */
.de-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.de-outcome-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px 16px;
  border: 1px solid var(--kv-border);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: var(--kv-shadow);
}

.de-outcome-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kv-shadow-lg);
  border-color: #cbd5e1;
}

.de-outcome-icon {
  font-size: 18px;
  color: var(--kv-teal);
  margin-bottom: 14px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--kv-teal-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.de-outcome-card:first-child .de-outcome-icon {
  background: #fee2e2;
  color: #ef4444;
}

.de-outcome-val {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.de-outcome-card:first-child .de-outcome-val {
  color: #ef4444;
}

.de-outcome-card:not(:first-child) .de-outcome-val {
  color: var(--kv-teal);
}

.de-outcome-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 8px;
}

.de-outcome-desc {
  font-size: 11.5px;
  line-height: 1.4;
  color: var(--kv-text-muted);
}

/* Bottom CTA Banner */
.de-bottom-banner {
  background: var(--kv-navy);
  padding: 40px;
  border-radius: 16px;
  margin: 32px 0;
  color: #ffffff;
}

.de-banner-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.de-banner-left h2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.de-banner-left h2 span.de-highlight {
  color: var(--kv-accent-green);
}

.de-banner-middle {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.de-banner-badge-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.de-banner-badge-icon {
  font-size: 15px;
  color: var(--kv-accent-green);
  flex-shrink: 0;
}

.de-banner-badge-info {
  display: flex;
  flex-direction: column;
}

.de-banner-badge-info strong {
  font-size: 12.5px;
  font-weight: 700;
}

.de-banner-badge-info span {
  font-size: 11px;
  color: #94a3b8;
}

.de-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.de-banner-right .kv-btn {
  background: #006d68;
  color: #fff;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  border: none;
}

.de-banner-right .kv-btn:hover {
  background: #006d68;
  color: #fff;
}

.de-banner-right span {
  font-size: 11px;
  color: #94a3b8;
}

/* ==========================================================================
   MEDIA QUERIES FOR DEMAND ENGINE PAGE
   ========================================================================== */
@media (max-width: 1024px) {
  .de-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .de-hero-title {
    font-size: 38px;
  }
  
  .de-cost-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .de-helps-timeline {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  
  .de-helps-timeline::before {
    display: none;
  }
  
  .de-journey-track {
    flex-direction: column;
    gap: 24px;
  }
  
  .de-journey-step-container {
    width: 100%;
  }
  
  .de-journey-arrow {
    display: none;
  }
  
  .de-stage-card {
    min-height: auto;
  }
  
  .de-stage-card.active .de-stage-badge {
    bottom: -11px;
  }
  
  .de-outcomes-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .de-banner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 24px;
  }
  
  .de-banner-middle {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .de-hero-visual {
    background-image: none !important;
    min-height: auto;
    flex-direction: column;
    gap: 24px;
    padding: 0;
    box-shadow: none;
    background: transparent;
  }
  
  .de-hero-visual::before {
    display: none;
  }
  
  .de-path-col {
    width: 100%;
    align-items: stretch !important;
    gap: 12px;
  }
  
  .de-comparison-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .de-vs-circle {
    margin: 12px auto;
  }
  
  .de-helps-timeline {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .de-outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .de-hero-title {
    font-size: 30px;
  }
  
  .de-hero-btns {
    flex-direction: column;
    align-items: stretch;
  }
  
  .de-hero-btns .kv-btn {
    width: 100%;
    justify-content: center;
  }
  
  .de-btn-play {
    justify-content: center;
  }
  
  .de-helps-timeline {
    grid-template-columns: 1fr;
  }
  
  .de-outcomes-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   EXECUTIVE GROWTH ASSESSMENT PAGE STYLE BLOCK
   ========================================================================== */

.ga-hero {
  position: relative;
  padding: 80px 0 100px;
  background: #23575b;
  color: #ffffff;
  overflow: hidden;
}

.ga-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.85;
}

.ga-hero-bg svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ga-hero .kv-container {
  position: relative;
  z-index: 2;
}

.ga-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.ga-hero-badge {
  display: inline-block;
  color: var(--kv-accent-green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ga-hero-title {
  font-size: clamp(34px, 4.5vw, 45px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 24px;
}

.ga-hero-title span {
  color: var(--kv-accent-green);
}

.ga-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #94a3b8;
  margin-bottom: 20px;
  max-width: 400px;
}

.ga-hero-desc span {
  color: var(--kv-accent-green);
  font-weight: 600;
}

.ga-benefits-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
}

.ga-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ga-benefit-icon {
  font-size: 24px;
  color: var(--kv-accent-green);
}

.ga-benefit-title {
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
}

.ga-benefit-text {
  font-size: 12.5px;
  line-height: 1.5;
  color: #bdbdbd;
}

.ga-form-card {
  background: #ffffff;
  border-radius: var(--kv-radius-lg);
  padding: 36px;
  box-shadow: var(--kv-shadow-lg);
  border: 1px solid var(--kv-border);
  color: var(--kv-text);
}

.ga-form-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--kv-navy);
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.3;
}

.ga-form-card .ga-form-sub {
  font-size: 13px;
  color: var(--kv-text-muted);
  text-align: center;
  margin-bottom: 24px;
  line-height: 1.4;
}

.ga-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ga-input-group {
  position: relative;
}

.ga-input-group i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 14px;
}

.ga-input-group input,
.ga-input-group select {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 13.5px;
  font-family: inherit;
  color: var(--kv-text);
  background-color: #f9fafb;
  transition: all 0.2s;
}

.ga-input-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}

.ga-input-group input::placeholder {
  color: #94a3b8;
}

.ga-input-group input:focus,
.ga-input-group select:focus {
  outline: none;
  border-color: var(--kv-teal);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(0, 109, 104, 0.15);
}

.ga-form-btn {
  width: 100%;
  justify-content: center;
  background: var(--kv-teal);
  color: #ffffff;
  border: none;
  font-size: 14.5px;
  font-weight: 700;
  padding: 14px;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ga-form-btn:hover {
  background: var(--kv-teal-dark);
}

.ga-form-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: var(--kv-text-muted);
  margin-top: 14px;
  text-align: center;
}

.ga-form-secure i {
  font-size: 12px;
  color: #94a3b8;
}

.ga-receive-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.ga-receive-card {
  background: #ffffff;
  border: 1px solid var(--kv-border);
  border-radius: 8px;
  padding: 30px 14px;
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 250px;
}

.ga-receive-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--kv-shadow);
  border-color: rgba(0, 109, 104, 0.25);
}

.ga-receive-icon-wrap {
  width: 50px;
  height: 50px;
  background: transparent;
  border: 1px solid rgba(0, 109, 104, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--kv-teal);
  font-size: 18px;
  transition: all 0.3s ease;
}

.ga-receive-card:hover .ga-receive-icon-wrap {
  transform: scale(1.08);
  background: var(--kv-teal);
  border-color: var(--kv-teal);
  color: #ffffff;
}

.ga-receive-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 10px;
  line-height: 1.35;
}

.ga-receive-card p {
  font-size: 12px;
  line-height: 1.55;
  color: var(--kv-text-muted);
  margin: 0;
}

.ga-process-timeline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  margin-top: 50px;
  padding: 0 16px;
}

.ga-process-timeline::before {
  content: '';
  position: absolute;
  top: 18px;
  left: 60px;
  right: 60px;
  height: 2px;
  background-image: linear-gradient(to right, #2DD4BF 50%, transparent 50%);
  background-size: 12px 100%;
  z-index: 1;
}

.ga-process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  padding: 0 10px;
}

.ga-step-num {
  width: 36px;
  height: 36px;
  background: #ffffff;
  border: 2px solid #2DD4BF;
  color: var(--kv-navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(45, 212, 191, 0.15);
}

.ga-step-icon-wrap {
  width: 72px;
  height: 72px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--kv-border);
  box-shadow: var(--kv-shadow);
  color: var(--kv-teal);
  font-size: 24px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.ga-process-step:hover .ga-step-icon-wrap {
  border-color: #2DD4BF;
  box-shadow: 0 4px 16px rgba(45, 212, 191, 0.12);
  color: #2DD4BF;
}

.ga-process-step h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--kv-navy);
  margin-bottom: 8px;
}

.ga-process-step p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--kv-text-muted);
  margin: 0;
  max-width: 180px;
}

.ga-results-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.ga-results-left h2 {
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--kv-navy);
  line-height: 1.25;
  margin-bottom: 36px;
}

.ga-stats-list {
  display: flex;
  flex-direction: row;
  gap: 36px;
  margin-top: 24px;
}

.ga-stat-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.ga-stat-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ga-stat-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-accent-green);
  font-size: 20px;
  flex-shrink: 0;
}

.ga-stat-value {
  font-size: 32px;
  font-weight: 800;
  color: var(--kv-teal);
  line-height: 1.1;
}

.ga-stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--kv-text-muted);
  line-height: 1.45;
}

.ga-quote-card {
  background: #23575b;
  border-radius: var(--kv-radius-lg);
  padding: 44px;
  color: #ffffff;
  position: relative;
  box-shadow: var(--kv-shadow-lg);
}

.ga-quote-mark {
  font-size: 90px;
  color: var(--kv-accent-green);
  line-height: 1;
  font-family: Inter, serif;
  position: absolute;
  top: 15px;
  left: 36px;
  opacity: 0.12;
  pointer-events: none;
}

.ga-quote-text {
  font-size: 15.5px;
  line-height: 1.7;
  color: #e2e8f0;
  margin-bottom: 28px;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.ga-quote-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.ga-quote-avatar {
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-accent-green);
  font-size: 20px;
}

.ga-quote-info {
  display: flex;
  flex-direction: column;
}

.ga-quote-title {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--kv-accent-green);
}

.ga-quote-company {
  font-size: 12px;
  color: #94a3b8;
}

.ga-banner-section {
  /* padding: 40px; */
  background: var(--kv-bg);
}

.ga-banner-card {
  background: #23575b;
  border-radius: var(--kv-radius-lg);
  padding: 40px 48px;
  color: #ffffff;
  box-shadow: var(--kv-shadow-lg);
}

.ga-banner-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.ga-banner-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.ga-banner-icon {
  width: 56px;
  height: 56px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--kv-accent-green);
  flex-shrink: 0;
}

.ga-banner-text h3 {
  font-size: 13px;
  font-weight: 600;
  color: #94a3b8;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ga-banner-text h2 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 700;
  color: #ffffff;
  margin: 0;
}

.ga-banner-text h2 span {
  color: var(--kv-accent-green);
}

.ga-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 320px;
  max-width: 100%;
}

.ga-banner-right .kv-btn {
  width: 370px;
  justify-content: center;
  background: var(--kv-teal);
  color: #fff;
  font-weight: 700;
  border: none;
}

.ga-banner-right .kv-btn:hover {
  background: #1ebaa7;
  color: var(--kv-navy);
}

.ga-banner-subtext {
  font-size: 10.5px;
  color: #94a3b8;
  text-align: center;
  white-space: nowrap;
}

/* ==========================================================================
   MEDIA QUERIES FOR GROWTH ASSESSMENT PAGE
   ========================================================================== */
@media (max-width: 1024px) {
  .ga-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .ga-receive-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  
  .ga-results-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    justify-content: center;
        align-items: center;
        text-align: center; 
  }
  
  .ga-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
  
  .ga-banner-left {
    flex-direction: column;
  }
  
  .ga-banner-right {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .ga-process-timeline {
    flex-direction: column;
    gap: 36px;
    margin-top: 40px;
  }


  .ga-banner-right .kv-btn {
    width: 340px;
    justify-content: center;
    background: var(--kv-teal);
    color: #fff;
    font-weight: 700;
    border: none;
}
  
  .ga-process-timeline::before {
    display: none;
  }
  
  .ga-process-step {
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 0;
  }
  
  .ga-step-num {
    margin-bottom: 0;
    flex-shrink: 0;
  }
  
  .ga-step-icon-wrap {
    margin-bottom: 0;
    width: 56px;
    height: 56px;
    font-size: 20px;
    flex-shrink: 0;
  }
  
  .ga-process-step p {
    max-width: 100%;
  }
  
  .ga-benefits-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .ga-receive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .ga-stats-list {
    flex-direction: column;
    gap: 24px;
            align-items: center;
  }
}

@media (max-width: 480px) {
  .ga-receive-grid {
    grid-template-columns: 1fr;
  }
  
  .ga-form-card {
    padding: 24px;
  }
  
  .ga-banner-card {
    padding: 30px 24px;
  }
  
  .ga-banner-subtext {
    white-space: normal;
    line-height: 1.4;
  }
}

/* ==========================================================================
   GROWTH CHALLENGE PAGE STYLES
   ========================================================================== */

body.home-page .de-section {
  padding: 40px 0;
}

/* Hero Section */
.gc-hero {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.gc-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.gc-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  display: block;
}

.gc-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    102deg,
    #091526 0%,
    #0b1628 24%,
    rgba(11, 22, 40, 0.94) 38%,
    rgba(11, 22, 40, 0.72) 50%,
    rgba(11, 22, 40, 0.38) 62%,
    rgba(11, 22, 40, 0.12) 74%,
    transparent 88%
  );
}

.gc-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 76px 0 84px;
}

.gc-hero-layout {
  display: grid;
  grid-template-columns: minmax(300px, 48%) 1fr;
  align-items: center;
  gap: 48px;
}

.gc-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 560px;
}

.gc-hero-badge {
  display: inline-block;
  color: var(--kv-accent-green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.gc-hero-title {
  font-size: clamp(32px, 4.2vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 22px;
}

.gc-hero-divider {
  width: 56px;
  height: 4px;
  background: var(--kv-accent-green);
  margin-bottom: 26px;
}

.gc-hero-desc {
  font-size: 16px;
  line-height: 1.65;
  color: #cbd5e1;
  margin-bottom: 14px;
  max-width: 500px;
}

.gc-hero-desc.highlight {
  color: var(--kv-accent-green);
  font-weight: 600;
  margin-bottom: 0;
}

.gc-hero-visual {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.gc-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.gc-hero-signpost {
  justify-self: center;
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: min(100%, 360px);
  margin-left: auto;
  margin-right: 8%;
  pointer-events: none;
}

.gc-signpost-arm {
  width: 100%;
  padding: 10px 16px;
  border-radius: 8px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.gc-signpost-arm strong {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.gc-signpost-arm span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  opacity: 0.95;
}

.gc-signpost-arm.left {
  background: rgba(127, 29, 29, 0.82);
  border: 1px solid rgba(248, 113, 113, 0.55);
  color: #fff;
}

.gc-signpost-arm.right {
  background: rgba(0, 109, 104, 0.82);
  border: 1px solid rgba(45, 212, 191, 0.55);
  color: #fff;
}

/* Buying Journey Section */
.gc-section-title-center {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 800;
  color: var(--kv-navy);
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -0.4px;
}

.gc-journey-compare {
  display: grid;
  grid-template-columns: minmax(200px, 0.72fr) 1px minmax(320px, 1.28fr);
  align-items: stretch;
  gap: 24px;
  background: #fff;
  border: 1px solid var(--kv-border);
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: var(--kv-shadow);
  overflow: hidden;
}

.gc-journey-divider {
  width: 1px;
  align-self: stretch;
  background: repeating-linear-gradient(
    to bottom,
    #cbd5e1 0,
    #cbd5e1 5px,
    transparent 5px,
    transparent 10px
  );
  justify-self: center;
}

.gc-journey-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gc-journey-col-wide {
  overflow-x: auto;
  padding-bottom: 4px;
}

.gc-journey-year {
  font-size: 28px;
  font-weight: 800;
  color: var(--kv-teal);
  line-height: 1;
  flex-shrink: 0;
}

.gc-journey-flow {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  min-width: max-content;
}

.gc-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
  flex-shrink: 0;
}

.gc-journey-col-wide .gc-journey-step {
  width: 65px;
}

.gc-journey-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid var(--kv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--kv-teal);
  margin-bottom: 7px;
  box-shadow: 0 4px 6px rgba(15, 23, 42, 0.03);
}

.gc-journey-icon .linkedin-icon {
  color: #0a66c2;
}

.gc-journey-step span {
  font-size: 9px;
  font-weight: 600;
  color: var(--kv-text);
  line-height: 1.2;
}

.gc-journey-col-wide .gc-journey-step span {
  font-size: 8px;
}

.gc-journey-arrow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #94a3b8;
  height: 42px;
  margin-bottom: 22px;
}

.gc-journey-arrow .gc-flow-line {
  width: 10px;
  height: 2px;
  background: #cbd5e1;
  display: inline-block;
}

.gc-journey-arrow i {
  font-size: 9px;
  margin-left: -1px;
}

/* Shared flow connector line */
.gc-flow-line {
  display: inline-block;
  height: 2px;
  background: #cbd5e1;
}

.gc-journey-desc-text {
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: var(--kv-text-muted);
  margin-top: 28px;
}

/* Hidden Trust Tax & Growth Stories (VS cards) */
.gc-vs-grid {
  display: grid;
  grid-template-columns: 1fr 56px 1fr;
  align-items: stretch;
  gap: 16px;
}

.gc-vs-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--kv-shadow);
  border: 1.5px solid var(--kv-border);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.gc-vs-card.red-theme {
  border-color: #fecaca;
  background: #fff5f5;
}

.gc-vs-card.teal-theme {
  border-color: #99f6e4;
  background: #f0fdfa;
}

.gc-vs-card-header {
  padding: 14px 16px;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.gc-vs-card.red-theme .gc-vs-card-header {
  background: #fee2e2;
  color: #dc2626;
}

.gc-vs-card.teal-theme .gc-vs-card-header {
  background: #ccfbf1;
  color: var(--kv-teal);
}

.gc-vs-card-body {
  padding: 28px 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gc-vs-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

.gc-vs-steps-single {
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  padding-bottom: 4px;
  -webkit-overflow-scrolling: touch;
}

.gc-vs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 88px;
  flex-shrink: 0;
}

.gc-vs-steps-single .gc-vs-step {
  width: auto;
  min-width: 85px;
  max-width: 82px;
}

.gc-vs-card.teal-theme .gc-vs-steps-single .gc-vs-step {
  min-width: 65px;
  max-width: 72px;
}

.gc-vs-steps-single .gc-vs-step span {
  font-size: 9px;
}

.gc-vs-steps-single .gc-vs-icon {
  width: 42px;
  height: 42px;
  font-size: 15px;
  margin-bottom: 6px;
}

.gc-vs-card-body:has(.gc-vs-steps-single) {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.gc-vs-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid var(--kv-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  margin-bottom: 8px;
  background: #fff;
}

.gc-vs-card.red-theme .gc-vs-icon {
  color: #ef4444;
  border-color: #fecaca;
}

.gc-vs-card.teal-theme .gc-vs-icon {
  color: var(--kv-teal);
  border-color: #99f6e4;
}

.gc-vs-step span {
  font-size: 10px;
  font-weight: 600;
  color: var(--kv-text);
  line-height: 1.25;
}

.gc-vs-arrow-dashed {
  font-size: 11px;
  color: #94a3b8;
  /* padding-top: 16px; */
  flex-shrink: 0;
}

.gc-vs-arrow-flow {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  color: #94a3b8;
  height: 48px;
  margin-bottom: 20px;
}

.gc-vs-card.red-theme .gc-vs-arrow-flow {
  color: #f87171;
}

.gc-vs-card.teal-theme .gc-vs-arrow-flow {
  color: #2dd4bf;
}

.gc-vs-arrow-flow .gc-flow-line {
  width: 10px;
}

.gc-vs-arrow-flow i {
  font-size: 9px;
  margin-left: -1px;
}

.gc-vs-badge-separator {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--kv-navy);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(11, 26, 46, 0.25);
  margin: auto;
  align-self: center;
}

.gc-vs-result {
  padding: 14px 18px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.gc-vs-card.red-theme .gc-vs-result {
  background: #fecaca;
  color: #991b1b;
}

.gc-vs-card.teal-theme .gc-vs-result {
  background: #99f6e4;
  color: #065f46;
}

.gc-vs-loop {
  position: relative;
  padding: 36px 16px 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 8px;
}

.gc-vs-loop-svg {
  position: absolute;
  top: 0;
  left: 8%;
  width: 84%;
  height: 42px;
}

.gc-vs-loop-btn {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 7px 14px;
  border-radius: 50px;
  background: #fff;
}

.gc-vs-card.red-theme .gc-vs-loop-btn {
  color: #ef4444;
  border: 1px dashed #fca5a5;
}

.gc-vs-card.teal-theme .gc-vs-loop-btn {
  color: var(--kv-teal);
  border: 1px dashed #5eead4;
}

/* Donut Charts Section */
.gc-donut-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.gc-donut-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--kv-border);
  padding: 32px 28px;
  box-shadow: var(--kv-shadow);
}

.gc-donut-card-title {
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.gc-donut-card.red-theme .gc-donut-card-title {
  color: #ef4444;
}

.gc-donut-card.teal-theme .gc-donut-card-title {
  color: var(--kv-teal);
}

.gc-donut-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.gc-donut-chart-wrapper {
  position: relative;
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.gc-donut-chart {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  position: relative;
}

.gc-donut-chart.red-theme {
  background: conic-gradient(
    #ef4444 0deg 234deg,
    #fca5a5 234deg 306deg,
    #991b1b 306deg 360deg
  );
}

.gc-donut-chart.teal-theme {
  background: conic-gradient(
    var(--kv-teal) 0deg 54deg,
    #2dd4bf 54deg 216deg,
    var(--kv-navy) 216deg 360deg
  );
}

.gc-donut-chart::after {
  content: '';
  position: absolute;
  inset: 24px;
  background: #fff;
  border-radius: 50%;
}

.gc-donut-chart-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 28px;
  font-weight: 800;
  color: #ef4444;
  z-index: 1;
}

.gc-donut-chart-number.teal {
  color: var(--kv-teal);
}

.gc-donut-legend {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.gc-donut-legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.gc-donut-legend-color {
  width: 12px;
  height: 12px;
  border-radius: 3px;
  flex-shrink: 0;
}

.gc-donut-legend-val {
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-navy);
  min-width: 38px;
}

.gc-donut-legend-label {
  font-size: 13px;
  color: var(--kv-text-muted);
  font-weight: 500;
}

/* Market Has Shifted (Timeline) */
.gc-market-timeline {
  padding: 12px 0 8px;
}

.gc-market-track {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
}

.gc-market-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
  padding: 0 6px;
}

.gc-market-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 50px;
  color: #cbd5e1;
  font-size: 13px;
}

.gc-market-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #fff;
  border: 1.5px solid #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--kv-navy);
  flex-shrink: 0;
}

.gc-market-year {
  font-size: 16px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 12px 0 8px;
  line-height: 1;
}

.gc-market-node-highlight .gc-market-circle {
  border-color: var(--kv-teal);
  color: var(--kv-teal);
  background: #fff;
}

.gc-market-node-highlight .gc-market-year {
  color: var(--kv-teal);
}

.gc-market-node-highlight .gc-market-desc {
  color: var(--kv-navy);
  font-weight: 600;
}

.gc-market-desc {
  font-size: 12px;
  line-height: 1.5;
  color: var(--kv-text-muted);
  font-weight: 500;
  max-width: 138px;
}

/* Dual Cards Section */
.gc-dual-cards {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 24px;
}

.gc-card-dark {
  background: var(--kv-navy);
  color: #fff;
  border-radius: 18px;
  padding: 40px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  box-shadow: var(--kv-shadow-lg);
}

.gc-card-dark-left {
  flex: 1;
}

.gc-card-badge-green {
  display: inline-block;
  color: var(--kv-accent-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gc-card-dark-left h3 {
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 800;
  line-height: 1.3;
  margin: 0;
}

.gc-card-dark-right {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.gc-card-dark-right svg {
  width: 100%;
  height: 100%;
}

.gc-card-light {
  background: #eef4f8;
  border: 1px solid #dbeafe;
  border-radius: 18px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--kv-shadow);
}

.gc-card-badge-navy {
  display: inline-block;
  color: var(--kv-teal);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.gc-card-light h3 {
  font-size: clamp(20px, 2.4vw, 25px);
  font-weight: 800;
  color: var(--kv-navy);
  margin-bottom: 14px;
  line-height: 1.25;
}

.gc-card-light p {
  color: var(--kv-text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 28px;
}

.gc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-teal);
  text-decoration: none;
  transition: gap 0.2s;
}

.gc-card-link:hover {
  gap: 12px;
}

/* Footer Bottom Bar */
.gc-bottom-bar {
  background: #fff;
  border: 1px solid var(--kv-border);
  border-radius: 14px;
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 20px;
  box-shadow: var(--kv-shadow);
}

.gc-bottom-title {
  font-size: clamp(16px, 2vw, 19px);
  font-weight: 800;
  color: var(--kv-teal);
  margin: 0;
  max-width: 340px;
  line-height: 1.35;
}

.gc-bottom-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.gc-bottom-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid var(--kv-border);
  background: #f8fafc;
  font-size: 12px;
  font-weight: 600;
  color: var(--kv-navy);
}

.gc-bottom-badge i {
  color: var(--kv-teal);
}

.gc-bottom-badge-highlight {
  border-color: var(--kv-teal);
  background: var(--kv-teal-light);
  color: var(--kv-teal);
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .gc-hero-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .gc-hero-signpost {
    margin: 0 auto;
  }

  .gc-journey-compare {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .gc-journey-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
    background: repeating-linear-gradient(
      to right,
      #cbd5e1 0,
      #cbd5e1 6px,
      transparent 6px,
      transparent 12px
    );
  }

  .gc-journey-col,
  .gc-journey-col-wide {
    overflow-x: auto;
  }
}

@media (max-width: 991px) {
  body.home-page .de-section {
    padding: 64px 0;
  }

  .gc-vs-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .gc-vs-badge-separator {
    transform: none;
    margin: 4px auto;
  }

  .gc-donut-grid {
    grid-template-columns: 1fr;
  }

  .gc-dual-cards {
    grid-template-columns: 1fr;
  }

  .gc-bottom-bar {
    flex-direction: column;
    text-align: center;
    align-items: center;
    padding: 24px;
  }

  .gc-bottom-title {
    max-width: 100%;
  }

  .gc-bottom-badges {
    justify-content: center;
  }

  .gc-market-timeline {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
  }

  .gc-market-track {
    min-width: 720px;
    justify-content: flex-start;
    gap: 4px;
  }

  .gc-market-node {
    flex: 0 0 auto;
    width: 130px;
  }}
/* ==========================
   Approach Page Styles
   Matching the provided design
   ==========================
*/
.approach-page{
  padding: 60px 0 100px;
  background: var(--kv-bg);
  color: var(--kv-text);
  text-align: left;
}
.approach-page .container{ max-width:1200px; margin:0 auto; padding:0 24px; }
.approach-page h1{ font-size:40px; color:var(--kv-navy); margin-bottom:8px; }
.approach-page .approach-subtitle{ color:var(--kv-text-muted); font-size:18px; margin-bottom:30px; }

.approach-grid{ display:grid; grid-template-columns:1fr 480px; gap:40px; align-items:start; }

.approach-cards{ display:grid; grid-template-columns:repeat(2,1fr); gap:20px; }
.approach-card{ background:#fff; border-radius:20px; padding:24px; box-shadow:var(--kv-shadow-lg); border:1px solid var(--kv-border); }
.approach-card .step-header{ display:flex; gap:18px; align-items:center; margin-bottom:12px; }
.step-icon{ width:64px; height:64px; border-radius:16px; display:flex; align-items:center; justify-content:center; background:var(--kv-teal-light); color:var(--kv-teal); font-size:26px; box-shadow:0 8px 30px rgba(0,0,0,0.06); }
.step-badge{ display:inline-block; font-size:13px; color:var(--kv-teal); font-weight:700; margin-bottom:6px; }
.approach-card h2{ font-size:20px; color:var(--kv-navy); margin:0; }
.step-description{ color:var(--kv-text-muted); margin:14px 0 18px; }
.deliverables-box small{ display:block; color:var(--kv-text-muted); font-weight:700; margin-bottom:10px; }
.deliverables-grid{ display:flex; gap:24px; }
.deliverables-grid ul{ list-style:none; padding:0; margin:0; color:var(--kv-text); }
.deliverables-grid li{ margin-bottom:8px; }

.distinction-section{ margin-top:40px; }
.distinction-grid{ display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-top:18px; }
.distinction-card{ background:#fff; border-radius:18px; padding:22px; border:1px solid var(--kv-border); box-shadow:var(--kv-shadow); }
.kenilverse-distinction h3{ color:var(--kv-teal); }
.traditional-distinction h3{ color:#e11d48; }

/* CTA strip similar to design */
.approach-cta{ margin:40px 0 0; background:linear-gradient(180deg,#f6faff,#eef5ff); padding:28px; border-radius:18px; display:flex; align-items:center; justify-content:space-between; gap:20px; border:1px solid var(--kv-border); }
.approach-cta .cta-left h2{ margin:0; color:var(--kv-navy); }
.approach-cta .cta-left p{ margin:6px 0 0; color:var(--kv-text-muted); }
.approach-cta .cta-actions{ display:flex; gap:12px; }
.approach-cta .kv-btn-primary{ background:var(--kv-teal); border-color:var(--kv-teal); color:#fff; }
.approach-cta .kv-btn-outline{ background:#fff; color:var(--kv-teal); border-color:var(--kv-teal); }

/* Responsive */
@media(max-width:1100px){
  .approach-grid{ grid-template-columns:1fr; }
  .approach-cards{ grid-template-columns:1fr; }
  .approach-cta{ flex-direction:column; align-items:flex-start; }
}

/* Hero signpost and headline */
.hero-signpost{ display:inline-block; padding:8px 14px; border-radius:18px; background:var(--kv-teal-light); color:var(--kv-teal); font-weight:700; font-size:12px; margin-bottom:18px; }
.approach-page h1{ font-size:44px; line-height:1.05; margin:6px 0 12px; color:var(--kv-navy); }
.approach-page h1 .highlight{ color:var(--kv-teal); display:inline-block; }
.approach-page .approach-subtitle{ max-width:720px; font-size:18px; color:var(--kv-text-muted); }

/* Approach visual */
.approach-side{ display:flex; justify-content:center; align-items:center; }
.approach-visual svg{ width:100%; max-width:420px; height:auto; display:block; }

/* Journey track */
.journey-section{ padding:60px 0 40px; }
.journey-track{ display:flex; gap:34px; align-items:center; justify-content:space-between; max-width:1100px; margin:18px auto 0; position:relative; }
.journey-track::before{ content:""; position:absolute; left:40px; right:40px; height:2px; top:28px; background:linear-gradient(90deg,#e6eefb,#f3f9ff); z-index:0; }
.journey-step{ position:relative; text-align:center; width:140px; z-index:1; }
.circle-num{ width:56px; height:56px; border-radius:50%; background:#fff; border:4px solid var(--kv-teal); color:var(--kv-teal); display:flex; align-items:center; justify-content:center; margin:0 auto 12px; font-weight:800; }
.journey-label{ font-size:14px; color:var(--kv-navy); font-weight:700; }

/* Polishing tweaks: badges, icons, buttons, shadows */
.approach-hero-badges{ display:flex; gap:14px; margin-top:18px; align-items:center; }
.approach-hero-badges .badge{ display:inline-flex; gap:10px; align-items:center; padding:8px 14px; border-radius:999px; background:#f4fbff; color:var(--kv-teal); font-weight:700; font-size:13px; border:1px solid var(--kv-border); }

.step-icon{ width:72px; height:72px; border-radius:16px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg,#2DD4BF,#0EA5A5); color:#fff; font-size:26px; box-shadow:0 12px 40px rgba(14,30,60,0.08); }
.approach-card{ background:#fff; border-radius:20px; padding:28px; box-shadow:0 30px 60px rgba(14,30,60,0.06); border:1px solid var(--kv-border); transition:transform .28s ease, box-shadow .28s ease; }
.approach-card:hover{ transform:translateY(-8px); box-shadow:0 40px 80px rgba(14,30,60,0.08); }

.kv-btn-primary{ border:1px solid rgba(0,88,216,0.15); color:#fff; padding:14px 26px; border-radius:12px; box-shadow:0 14px 40px rgba(27,117,255,0.18); display:inline-block; font-weight:800; }
.kv-btn-primary:hover{ transform:translateY(-3px); }

.approach-cta{ margin:40px 0 0; background:#fff; padding:26px; border-radius:18px; display:flex; align-items:center; justify-content:space-between; gap:20px; border:1px solid var(--kv-border); box-shadow:0 18px 50px rgba(14,30,60,0.04); }
.approach-cta .cta-left h2{ margin:0; color:var(--kv-navy); font-size:22px; }

/* Journey circle accent: subtle ring and filled center */
.circle-num{ background:#fff; color:var(--kv-teal); font-weight:800; box-shadow:0 6px 18px rgba(6,30,45,0.06); }
.circle-num::after{ content:""; position:absolute; left:50%; top:50%; transform:translate(-50%,-50%); width:86px; height:86px; border-radius:50%; z-index:-1; box-shadow:0 0 0 6px rgba(45,212,191,0.08); }

/* VS comparison */
.vs-section{ display:flex; gap:30px; align-items:stretch; justify-content:center; max-width:1200px; margin:50px auto; }
.vs-left, .vs-right{ flex:1; padding:28px; border-radius:16px; background:#fff; border:1px solid var(--kv-border); box-shadow:var(--kv-shadow); }
.vs-vs{ align-self:center; width:84px; height:84px; border-radius:50%; background:var(--kv-navy); color:#fff; display:flex; align-items:center; justify-content:center; font-weight:800; font-size:18px; box-shadow:0 10px 30px rgba(14,30,60,0.06); }
.vs-list{ margin-top:18px; list-style:none; padding:0; color:var(--kv-text-muted); }
.vs-list li{ margin-bottom:8px; padding-left:18px; position:relative; }
.vs-list.bad li::before{ content:"✖"; color:#ef4444; position:absolute; left:0; top:0; }
.vs-list.good li::before{ content:"✔"; color:var(--kv-accent-green); position:absolute; left:0; top:0; }

/* Outcomes */
.outcomes-section{ padding:40px 0 60px; }
.outcomes-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:18px; max-width:1200px; margin:18px auto; }
.outcome-box{ background:#fff; padding:20px; border-radius:14px; border:1px solid var(--kv-border); box-shadow:var(--kv-shadow-lg); text-align:left; }
.outcome-box h3{ color:var(--kv-navy); font-size:18px; margin-bottom:8px; }
.outcome-box p{ color:var(--kv-text-muted); margin:0; }

@media(max-width:1100px){
  .journey-track{ overflow-x:auto; padding-bottom:12px; }
  .journey-step{ width:200px; flex:0 0 auto; }
  .vs-section{ flex-direction:column; }
  .outcomes-grid{ grid-template-columns:1fr 1fr; }
}



/* Scoped page overrides for legacy pages (pain-points, insight) */
body.home-page .hero-section{ background: linear-gradient(180deg,#ffffff 0%,#eef5ff 100%); }
body.home-page .hero-btn{ background: linear-gradient(90deg,var(--kv-teal), #0058d8); color:#fff; box-shadow:0 18px 45px rgba(0,98,255,.22); border-radius:14px; }
body.home-page .hero-badge{ background:#edf5ff; color:var(--kv-teal); }
body.home-page .hero-left h1{ color:var(--kv-navy); }
body.home-page .hero-left h1 span{ color:var(--kv-teal); display:block; }
body.home-page .hero-text, body.home-page .hero-text2{ color:var(--kv-text-muted); }
body.home-page .hero-features i, body.home-page .pain-icon, body.home-page .outcome-icon{ color:var(--kv-teal); background:#eef7ff; }
body.home-page .graph-card, body.home-page .stat-box, body.home-page .pain-card, body.home-page .fix-step, body.home-page .outcome-box{ border:1px solid var(--kv-border); box-shadow:var(--kv-shadow-lg); }

/* Small helpers for color parity */
body.home-page .impact-tag{ background:var(--kv-teal-light); color:var(--kv-teal); }
body.home-page .bottom-cta .hero-btn{ background:var(--kv-teal); }

}

@media (max-width: 768px) {
  .gc-hero-inner {
    padding: 56px 0 64px;
  }

  .gc-hero-content {
    align-items: center;
    text-align: center;
  }

  .gc-hero-signpost {
    width: min(100%, 300px);
  }

  .gc-signpost-arm strong {
    font-size: 10px;
  }

  .gc-signpost-arm span {
    font-size: 9px;
  }

  .gc-journey-compare {
    padding: 24px 16px;
  }

  .gc-journey-step {
    width: 58px;
  }

  .gc-journey-col-wide .gc-journey-step {
    width: 52px;
  }

  .gc-vs-steps-single .gc-vs-step {
    min-width: 58px;
    max-width: 70px;
  }

  .gc-card-dark {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }

  .gc-donut-flex {
    flex-direction: column;
    text-align: center;
  }

  .gc-bottom-badges {
    flex-direction: column;
    width: 100%;
  }

  .gc-bottom-badge {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .gc-hero-bg img {
    object-position: 75% center;
  }

  .gc-hero-overlay {
    background: linear-gradient(
      180deg,
      #091526 0%,
      rgba(9, 21, 38, 0.92) 45%,
      rgba(9, 21, 38, 0.55) 70%,
      rgba(9, 21, 38, 0.2) 100%
    );
  }
}

/* ==========================================================================
   APPROACH PAGE REDESIGN STYLES
   ========================================================================== */

/* Hero & General */
.kv-approach-hero {
  padding: 80px 0 60px 0;
  background: radial-gradient(circle at 10% 20%, rgba(230, 245, 244, 0.4) 0%, rgba(255, 255, 255, 1) 90%);
}

.kv-approach-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  align-items: center;
}

.kv-hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: #e6f5f4;
  color: var(--kv-teal);
  font-size: 11px;
  font-weight: 700;
  border-radius: 20px;
  letter-spacing: 1px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.kv-approach-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--kv-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.kv-hero-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--kv-text-muted);
  margin-bottom: 35px;
}

.kv-hero-features {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kv-hero-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kv-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-teal);
  font-size: 14px;
  flex-shrink: 0;
}

.kv-hero-feature-item span {
  font-size: 13px;
  font-weight: 600;
  color: var(--kv-navy);
}

/* Three-Column Framework Diagram */
.kv-framework-diagram {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
}

.kv-diagram-card {
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  padding: 15px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
  transition: all 0.3s ease;
  z-index: 5;
}

.kv-diagram-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(15, 23, 42, 0.08);
}

.kv-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}

.kv-card-header i {
  font-size: 18px;
  color: var(--kv-teal);
}

.kv-card-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-navy);
  margin: 0;
  letter-spacing: 0.5px;
}

.kv-diagram-card p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--kv-text-muted);
  margin: 0 0 25px 0;
}

.kv-card-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.kv-card-bullets li {
  font-size: 12px;
  font-weight: 600;
  color: var(--kv-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kv-card-bullets li i {
  color: var(--kv-teal);
  font-size: 14px;
}

/* Center Revenue Donut and SVG arrows */
.kv-diagram-center {
  position: relative;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.kv-center-dashed-ring {
  position: absolute;
  top: -15px;
  left: -15px;
  right: -15px;
  bottom: -15px;
  border: 1.5px dashed rgba(0, 109, 104, 0.25);
  border-radius: 50%;
  pointer-events: none;
}

.kv-connector-arrow {
  position: absolute;
  width: 60px;
  height: 20px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 1;
}

.kv-arrow-left {
  left: -65px;
}

.kv-arrow-right {
  right: -65px;
  transform: translateY(-50%) scaleX(-1);
}

.kv-donut-body {
  position: relative;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 15px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  z-index: 3;
}

/* Donut color ring overlay using a pseudo border-like look */
.kv-donut-body::before {
  content: '';
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf 0%, #006d68 50%, #3b82f6 100%);
  z-index: -1;
}

.kv-donut-body i {
  font-size: 20px;
  color: #fff ;
  margin-bottom: 8px;
}

.kv-donut-body h4 {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin: 0;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.kv-donut-body span {
  font-size: 9px;
  color: #fff;
  margin-top: 4px;
}

/* Highlight Bar */
.kv-highlight-bar-section {
  padding: 30px 0;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
  border-top: 1px solid #edf2f7;
}

.kv-highlight-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.kv-highlight-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.kv-highlight-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e6f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-teal);
  font-size: 15px;
}

.kv-highlight-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
}

/* Journey Timeline */
.kv-journey-section {
  padding: 40px 0;
  background: #f8fafc;
}

.kv-journey-header {
  text-align: center;
  margin-bottom: 60px;
}

.kv-journey-header h2 {
  font-size: 25px;
  font-weight: 800;
  color: var(--kv-navy);
  margin-bottom: 12px;
}

.kv-journey-header p {
  font-size: 16px;
  color: var(--kv-text-muted);
  margin: 0;
}

.kv-journey-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

.kv-timeline-line {
  position: absolute;
  top: 60px;
  left: 8%;
  right: 8%;
  height: 2px;
  border-top: 2px dotted #cbd5e0;
  z-index: 1;
}

.kv-journey-step {
  position: relative;
  text-align: center;
  z-index: 2;
}

.kv-step-number {
  display: inline-block;
  padding: 4px 10px;
  background: #006d68;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 12px;
  margin-bottom: 15px;
}

.kv-step-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-teal);
  font-size: 16px;
  margin: 0 auto 16px auto;
  transition: all 0.25s ease;
}

.kv-journey-step:hover .kv-step-icon {
  background: var(--kv-teal);
  color: #fff;
  border-color: var(--kv-teal);
  transform: scale(1.1);
}

.kv-journey-step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--kv-navy);
  margin: 0 0 10px 0;
  line-height: 1.3;
}

.kv-journey-step p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--kv-text-muted);
  margin: 0;
  padding: 0 5px;
}

/* VS Section */
.kv-vs-section {
  padding: 40px 0;
  background: #ffffff;
}

.kv-vs-header {
  text-align: center;
  margin-bottom: 50px;
}

.kv-vs-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0;
}

.kv-vs-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
}

.kv-vs-grid-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
}

.kv-vs-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.kv-cold-path {
  border: 1px solid #fee2e2;
}

.kv-revintel-path {
  border: 1px solid #e2e8f0;
}

.kv-vs-card-header {
  margin-bottom: 30px;
}

.kv-vs-card-header h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 8px 0;
}

.kv-cold-path .kv-vs-card-header h3 {
  color: #EF4444;
}

.kv-revintel-path .kv-vs-card-header h3 {
  color: var(--kv-teal);
}

.kv-vs-card-header span {
  font-size: 13px;
  color: var(--kv-text-muted);
  font-weight: 600;
}

.kv-vs-steps-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 35px;
  background: #f8fafc;
  padding: 16px 20px;
  border-radius: 12px;
}

.kv-vs-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.kv-vs-step-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-navy);
  font-size: 13px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.02);
}

.kv-vs-step-item span {
  font-size: 10px;
  font-weight: 700;
  color: var(--kv-navy);
}

.kv-vs-step-arrow {
  color: #cbd5e0;
  font-size: 10px;
}

.kv-vs-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kv-vs-bullets li {
  font-size: 13px;
  font-weight: 600;
  color: var(--kv-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}

.kv-cross {
  color: #EF4444;
  font-weight: 800;
}

.kv-check {
  color: #10B981;
  font-weight: 800;
}

/* VS graphs */
.kv-vs-graph-container {
  margin-top: auto;
  position: relative;
  width: 100%;
  height: 70px;
}

.kv-vs-graph {
  width: 100%;
  height: 100%;
  display: block;
}

/* VS central badge */
.kv-vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-vs-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--kv-navy);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid #fff;
  box-shadow: 0 4px 15px rgba(11, 26, 46, 0.15);
}

/* Outcomes and Impact */
.kv-outcomes-section {
  padding: 40px 0;
  background: #f8fafc;
}

.kv-outcomes-header {
  text-align: center;
  margin-bottom: 50px;
}

.kv-outcomes-header h2 {
  font-size: 25px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0;
}

.kv-outcomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.kv-outcome-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
}

.kv-outcome-box h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--kv-teal);
  margin: 0 0 35px 0;
  text-align: center;
  position: relative;
}

.kv-outcome-box h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2.5px;
  background: var(--kv-teal);
  border-radius: 2px;
}

.kv-metrics-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.kv-metric-item {
  text-align: center;
}

.kv-metric-icon {
  font-size: 22px;
  color: var(--kv-teal);
  margin-bottom: 12px;
}

.kv-metric-val {
  font-size: 26px;
  font-weight: 800;
  color: var(--kv-navy);
  margin-bottom: 4px;
}

.kv-metric-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--kv-teal);
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
}

.kv-metric-item p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--kv-text-muted);
  margin: 0;
}

/* Call to Action Container */
.kv-approach-cta-section {
  padding: 40px 0;
  background: #ffffff;
}

.kv-approach-cta-box {
  background: linear-gradient(135deg, #0B1A2E 0%, #006D68 100%);
  border-radius: 24px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(11, 26, 46, 0.15);
}

.kv-approach-cta-box h2 {
  font-size: 36px;
  font-weight: 800;
  margin: 0 0 15px 0;
  color: #ffffff;
}

.kv-cta-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 45px 0;
}

.kv-cta-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto 50px auto;
  background: rgba(255, 255, 255, 0.05);
  padding: 24px 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.kv-cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.kv-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}

.kv-cta-step span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.kv-cta-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.kv-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 45px;
}

.kv-cta-buttons .kv-btn {
  padding: 16px 32px;
  font-size: 15px;
  border-radius: 30px;
}

.kv-cta-buttons .kv-btn-primary {
  background: #ffffff;
  color: var(--kv-navy);
  border-color: #ffffff;
}

.kv-cta-buttons .kv-btn-primary:hover {
  background: #f1f5f9;
  color: var(--kv-navy);
  border-color: #f1f5f9;
}

.kv-cta-buttons .kv-btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.kv-cta-buttons .kv-btn-outline:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.kv-cta-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 30px;
}

.kv-cta-badge-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
}

.kv-cta-badge-item i {
  font-size: 15px;
  color: #2dd4bf;
}

.kv-cta-badge-item span strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Footer override */
.kv-footer {
  padding: 30px 0;
  background: #f8fafc;
  border-top: 1px solid #e2e8f0;
  text-align: center;
}

.kv-footer p {
  margin: 0;
  font-size: 12px;
  color: var(--kv-text-muted);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

@media (max-width: 1100px) {
  .kv-approach-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .kv-approach-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .kv-hero-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .kv-framework-diagram {
    max-width: 800px;
    margin: 0 auto;
  }
}

@media (max-width: 900px) {
  .kv-journey-timeline {
    grid-template-columns: repeat(3, 2fr);
    gap: 40px;
  }
  
  .kv-timeline-line {
    display: none;
  }
  
  .kv-vs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kv-vs-divider {
    transform: rotate(90deg);
    margin: -10px 0;
  }
  
  .kv-outcomes-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .kv-cta-timeline {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 10px;
  }
  
  .kv-cta-arrow {
    transform: rotate(90deg);
    display: none; /* Hide arrows on wrap to look cleaner */
  }
}

@media (max-width: 768px) {
  .kv-approach-hero {
    padding: 60px 0 40px 0;
  }

  .kv-step-icon {
    width: 70px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--kv-teal);
    font-size: 15px;
    margin: 0 auto 16px auto;
    transition: all 0.25s ease;
}
  
  .kv-approach-hero-content h1 {
    font-size: 25px;
  }
  
  .kv-framework-diagram {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .kv-diagram-center {
    margin: 10px auto;
  }
  
  .kv-connector-arrow {
    display: none;
  }
  
  .kv-center-dashed-ring {
    display: none;
  }
  
  .kv-highlight-bar {
    justify-content: center;
    gap: 20px 30px;
  }
  
  .kv-approach-cta-box {
    padding: 40px 20px;
  }
  
  .kv-approach-cta-box h2 {
    font-size: 26px;
  }
  
  .kv-cta-buttons {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  .kv-cta-buttons .kv-btn {
    width: 100%;
    max-width: 320px;
  }
  
  .kv-cta-badges {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 550px) {
  .kv-journey-timeline {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .kv-vs-card {
    padding: 24px 20px;
  }
  
  .kv-vs-steps-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
  
  .kv-vs-step-arrow {
    display: none;
  }
  
  .kv-metrics-row {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}

/* ==========================================================================
   MEGA DROPDOWN MENU STYLING (MULTI-LEVEL)
   ========================================================================== */

.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.dropdown-trigger i {
  font-size: 9px;
  transition: transform 0.25s ease;
}

.nav-dropdown:hover .dropdown-trigger i {
  transform: rotate(180deg);
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  width: 230px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 12px;
  z-index: 1000;
  flex-direction: column;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.25s ease;
  box-sizing: border-box;
}

/* Desktop Hover States */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-content {
    display: flex;
    opacity: 1;
    visibility: visible;
  }
}

.dropdown-submenu {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.submenu-trigger i {
  font-size: 9px;
  color: var(--kv-text-muted);
  transition: transform 0.2s ease;
}

.dropdown-submenu:hover .submenu-trigger {
  background: #f8fafc;
  color: var(--kv-teal);
}

.dropdown-submenu:hover .submenu-trigger i {
  color: var(--kv-teal);
}

/* Submenu Flyout Content (Desktop) */
.submenu-content {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  padding: 12px;
  min-width: 190px;
  z-index: 1010;
  flex-direction: column;
  gap: 4px;
  box-sizing: border-box;
}

@media (min-width: 769px) {
  .dropdown-submenu:hover .submenu-content {
    display: flex;
  }
}

/* Submenu Links styling */
.submenu-content a {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--kv-text) !important;
  padding: 8px 12px !important;
  border-radius: 6px !important;
  box-shadow: none !important;
  text-decoration: none;
  transition: all 0.2s ease !important;
  display: block;
  text-align: left;
  box-sizing: border-box;
}

.submenu-content a:hover {
  background: #e6f5f4 !important;
  color: var(--kv-teal) !important;
}

.submenu-content a.active {
  background: #e6f5f4 !important;
  color: var(--kv-teal) !important;
  font-weight: 700 !important;
}

/* Mobile Accordeon Dropdown Overrides */
@media (max-width: 768px) {
  .nav-dropdown {
    width: 100%;
    display: block;
  }
  
  .dropdown-trigger {
    justify-content: space-between;
    width: 100%;
  }
  
  /* Prevent desktop hover style in mobile */
  .nav-dropdown:hover .dropdown-trigger i {
    transform: none;
  }
  
  .nav-dropdown.open .dropdown-trigger i {
    transform: rotate(180deg);
  }
  
  .dropdown-content {
    display: none !important; /* Managed by .open class */
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    width: 100%;
    min-width: unset;
    box-shadow: none;
    border: none;
    padding: 8px 0 0 12px;
    gap: 10px;
    transition: none;
  }
  
  .nav-dropdown.open .dropdown-content {
    display: flex !important;
  }
  
  .dropdown-submenu {
    width: 100%;
  }
  
  .submenu-trigger {
    padding: 8px 0;
    font-size: 14px;
  }
  
  .submenu-trigger i {
    transform: rotate(90deg); /* points down on mobile triggers */
  }
  
  .dropdown-submenu.open .submenu-trigger i {
    transform: rotate(-90deg); /* point up when open */
  }
  
  .submenu-content {
    display: none !important; /* Managed by .open class */
    position: static;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 15px;
    width: 100%;
    min-width: unset;
    gap: 6px;
    transition: none;
  }
  
  .dropdown-submenu.open .submenu-content {
    display: flex !important;
  }
  
  .submenu-content a {
    font-size: 14px !important;
    padding: 8px 0 !important;
    border-radius: 0 !important;
  }
  
  .submenu-content a:hover,
  .submenu-content a.active {
    background: transparent !important;
    color: var(--kv-teal) !important;
  }
}


/* ==========================================================================
   INDUSTRIES WE SERVE PAGE REDESIGN STYLES
   ========================================================================== */

/* Hero & Diagram Section */
.kv-inds-hero {
  padding: 80px 0 60px 0;
  background: radial-gradient(circle at 90% 10%, rgba(230, 245, 244, 0.4) 0%, rgba(255, 255, 255, 1) 90%);
}

.kv-inds-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.kv-inds-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--kv-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* Engine Diagram Wrapper */
.kv-engine-wrap {
  position: relative;
  height: 460px;
  width: 100%;
}

.kv-engine-center {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  z-index: 5;
}

.kv-engine-donut {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 20px;
  box-sizing: border-box;
  position: relative;
}

.kv-engine-donut::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #2dd4bf 0%, #006d68 50%, #3b82f6 100%);
  z-index: -1;
}

.kv-engine-donut i {
  font-size: 24px;
  color: var(--kv-teal);
  margin-bottom: 10px;
}

.kv-engine-donut h4 {
  font-size: 11px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0;
  line-height: 1.3;
  letter-spacing: 0.5px;
}

.kv-engine-dashed-ring {
  position: absolute;
  top: -20px; left: -20px; right: -20px; bottom: -20px;
  border: 1.5px dashed rgba(0, 109, 104, 0.2);
  border-radius: 50%;
  pointer-events: none;
}

/* Surrounding Node boxes */
.kv-engine-node {
  position: absolute;
  width: 195px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.03);
  z-index: 6;
  transition: all 0.3s ease;
}

.kv-engine-node:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.kv-node-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.kv-node-header i {
  font-size: 16px;
  color: var(--kv-teal);
}

.kv-node-header h5 {
  font-size: 12px;
  font-weight: 700;
  color: var(--kv-navy);
  margin: 0;
}

.kv-engine-node p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--kv-text-muted);
  margin: 0;
}

/* Node coordinates on Desktop */
.kv-node-tech {
  top: 10px;
  left: 10px;
}
.kv-node-finance {
  top: 10px;
  right: 10px;
}
.kv-node-staffing {
  bottom: 110px;
  left: 10px;
}
.kv-node-pro {
  bottom: 110px;
  right: 10px;
}

.kv-engine-and-more {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
  background: #ffffff;
  border: 1px solid #edf2f7;
  border-radius: 10px;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.kv-engine-and-more i {
  font-size: 15px;
  color: var(--kv-teal);
}

.kv-engine-and-more span {
  font-size: 11px;
  color: var(--kv-text-muted);
  line-height: 1.4;
  text-align: left;
}

.kv-engine-and-more span strong {
  color: var(--kv-navy);
  display: block;
  font-size: 12px;
  margin-bottom: 2px;
}

/* Business Characteristics */
.kv-inds-characteristics {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
}

.kv-section-header {
  text-align: center;
  margin-bottom: 50px;
}

.kv-section-header h2 {
  font-size: 25px;
  font-weight: 800;
  color: var(--kv-navy);
  margin-bottom: 12px;
}

.kv-section-header p {
  font-size: 16px;
  color: var(--kv-text-muted);
  margin: 0;
}

.kv-char-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.kv-char-card {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  transition: all 0.25s ease;
}

.kv-char-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.kv-char-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e6f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-teal);
  font-size: 18px;
  margin: 0 auto 15px auto;
}

.kv-char-card span {
  font-size: 11px;
  font-weight: 700;
  color: var(--kv-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 10px;
}

.kv-char-card h3 {
  font-size: 24px;
  font-weight: 800;
  color: var(--kv-teal);
  margin: 0 0 5px 0;
}

.kv-char-card p {
  font-size: 12px;
  color: var(--kv-navy);
  font-weight: 600;
  margin: 0;
}

/* Challenges Cards */
.kv-inds-challenges {
  padding: 40px 0;
  background: #f8fafc;
}

.kv-chal-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 15px;
}

.kv-chal-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 24px 15px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.02);
  transition: all 0.25s ease;
}

.kv-chal-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.kv-chal-card i {
  font-size: 20px;
  color: var(--kv-teal);
  margin-bottom: 15px;
}

.kv-chal-card h4 {
  font-size: 13px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0 0 10px 0;
}

.kv-chal-card p {
  font-size: 11px;
  line-height: 1.4;
  color: var(--kv-text-muted);
  margin: 0;
}

/* Growth Journey Matrix */
.kv-inds-matrix-section {
  padding: 85px 0;
  background: #ffffff;
}

.kv-matrix-split {
  display: grid;
  grid-template-columns: 1fr 2.2fr;
  gap: 50px;
  align-items: center;
}

.kv-matrix-text h2 {
  font-size: 25px;
  font-weight: 800;
  color: var(--kv-navy);
  line-height: 1.25;
  margin-bottom: 15px;
}

.kv-matrix-text p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kv-text-muted);
  margin: 0;
}

.kv-matrix-wrap {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.kv-matrix-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1.5px solid #edf2f7;
  padding-bottom: 15px;
  margin-bottom: 15px;
  text-align: center;
}

.kv-matrix-header span {
  font-size: 12px;
  font-weight: 800;
  color: var(--kv-navy);
  display: block;
  margin-bottom: 2px;
}

.kv-matrix-header small {
  font-size: 9px;
  color: var(--kv-text-muted);
  display: block;
}

.kv-matrix-body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.kv-matrix-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  align-items: center;
}

.kv-matrix-lbl {
  font-size: 11px;
  font-weight: 700;
  color: var(--kv-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kv-matrix-lbl i {
  color: var(--kv-teal);
  font-size: 12px;
}

.kv-matrix-bar-wrap {
  background: #f1f5f9;
  height: 8px;
  border-radius: 4px;
  position: relative;
  width: 100%;
}

.kv-matrix-bar {
  height: 100%;
  background: linear-gradient(90deg, #2dd4bf, var(--kv-teal));
  border-radius: 4px;
  position: absolute;
}

/* Offset values for stages (Emerging, Growing, Established, Enterprise) */
.bar-tech { left: 0%; width: 33%; }
.bar-finance { left: 25%; width: 30%; }
.bar-staffing { left: 0%; width: 22%; }
.bar-consulting { left: 35%; width: 35%; }
.bar-healthcare { left: 35%; width: 45%; }
.bar-manufacturing { left: 35%; width: 40%; }
.bar-saas { left: 45%; width: 55%; }

/* Where We Create Impact paths */
.kv-inds-impact {
  padding: 80px 0;
  background: #f8fafc;
}

.kv-path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kv-path-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  text-align: center;
}

.kv-path-col h4 {
  font-size: 15px;
  font-weight: 850;
  color: var(--kv-navy);
  margin: 0 0 25px 0;
}

.kv-path-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kv-path-step {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-sizing: border-box;
}

.kv-path-step i {
  font-size: 13px;
  color: var(--kv-teal);
}

.kv-path-step span {
  font-size: 11px;
  font-weight: 700;
  color: var(--kv-navy);
}

.kv-path-step.final {
  background: #e6f5f4;
  border-color: #006d68;
}

.kv-path-step.final i {
  color: var(--kv-teal);
}

.kv-path-step.final span {
  color: var(--kv-teal);
}

.kv-path-arrow {
  color: #cbd5e0;
  font-size: 11px;
  margin: 10px 0;
}

/* Stats Ribbon */
.kv-inds-results {
  padding: 40px 0;
  background: #ffffff;
  border-bottom: 1px solid #edf2f7;
}

.kv-stats-ribbon {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.kv-stat-box {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.kv-stat-icon {
  font-size: 20px;
  color: var(--kv-teal);
  margin-bottom: 10px;
}

.kv-stat-box h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0 0 5px 0;
}

.kv-stat-box p {
  font-size: 11px;
  color: var(--kv-text-muted);
  font-weight: 600;
  margin: 0;
}

/* Bottom CTA section with 3D Graph */
.kv-inds-cta-section {
  padding: 80px 0;
  background: #ffffff;
}

.kv-inds-cta-box {
  background: linear-gradient(135deg, #0B1A2E 0%, #006D68 100%);
  border-radius: 24px;
  padding: 60px 40px;
  color: #fff;
  box-shadow: 0 20px 50px rgba(11, 26, 46, 0.15);
}

.kv-inds-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.kv-inds-cta-content {
  text-align: left;
}

.kv-inds-cta-content h2 {
  font-size: 34px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.kv-inds-cta-content p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 35px 0;
  line-height: 1.5;
}

.kv-inds-cta-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
}

.kv-inds-cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.kv-inds-cta-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
}

.kv-inds-cta-step span {
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.kv-inds-cta-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.kv-inds-cta-btn-row {
  margin-bottom: 35px;
}

.kv-inds-cta-btn-row .kv-btn {
  padding: 16px 36px;
  font-size: 15px;
  border-radius: 30px;
  background: #ffffff;
  color: var(--kv-navy);
  border-color: #ffffff;
}

.kv-inds-cta-btn-row .kv-btn:hover {
  background: #f1f5f9;
  color: var(--kv-navy);
  border-color: #f1f5f9;
}

.kv-inds-cta-badges {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

.kv-inds-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.85);
}

.kv-inds-badge-item i {
  color: #2dd4bf;
  font-size: 14px;
}

.kv-inds-badge-item span strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1px;
}

/* 3D isometric chart graphic */
.kv-inds-cta-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

.kv-3d-graph-wrap {
  position: relative;
  width: 220px;
  height: 220px;
  transform: rotateX(55deg) rotateZ(-45deg);
  transform-style: preserve-3d;
}

.kv-graph-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
}

.kv-graph-line.line-1 {
  top: 33%; left: 0; right: 0; height: 1.5px;
}
.kv-graph-line.line-2 {
  top: 66%; left: 0; right: 0; height: 1.5px;
}
.kv-graph-line.line-3 {
  left: 50%; top: 0; bottom: 0; width: 1.5px;
}

.kv-bar-3d {
  position: absolute;
  transform-style: preserve-3d;
  bottom: 0px;
  transform-origin: bottom center;
}

.kv-bar-3d.bar-1 {
  left: 20px; width: 36px; height: 50px;
  transform: translateZ(25px);
}
.kv-bar-3d.bar-2 {
  left: 80px; width: 36px; height: 100px;
  transform: translateZ(50px);
}
.kv-bar-3d.bar-3 {
  left: 140px; width: 36px; height: 150px;
  transform: translateZ(75px);
}

.kv-bar-3d > div {
  position: absolute;
  box-sizing: border-box;
}

.kv-bar-3d .bar-front {
  background: #00827a;
  width: 36px;
  height: inherit;
  transform: rotateY(0deg) translateZ(18px);
}

.kv-bar-3d .bar-right {
  background: #004d48;
  width: 36px;
  height: inherit;
  transform: rotateY(90deg) translateZ(18px);
}

.kv-bar-3d .bar-top {
  background: #2dd4bf;
  width: 36px;
  height: 36px;
  transform: rotateX(90deg) translateZ(18px);
  top: -18px;
}

.kv-graph-pin {
  position: absolute;
  top: -24px;
  left: 148px;
  color: #2dd4bf;
  font-size: 24px;
  transform: rotateZ(45deg) rotateX(-55deg) translateZ(85px);
  animation: floatPin 3s ease-in-out infinite;
  z-index: 20;
}

@keyframes floatPin {
  0% { transform: rotateZ(45deg) rotateX(-55deg) translateZ(85px) translateY(0); }
  50% { transform: rotateZ(45deg) rotateX(-55deg) translateZ(85px) translateY(-10px); }
  100% { transform: rotateZ(45deg) rotateX(-55deg) translateZ(85px) translateY(0); }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES - INDUSTRIES
   ========================================================================== */

@media (max-width: 1200px) {
  .kv-inds-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .kv-inds-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .kv-inds-hero-content .kv-hero-features {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .kv-engine-wrap {
    max-width: 580px;
    margin: 0 auto;
  }
  
  .kv-char-row {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .kv-char-card {
    min-width: 200px;
  }
}

@media (max-width: 991px) {
  .kv-chal-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .kv-matrix-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kv-matrix-text {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .kv-path-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .kv-inds-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kv-inds-cta-content {
    text-align: center;
  }
  
  .kv-inds-cta-timeline {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .kv-inds-cta-arrow {
    display: none;
  }
  
  .kv-inds-cta-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .kv-inds-cta-graphic {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .kv-inds-hero {
    padding: 60px 0 40px 0;
  }
  
  .kv-inds-hero-content h1 {
    font-size: 25px;
  }
  
  .kv-engine-wrap {
    height: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    padding-bottom: 20px;
  }
  
  .kv-engine-center {
    grid-column: span 2;
    position: static;
    transform: none;
    margin: 0 auto 10px auto;
  }
  
  .kv-engine-node {
    position: static;
    width: auto;
  }
  
  .kv-engine-and-more {
    grid-column: span 2;
    position: static;
    transform: none;
    width: auto;
    margin-top: 10px;
  }
  
  .kv-engine-dashed-ring {
    display: none;
  }
  
  .kv-matrix-wrap {
    overflow-x: auto;
    padding: 24px 15px;
  }
  
  .kv-matrix-header, .kv-matrix-body {
    min-width: 580px;
  }
  
  .kv-stats-ribbon {
    justify-content: center;
    gap: 30px;
  }
  
  .kv-stat-box {
    min-width: 120px;
  }
}

@media (max-width: 550px) {
  .kv-engine-wrap {
    grid-template-columns: 1fr;
  }
  
  .kv-engine-center {
    grid-column: span 1;
  }
  
  .kv-engine-and-more {
    grid-column: span 1;
  }
  
  .kv-chal-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .kv-path-grid {
    grid-template-columns: 1fr;
  }
  
  .kv-inds-cta-btn-row .kv-btn {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
  }
}

/* ==========================================================================
   PROBLEM PAGE REDESIGN STYLES
   ========================================================================== */

/* Hero & Flows Section */
.kv-prob-hero {
  padding: 40px 0 40px 0;
  background: radial-gradient(circle at 90% 10%, rgba(230, 245, 244, 0.3) 0%, rgba(255, 255, 255, 1) 90%);
}

.kv-prob-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.kv-prob-hero-content h1 {
  font-size: 42px;
  font-weight: 800;
  color: var(--kv-navy);
  line-height: 1.25;
  margin-bottom: 20px;
}

.kv-prob-hero-content h1 span.kv-teal {
  color: var(--kv-teal);
}

.kv-hero-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--kv-text-muted);
  margin-bottom: 12px;
  font-weight: 500;
}

.kv-hero-desc.secondary {
  margin-bottom: 35px;
}

.kv-hero-features {
  display: ruby-text;
  gap: 20px;
}

.kv-hero-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  padding: 12px 20px;
  border-radius: 30px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
}

.kv-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e6f5f4;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-teal);
  font-size: 14px;
}

.kv-hero-feature-item span {
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Flows Wrapper */
.kv-prob-flows-wrap {
  display: flex;
  justify-content: space-between;
  position: relative;
  gap: 40px;
}

.kv-flow-col {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(15, 23, 42, 0.02);
}

.kv-flow-col h5 {
  font-size: 16px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0 0 4px 0;
  letter-spacing: 0.5px;
}

.kv-flow-col small {
  font-size: 12px;
  color: var(--kv-text-muted);
  display: block;
  margin-bottom: 24px;
}

.kv-flow-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.kv-flow-step {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
}

.kv-flow-col:nth-child(1) .kv-flow-step i {
  color: var(--kv-teal);
}

.kv-flow-col:nth-child(3) .kv-flow-step i {
  color: #3b82f6;
}

.kv-flow-step i {
  font-size: 14px;
  color: var(--kv-text-muted);
}

.kv-flow-step span {
  font-size: 13px;
  font-weight: 700;
  color: var(--kv-navy);
}

.kv-flow-step.final-bad {
  background: #f8fafc;
  border-color: #edf2f7;
}

.kv-flow-step.final-bad i {
  color: var(--kv-text-muted);
}

.kv-flow-step.final-bad span {
  color: var(--kv-navy);
}

.kv-flow-arrow {
  color: #cbd5e0;
  font-size: 11px;
  margin: 8px 0;
}

/* Flows Connection Center Circle */
.kv-flow-center {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.kv-flow-center-donut {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 14px;
  box-sizing: border-box;
  position: relative;
}

.kv-flow-center-donut::before {
  content: '';
  position: absolute;
  top: -4px; left: -4px; right: -4px; bottom: -4px;
  border-radius: 50%;
  border: 1.5px dashed rgba(15, 23, 42, 0.2);
  z-index: -1;
}

.kv-flow-center-donut i {
  font-size: 20px;
  color: var(--kv-teal);
  margin-bottom: 6px;
}

.kv-flow-center-donut span {
  font-size: 9px;
  font-weight: 700;
  color: var(--kv-text-muted);
  display: block;
}

.kv-flow-center-donut strong {
  font-size: 11px;
  font-weight: 800;
  color: var(--kv-navy);
  line-height: 1.25;
}

/* Two-Sided Gaps Section */
.kv-gap-cards-section {
  padding: 40px 0;
  background: #ffffff;
  border-top: 1px solid #edf2f7;
}

.kv-gap-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.kv-gap-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.02);
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 24px;
  transition: all 0.3s ease;
}

.kv-gap-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.kv-gap-header {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 25px;
}

.kv-gap-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: #e6f5f4;
  color: var(--kv-teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.kv-gap-card:nth-child(2) .kv-gap-icon {
  background: #eff6ff;
  color: #3b82f6;
}

.kv-gap-header h3 {
  font-size: 21px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0 0 4px 0;
}

.kv-gap-header p {
  font-size: 13px;
  color: var(--kv-text-muted);
  margin: 0;
  line-height: 1.45;
}

.kv-gap-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kv-gap-bullets li {
  font-size: 14px;
  color: var(--kv-navy);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.kv-gap-bullets li i {
  color: var(--kv-teal);
  font-size: 15px;
}

.kv-gap-card:nth-child(2) .kv-gap-bullets li i {
  color: #3b82f6;
}

/* Circular Chart SVG inside Gaps */
.kv-gap-chart-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.kv-circle-chart-wrap {
  text-align: center;
  max-width: 170px;
}

.kv-circular-chart {
  display: block;
  margin: 0 auto 15px auto;
  max-width: 110px;
  max-height: 110px;
}

.circle-bg {
  fill: none;
  stroke: #f1f5f9;
  stroke-width: 2.8;
}

.circle {
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
}

.teal-chart .circle {
  stroke: var(--kv-teal);
}

.blue-chart .circle {
  stroke: #3b82f6;
}

.percentage {
  fill: var(--kv-navy);
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  font-weight: 800;
  text-anchor: middle;
}

.kv-circle-chart-wrap span {
  font-size: 12px;
  color: var(--kv-text-muted);
  line-height: 1.45;
  display: block;
}

.kv-circle-chart-wrap span strong {
  color: var(--kv-navy);
}

/* Why Traditional Models Fail */
.kv-fail-section {
  padding: 40px 0;
  background: #f8fafc;
}

.kv-fail-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 25px;
}

.kv-fail-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.kv-fail-col:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.04);
}

.kv-fail-col.kv-fail-good {
  border: 1.5px solid var(--kv-teal);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 109, 104, 0.04);
}

.kv-fail-col-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
}

.kv-fail-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  color: var(--kv-navy);
}

.kv-fail-good .kv-fail-badge {
  background: #e6f5f4;
  color: var(--kv-teal);
}

.kv-fail-col-header h4 {
  font-size: 17px;
  font-weight: 850;
  color: var(--kv-navy);
  margin: 0;
}

.kv-fail-good .kv-fail-col-header h4 {
  color: var(--kv-teal);
}

.kv-fail-steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}

.kv-fail-step {
  width: 100%;
  background: #f8fafc;
  border: 1px solid #edf2f7;
  border-radius: 8px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-sizing: border-box;
}

.kv-fail-step i {
  font-size: 14px;
  color: var(--kv-teal);
}

.kv-fail-step span, 
.kv-fail-step {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--kv-navy);
}

.kv-fail-step.final-bad {
  background: #f8fafc;
  border-color: #edf2f7;
  color: var(--kv-navy);
}

.kv-fail-step.final-bad i {
  color: var(--kv-teal);
}

.kv-fail-good .kv-fail-step {
  background: #ffffff;
}

.kv-fail-good .kv-fail-step.final-good {
  background: #e6f5f4;
  border-color: #99ffd6;
  color: var(--kv-teal);
}

.kv-fail-good .kv-fail-step.final-good i {
  color: var(--kv-teal);
}

.kv-fail-arrow {
  color: #cbd5e0;
  font-size: 10px;
  margin: 8px 0;
}

.kv-fail-result {
  margin-top: auto;
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 13.5px;
  font-weight: 750;
  display: flex;
  align-items: center;
  gap: 8px;
}

.kv-fail-result.bad {
  background: #f8fafc;
  color: var(--kv-text-muted);
  border: 1px solid #e2e8f0;
}

.kv-fail-result.good {
  background: #e6f5f4;
  color: var(--kv-teal);
  border: 1px solid #006d68;
}

/* What Leadership Sees vs Actually Happening */
.kv-sees-vs-happening-section {
  padding: 80px 0;
  background: #ffffff;
}

.kv-sees-grid {
  display: grid;
  grid-template-columns: 1.15fr 1.15fr 1fr;
  gap: 25px;
}

.kv-sees-col, 
.kv-happening-col {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}

.kv-sees-header-row, 
.kv-happening-header-row {
  padding: 18px 24px;
  border-bottom: 1.5px solid #edf2f7;
  background: #f8fafc;
}

.kv-sees-header-row h5 {
  font-size: 14px;
  font-weight: 850;
  color: var(--kv-navy);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-happening-header-row h5 {
  font-size: 14px;
  font-weight: 850;
  color: var(--kv-navy);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.kv-sees-list, 
.kv-happening-list {
  display: flex;
  flex-direction: column;
}

.kv-sees-item, 
.kv-happening-item {
  padding: 16px 24px;
  border-bottom: 1px solid #edf2f7;
  display: flex;
  align-items: center;
  gap: 12px;
}

.kv-sees-item:last-child, 
.kv-happening-item:last-child {
  border-bottom: none;
}

.kv-sees-item i {
  color: var(--kv-teal);
  font-size: 16px;
}

.kv-happening-item i {
  color: var(--kv-text-muted);
  font-size: 16px;
}

.kv-sees-item span, 
.kv-happening-item span {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--kv-navy);
}

/* Warning Window Card */
.kv-warning-window {
  background: #0B1A2E;
  border-radius: 16px;
  padding: 40px 30px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-shadow: 0 10px 30px rgba(11, 26, 46, 0.08);
}

.kv-window-header {
  display: flex;
  gap: 6px;
  margin-bottom: 40px;
}

.window-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.window-dot.red { background: #ff5f56; }
.window-dot.yellow { background: #ffbd2e; }
.window-dot.green { background: #27c93f; }

.kv-window-body {
  width: 100%;
  text-align: center;
  margin-top: 10px;
}

.kv-window-body i {
  font-size: 44px;
  color: #ffbd2e;
  margin-bottom: 25px;
}

.kv-window-text {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

.kv-window-text strong {
  color: #ffffff;
  display: block;
  margin-top: 10px;
  font-weight: 700;
  font-size: 16px;
}

/* The Broken Revenue Journey */
.kv-journey-10-section {
  padding: 80px 0;
  background: #f8fafc;
  border-top: 1px solid #edf2f7;
}

.kv-journey-10-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  margin: 40px 0 50px 0;
}

.kv-journey-10-line {
  position: absolute;
  top: 26px;
  left: 10px;
  right: 10px;
  height: 2px;
  border-top: 2px dashed #cbd5e0;
  z-index: 1;
}

.kv-journey-10-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  width: 80px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.kv-step-icon-10 {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffffff;
  border: 1.5px solid #cbd5e0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kv-navy);
  font-size: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  transition: all 0.2s ease;
}

/* Setup custom colors for journey timeline icons */
.kv-journey-10-step .kv-step-icon-10 i {
  color: var(--kv-teal);
}

.kv-journey-10-step span {
  font-size: 11px;
  font-weight: 700;
  color: var(--kv-navy);
  line-height: 1.3;
}

.kv-journey-10-arrow {
  color: #cbd5e0;
  font-size: 11px;
  z-index: 2;
  margin-top: -24px;
}

.kv-journey-10-step.final .kv-step-icon-10 {
  border-color: #cbd5e0;
  color: var(--kv-navy);
  background: #ffffff;
}

.kv-journey-10-step.final span {
  color: var(--kv-navy);
}

.kv-bracket-container {
  display: grid;
  grid-template-columns: 4fr 3fr 3fr;
  gap: 20px;
  border-top: 1px dashed #e2e8f0;
  padding-top: 30px;
}

.kv-bracket-box {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.kv-bracket-icon i {
  color: var(--kv-text-muted);
  font-size: 16px;
  margin-bottom: 4px;
}

.kv-bracket-box strong {
  font-size: 14px;
  color: var(--kv-navy);
  font-weight: 850;
}

.kv-bracket-box span {
  font-size: 12px;
  color: var(--kv-text-muted);
}

/* Where Revenue Is Being Lost */
.kv-lost-section {
  padding: 40px 0;
  background: #ffffff;
}

.kv-lost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.kv-lost-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.01);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.kv-lost-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.05);
}

.kv-lost-icon {
  font-size: 26px;
  color: var(--kv-teal);
  margin-bottom: 20px;
}

.kv-lost-card h4 {
  font-size: 17px;
  font-weight: 850;
  color: var(--kv-navy);
  margin: 0 0 10px 0;
}

.kv-lost-card p {
  font-size: 13px;
  line-height: 1.45;
  color: var(--kv-text-muted);
  margin: 0 0 20px 0;
}

.kv-lost-leads {
  font-size: 12.5px;
  color: var(--kv-navy);
  font-weight: 600;
  margin-bottom: 20px;
  margin-top: auto;
}

.kv-lost-leads strong {
  color: var(--kv-navy);
}

.kv-lost-layer {
  border-top: 1px solid #edf2f7;
  padding-top: 16px;
  font-size: 12px;
  color: var(--kv-text-muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.kv-lost-layer i {
  color: var(--kv-teal);
  font-size: 14px;
}

/* The Business Impact Stat Ribbon */
.kv-impact-section {
  padding: 40px 0;
  background: #f8fafc;
  border-top: 1px solid #edf2f7;
}

.kv-impact-ribbon {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

.kv-impact-stat {
  flex: 1;
  min-width: 140px;
  text-align: center;
}

.kv-impact-icon {
  font-size: 26px;
  color: var(--kv-teal);
  margin-bottom: 12px;
}

.kv-impact-stat h3 {
  font-size: 25px;
  font-weight: 800;
  color: var(--kv-navy);
  margin: 0 0 5px 0;
}

.kv-impact-stat p {
  font-size: 12.5px;
  color: var(--kv-text-muted);
  font-weight: 650;
  margin: 0;
}

/* Bottom CTA section */
.kv-prob-cta-section {
  padding: 40px 0;
  background: #ffffff;
}

.kv-prob-cta-box {
  background: linear-gradient(135deg, #0B1A2E 0%, #006D68 100%);
  border-radius: 24px;
  padding: 60px 40px;
  color: #ffffff;
  box-shadow: 0 20px 50px rgba(11, 26, 46, 0.15);
}

.kv-prob-cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.kv-prob-cta-content {
  text-align: left;
}

.kv-prob-cta-content h2 {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin: 0 0 15px 0;
}

.kv-prob-cta-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 35px 0;
  line-height: 1.5;
}

.kv-prob-cta-timeline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 35px;
}

.kv-prob-cta-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.kv-prob-cta-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #ffffff;
}

.kv-prob-cta-step span {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.kv-prob-cta-arrow {
  color: rgba(255, 255, 255, 0.3);
  font-size: 10px;
}

.kv-prob-cta-btn-row {
  margin-bottom: 35px;
}

.kv-prob-cta-btn-row .kv-btn {
  padding: 16px 36px;
  font-size: 15px;
  border-radius: 30px;
  background: #ffffff;
  color: var(--kv-navy);
  border-color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 750;
  text-decoration: none;
}

.kv-prob-cta-btn-row .kv-btn:hover {
  background: #f1f5f9;
  color: var(--kv-navy);
  border-color: #f1f5f9;
}

.kv-prob-cta-badges {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 25px;
}

.kv-prob-badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
}

.kv-prob-badge-item i {
  color: #2dd4bf;
  font-size: 18px;
}

.kv-prob-badge-item span strong {
  display: block;
  color: #ffffff;
  font-weight: 700;
  margin-bottom: 1px;
}

/* 3D isometric bar chart graphic */
.kv-prob-cta-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1000px;
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES - PROBLEM
   ========================================================================== */

@media (max-width: 1200px) {
  .kv-prob-hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .kv-prob-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
  }
  
  .kv-hero-features {
    justify-content: center;
    flex-wrap: wrap;
  }

      .kv-hero-features {
        justify-content: center;
        flex-wrap: wrap;
        display: flex;
        margin-bottom: 20px;
    }

  
  .kv-prob-flows-wrap {
    max-width: 580px;
    margin: 0 auto;
  }
  
  .kv-gap-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .kv-gap-card {
    max-width: 650px;
    margin: 0 auto;
  }
  
  .kv-fail-row {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .kv-fail-col.kv-fail-good {
    grid-column: span 2;
    max-width: 580px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 991px) {
  .kv-sees-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .kv-warning-window {
    grid-column: span 2;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
  }
  
  .kv-warning-window .kv-window-header {
    align-self: center;
  }
  
  .kv-lost-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  
  .kv-prob-cta-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .kv-prob-cta-content {
    text-align: center;
  }
  
  .kv-prob-cta-timeline {
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .kv-prob-cta-arrow {
    display: none;
  }
  
  .kv-prob-cta-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .kv-prob-cta-graphic {
    margin-top: 20px;
  }
}

@media (max-width: 768px) {
  .kv-prob-hero {
    padding: 60px 0 40px 0;
  }
  
  .kv-prob-hero-grid {
    display: inline !important ;
    /* grid-template-columns: 1fr 1fr;
    gap: 60px; */
    align-items: center;
}

  .kv-prob-hero-content h1 {
    font-size: 32px;
  }
  
  .kv-prob-flows-wrap {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .kv-flow-col {
    width: 100%;
    max-width: 320px;
  }
  
  .kv-flow-center {
    position: static;
    transform: none;
    margin: 10px 0;
  }
  
  .kv-journey-10-wrap {
    overflow-x: auto;
    padding: 20px 10px;
  }
  
  .kv-journey-10-line, 
  .kv-journey-10-step, 
  .kv-journey-10-arrow {
    min-width: 80px;
  }
  
  .kv-journey-10-line {
    width: 950px;
  }
  
  .kv-bracket-container {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .kv-bracket-box {
    max-width: 360px;
    margin: 0 auto;
    width: 100%;
  }
  
  .kv-impact-ribbon {
    justify-content: center;
    gap: 30px;
  }
  
  .kv-impact-stat {
    min-width: 120px;
  }
}

@media (max-width: 550px) {
  .kv-gap-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .kv-gap-header {
    flex-direction: column;
    align-items: center;
  }
  
  .kv-fail-row {
    grid-template-columns: 1fr;
  }
  
  .kv-fail-col.kv-fail-good {
    grid-column: span 1;
  }
  
  .kv-sees-grid {
    grid-template-columns: 1fr;
  }
  
  .kv-warning-window {
    grid-column: span 1;
  }
  
  .kv-lost-grid {
    grid-template-columns: 1fr;
  }
  
  .kv-prob-cta-btn-row .kv-btn {
    width: 100%;
    max-width: 320px;
    box-sizing: border-box;
    justify-content: center;
  }
}




