'use client'; import React from 'react'; export default function StageHeader({ stage, currentOrgStage, isExpanded, onToggle }) { const isLocked = stage.id > currentOrgStage; const isPast = stage.id < currentOrgStage; const isCurrent = stage.id === currentOrgStage; return (