/* ── WA Mass Modal Premium Styles ─────────────────── */

/* Backdrop */
#wa-mass-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: waMdlFadeIn 0.25s ease;
}

@keyframes waMdlFadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* Card */
.wa-modal-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(6, 12, 26, 0.98));
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  border-radius: 24px;
  border: 1px solid rgba(16, 185, 129, 0.2);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(255, 255, 255, 0.03), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: waMdlSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

@keyframes waMdlSlide {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Ambient glow top */
.wa-modal-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.12) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

/* Header */
.wa-modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.08) 0%, transparent 60%);
  position: relative;
}

.wa-modal-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wa-modal-icon-wrap {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #10b981, #059669);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.4);
  flex-shrink: 0;
}

.wa-modal-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #f1f5f9;
  letter-spacing: -0.02em;
}

.wa-modal-subtitle {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 600;
  margin-top: 1px;
}

.wa-modal-close {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}

.wa-modal-close:hover {
  background: rgba(244, 63, 94, 0.1);
  border-color: rgba(244, 63, 94, 0.2);
  color: #fb7185;
}

/* Body */
.wa-modal-body {
  padding: 24px;
  position: relative;
  overflow-y: auto;
  flex: 1;
}

/* Custom Scrollbar for Modal Body */
.wa-modal-body::-webkit-scrollbar {
  width: 6px;
}

.wa-modal-body::-webkit-scrollbar-track {
  background: transparent;
}

.wa-modal-body::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.wa-modal-body::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 185, 129, 0.3);
}


*::-webkit-scrollbar {
  width: 6px;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

*::-webkit-scrollbar-thumb:hover {
  background: rgba(16, 185, 129, 0.3);
}

/* Status pill: connected */
.wa-status-connected {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  margin-bottom: 20px;
}

.wa-status-dot {
  width: 8px;
  height: 8px;
  background: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10b981;
  animation: pulseDot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(1.4);
  }
}

.wa-status-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #10b981;
}

.wa-status-sub {
  font-size: 0.72rem;
  color: #64748b;
  margin-top: 1px;
}

.wa-status-dc-btn {
  margin-left: auto;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  padding: 4px 10px;
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.wa-status-dc-btn:hover {
  border-color: rgba(244, 63, 94, 0.3);
  color: #fb7185;
}

/* Info rows */
.wa-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.wa-info-row:last-child {
  border-bottom: none;
}

.wa-info-label {
  font-size: 0.8rem;
  color: #64748b;
  font-weight: 600;
}

.wa-info-value {
  font-size: 0.85rem;
  color: #f1f5f9;
  font-weight: 700;
}

.wa-info-value.accent {
  color: #6366f1;
}

/* Template preview */
.wa-template-box {
  background: rgba(6, 12, 26, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
  margin-bottom: 16px;
}

.wa-template-box:hover {
  border-color: rgba(99, 102, 241, 0.3);
  background: rgba(99, 102, 241, 0.04);
}

.wa-template-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #f1f5f9;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-template-text {
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.5;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Anti-ban box */
.wa-antiban-box {
  background: rgba(245, 158, 11, 0.06);
  border: 1px solid rgba(245, 158, 11, 0.18);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.wa-antiban-text {
  font-size: 0.75rem;
  color: #94a3b8;
  line-height: 1.5;
}

.wa-antiban-text strong {
  color: #f59e0b;
}

/* Start button */
.wa-start-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 24px rgba(16, 185, 129, 0.35);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  letter-spacing: -0.01em;
  position: relative;
  overflow: hidden;
}

.wa-start-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
  border-radius: inherit;
}

.wa-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.45);
  filter: brightness(1.06);
}

.wa-start-btn:active {
  transform: translateY(0);
}

/* ── PROGRESS STATE ─────────────────── */

/* Circular progress ring enhanced */
.wa-progress-ring-wrap {
  position: relative;
  width: 160px;
  height: 160px;
  margin: 0 auto 24px;
}

.wa-progress-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  animation: waGlowPulse 2.5s ease-in-out infinite;
}

@keyframes waGlowPulse {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.12);
  }
}

.wa-progress-ring-svg {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.4));
}

.wa-progress-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 3;
}

.wa-progress-pct {
  font-size: 2.2rem;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.04em;
}

.wa-progress-count {
  font-size: 0.72rem;
  font-weight: 700;
  color: #10b981;
  margin-top: 3px;
  letter-spacing: 0.02em;
}

