.lew-construction-progress { display: flex; flex-direction: column; gap: var(--lew-space-6); margin: var(--lew-space-6) 0; }
.lew-progress-item { display: flex; align-items: center; gap: var(--lew-space-4); }
.lew-progress-icon { flex-shrink: 0; width: 44px; height: 44px; border-radius: 50%; background: var(--lew-color-surface); color: var(--lew-color-primary); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
.lew-progress-info { display: flex; flex: 1; justify-content: space-between; align-items: baseline; margin-bottom: 6px; }
.lew-progress-label { font-weight: 600; color: var(--lew-color-text); }
.lew-progress-value { font-weight: 700; color: var(--lew-color-primary); font-size: 1.1rem; }
.lew-progress-item { flex-wrap: wrap; }
.lew-progress-item .lew-progress-info { flex-basis: 100%; order: 1; }
.lew-progress-item .lew-progress-bar-container { flex-basis: 100%; order: 2; }
.lew-progress-bar-container { width: 100%; height: 10px; background: var(--lew-color-surface); border-radius: 999px; overflow: hidden; }
.lew-progress-bar { height: 100%; background: linear-gradient(90deg, var(--lew-color-primary), var(--lew-color-primary-dark)); border-radius: 999px; transition: width 1.2s ease; }
