
.em-component {
  max-width: 700px;
  font-family: Arial, sans-serif;
}

.pillar-title {
  color: #0A1628;
  margin-bottom: 20px;
}

.em-row {
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

.em-progress {
  position: absolute;
  top: 50%;
  left: 0;
  height: 4px;
  width: 0%;
  background: #1A5FB4;
  transition: width 1.4s cubic-bezier(.25,.1,.25,1);
}

.em-stage {
  padding: 12px 16px;
  border-radius: 10px;
  color: #fff;
  font-weight: 600;
  opacity: 0;
  transform: scale(.9);
  transition: all .5s cubic-bezier(.25,.1,.25,1);
  z-index: 1;
}

.s1 { background:#2196D4; }
.s2 { background:#1A8BC2; }
.s3 { background:#1A5FB4; }
.s4 { background:#0A1628; }

.em-arrow {
  width: 24px;
  height: 2px;
  background: #1A5FB4;
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: all .4s ease-out;
}

.em-visible { opacity:1 !important; transform:scale(1); }
.em-draw { opacity:1; transform:scaleX(1); }
.em-progress-complete { width:100%; }