/* Progress stats strip */
.wa-stats-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  margin-bottom: 16px;
}

.wa-stat-chip {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 10px 12px;
  text-align: center;
}

.wa-stat-chip-val {
  font-size: 1rem;
  font-weight: 800;
  color: #f1f5f9;
  line-height: 1;
}

.wa-stat-chip-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 3px;
}

.wa-stat-chip.green .wa-stat-chip-val {
  color: #10b981;
}

.wa-stat-chip.amber .wa-stat-chip-val {
  color: #f59e0b;
}

.wa-stat-chip.indigo .wa-stat-chip-val {
  color: #818cf8;
}

/* Terminal logs */
.wa-terminal {
  background: #0a0f1e;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 12px 14px;
  height: 130px;
  overflow-y: auto;
  font-family: 'Consolas', 'Courier New', monospace;
  font-size: 0.73rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 5px;
  scroll-behavior: smooth;
  margin-bottom: 16px;
  position: relative;
}

.wa-terminal::before {
  content: '● ○ ○';
  position: absolute;
  top: 8px;
  left: 12px;
  font-size: 0.6rem;
  color: #1e293b;
  letter-spacing: 4px;
  pointer-events: none;
}

.wa-log-entry {
  display: flex;
  gap: 8px;
  animation: waLogFadeIn 0.3s ease;
}

@keyframes waLogFadeIn {
  from {
    opacity: 0;
    transform: translateY(4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.wa-log-time {
  color: #1e3a5f;
  flex-shrink: 0;
}

.wa-log-sent {
  color: #10b981;
}

.wa-log-wait {
  color: #f59e0b;
}

.wa-log-error {
  color: #ef4444;
}

.wa-log-info {
  color: #6366f1;
}

.wa-log-sys {
  color: #475569;
}

/* Current action bar */
.wa-action-bar {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.wa-action-label {
  font-size: 0.68rem;
  color: #475569;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.wa-action-text {
  font-size: 0.82rem;
  color: #f1f5f9;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa-time-label {
  font-size: 0.68rem;
  color: #475569;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
  text-align: right;
}

.wa-time-value {
  font-size: 0.95rem;
  color: #f59e0b;
  font-weight: 800;
  text-align: right;
}

/* Stop button */
.wa-stop-btn {
  width: 100%;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  color: #ef4444;
  padding: 13px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.wa-stop-btn:hover {
  background: rgba(239, 68, 68, 0.15);
  border-color: rgba(239, 68, 68, 0.35);
  transform: translateY(-1px);
}

/* ── DONE STATE ─────────────────────────── */
.wa-done-wrap {
  text-align: center;
  padding: 20px 0;
}

.wa-done-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.1);
  border: 2px solid rgba(16, 185, 129, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #10b981;
  animation: waDonePopin 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes waDonePopin {
  from {
    opacity: 0;
    transform: scale(0.5);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.wa-done-title {
  font-size: 1.3rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.wa-done-sub {
  font-size: 0.88rem;
  color: #64748b;
  margin-bottom: 24px;
}

.wa-done-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.wa-done-chip {
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
}

.wa-done-chip-val {
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
}

.wa-done-chip-val.green {
  color: #10b981;
}

.wa-done-chip-val.red {
  color: #ef4444;
}

.wa-done-chip-lbl {
  font-size: 0.65rem;
  font-weight: 700;
  color: #475569;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.wa-done-close-btn {
  width: 100%;
  background: linear-gradient(135deg, #10b981, #059669);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
  transition: all 0.2s;
}

.wa-done-close-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-2px);
}

/* ── LOADING STATE ─────────────────────── */
.wa-loading-state {
  text-align: center;
  padding: 32px 0;
}

.wa-loading-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(16, 185, 129, 0.1);
  border-top-color: #10b981;
  border-right-color: #34d399;
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
  margin: 0 auto 16px;
}

.wa-loading-text {
  font-size: 0.88rem;
  color: #64748b;
  font-weight: 600;
}

/* ── QR CODE STATE ─────────────────────── */
.wa-qr-state {
  text-align: center;
  padding: 8px 0;
}

.wa-qr-text {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 16px;
  line-height: 1.5;
}

.wa-qr-frame {
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  display: inline-block;
  margin-bottom: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.wa-qr-hint {
  font-size: 0.78rem;
  color: #475569;
  max-width: 280px;
  margin: 0 auto 20px;
  line-height: 1.5;
}

.wa-qr-refresh-btn {
  background: rgba(99, 102, 241, 0.1);
  border: 1px solid rgba(99, 102, 241, 0.2);
  color: #818cf8;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.wa-qr-refresh-btn:hover {
  background: rgba(99, 102, 241, 0.18);
  transform: translateY(-1px);
}

/* ── SENDING heading ────────────────────── */
.wa-sending-title {
  font-size: 1.15rem;
  font-weight: 800;
  background: linear-gradient(135deg, #34d399, #10b981);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  text-align: center;
}

.wa-sending-warn {
  font-size: 0.78rem;
  color: #94a3b8;
  background: rgba(239, 68, 68, 0.06);
  border: 1px solid rgba(239, 68, 68, 0.15);
  border-radius: 8px;
  padding: 6px 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
}

.wa-sending-warn-dot {
  width: 6px;
  height: 6px;
  background: #ef4444;
  border-radius: 50%;
  box-shadow: 0 0 6px #ef4444;
  animation: pulseDot 1.5s infinite;
  flex-shrink: 0;
}

/* ── Mass Enrich Modal ─────────────────── */
.mass-enrich-card {
  background: linear-gradient(145deg, rgba(15, 23, 42, 0.98), rgba(6, 12, 26, 0.98));
  width: 90%;
  max-width: 460px;
  border-radius: 24px;
  border: 1px solid rgba(99, 102, 241, 0.2);
  box-shadow: 0 32px 64px -12px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: 28px;
  text-align: center;
  position: relative;
  animation: waMdlSlide 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.mass-enrich-card::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mass-enrich-icon {
  font-size: 2.5rem;
  margin-bottom: 12px;
  display: block;
}

.mass-enrich-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #f1f5f9;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.mass-enrich-sub {
  font-size: 0.85rem;
  color: #64748b;
  margin-bottom: 20px;
  line-height: 1.5;
}

.mass-enrich-info-box {
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 20px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.me-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.me-row-label {
  font-size: 0.82rem;
  color: #64748b;
  font-weight: 600;
}

.me-row-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: #f1f5f9;
}

.me-row-val.red {
  color: #ef4444;
}

.me-row-val.green {
  color: #10b981;
}

.mass-enrich-prog-bar-wrap {
  display: none;
  margin-bottom: 20px;
  text-align: left;
}

.me-prog-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.me-prog-status {
  font-size: 0.82rem;
  font-weight: 700;
  color: #f1f5f9;
}

.me-prog-count {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6366f1;
}

.me-prog-track {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
}

.me-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #818cf8);
  border-radius: 999px;
  transition: width 0.35s ease;
  width: 0%;
}

.mass-enrich-actions {
  display: flex;
  gap: 12px;
}

.me-btn-cancel {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #64748b;
  padding: 12px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s;
}

.me-btn-cancel:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #94a3b8;
}

.me-btn-confirm {
  flex: 2;
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
  transition: all 0.2s;
}

.me-btn-confirm:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
}

/* Enrich loading upgrade */
.enrich-loading-premium {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  padding: 60px 20px;
}

.enrich-ring-outer {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 20px;
}

.enrich-ring-outer::before,
.enrich-ring-outer::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
  animation: spin 1.1s linear infinite;
}

.enrich-ring-outer::before {
  border-top-color: #6366f1;
  border-right-color: #0ea5e9;
}

.enrich-ring-outer::after {
  inset: 10px;
  border-top-color: rgba(16, 185, 129, 0.7);
  animation-duration: 0.85s;
  animation-direction: reverse;
}

.enrich-prog-wrap {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.enrich-prog-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.enrich-prog-name {
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
  max-width: 68%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.enrich-prog-pct {
  font-size: 0.78rem;
  font-weight: 700;
  color: #818cf8;
}

.enrich-prog-track {
  width: 100%;
  height: 6px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 8px;
}

.enrich-prog-fill {
  height: 100%;
  background: linear-gradient(90deg, #6366f1, #818cf8);
  border-radius: 999px;
  transition: width 0.4s ease;
  width: 0%;
}

.enrich-prog-counter {
  text-align: center;
  font-size: 0.78rem;
  color: #475569;
  font-weight: 600;
}