/**
 * wizard-dashboard.css
 * BAE-Quality Styles for Business Credit Wizard Dashboard
 * Phase 1 Token Integration – (Jan 2025)
 * Phase 1.1 Hotfix – Color Semantics Correction (Dec 2025)
 * 
 * Aligned with WowDash component patterns and modern design principles.
 * 
 * PHASE 1 TOKEN INTEGRATION:
 * - Hero icon uses var(--gbc-primary) with gradient
 * - Progress bars use brand colors
 * - Active states use token-based primary
 * 
 * PHASE 1.1 SEMANTIC FIX:
 * - In-progress = Primary Indigo (NOT orange)
 * - Locked = Upgrade Orange (NOT purple)
 * - Complete = Success Green (unchanged)
 * - Errors = Danger Red only
 */

/* =========================================================================
   HERO HEADER
   ========================================================================= */
.wizard-hero-wrapper {
  margin-bottom: 24px;
}

.wizard-hero {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 1px solid #e3e6ef;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.wizard-hero-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.wizard-hero-icon {
  width: 56px;
  height: 56px;
  /* Phase 1: Token-based primary gradient */
  background: linear-gradient(135deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(48, 62, 139, 0.3);
}

.wizard-hero-text {
  flex: 1;
}

.wizard-hero-title {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px 0;
  line-height: 1.3;
}

.wizard-hero-subtitle {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.wizard-hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  min-width: 280px;
}

.wizard-hero-overall {
  width: 100%;
}

.wizard-hero-progress-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.wizard-hero-label {
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wizard-hero-percent {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
}

.wizard-hero-progress-bar {
  height: 10px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 4px;
}

.wizard-hero-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wizard-hero-progress-text {
  font-size: 11px;
  color: #94a3b8;
  text-align: right;
}

.wizard-hero-current {
  width: 100%;
}

.wizard-hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
}

.wizard-hero-pill--active {
  background: linear-gradient(135deg, #fef3c7 0%, #fde047 100%);
  color: #92400e;
  border-color: #fbbf24;
}

.wizard-hero-pill--complete {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border-color: #10b981;
}

.wizard-hero-pill iconify-icon {
  font-size: 14px;
}

.wizard-hero-status {
  display: flex;
  justify-content: flex-end;
}

.wizard-hero-status-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid #e2e8f0;
}

.wizard-hero-status-pill--success {
  background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
  color: #065f46;
  border-color: #10b981;
}

.wizard-hero-status-pill iconify-icon {
  font-size: 13px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .wizard-hero {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .wizard-hero-right {
    width: 100%;
    align-items: stretch;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  .wizard-hero {
    padding: 20px;
  }
  
  .wizard-hero-left {
    gap: 12px;
  }
  
  .wizard-hero-icon {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  
  .wizard-hero-title {
    font-size: 20px;
  }
}

/* =========================================================================
   PHASE CARDS GRID
   P1: Updated to 4-column layout so 7 phases + NBA card never looks unfinished
   ========================================================================= */
.wizard-phase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

@media (max-width: 1199.98px) {
  .wizard-phase-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .wizard-phase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {
  .wizard-phase-grid {
    grid-template-columns: 1fr;
  }
}

/* Skeleton placeholders */
.wizard-phase-card-skeleton {
  background: #ffffff;
  border: 1px solid #e3e6ef;
  border-radius: 16px;
  padding: 20px;
  min-height: 280px;
}

/* =========================================================================
   PHASE CARD
   ========================================================================= */
.wizard-phase-card {
  background: #ffffff;
  border: 1px solid #e3e6ef;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1),
              border-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  position: relative;
  overflow: hidden;
}

.wizard-phase-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #cbd5e1;
  transition: background 0.3s ease;
}

.wizard-phase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
  border-color: #cbd5e1;
}

/* State-based styling */
.wizard-phase-card--state-complete::before {
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.wizard-phase-card--state-complete:hover {
  border-color: #22c55e;
}

.wizard-phase-card--state-in-progress::before {
  /* Phase 1.1: In-progress = Primary Indigo */
  background: linear-gradient(180deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
}

.wizard-phase-card--state-in-progress:hover {
  border-color: var(--gbc-primary, #303E8B);
}

.wizard-phase-card--state-not-started::before {
  background: linear-gradient(180deg, #94a3b8 0%, #64748b 100%);
}

.wizard-phase-card--state-locked::before {
  /* Phase 1.1: Locked = Upgrade Orange */
  background: linear-gradient(180deg, var(--gbc-upgrade, #FF8A00) 0%, var(--gbc-upgrade-dark, #CC6E00) 100%);
}

.wizard-phase-card--state-locked:hover {
  border-color: var(--gbc-upgrade, #FF8A00);
}

/* =========================================================================
   PHASE CARD HEADER
   ========================================================================= */
.wizard-phase-card-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wizard-phase-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  color: #ffffff;
  transition: transform 0.2s ease;
}

.wizard-phase-card:hover .wizard-phase-icon {
  transform: scale(1.05);
}

/* Icon colors by state */
.wizard-phase-card--state-complete .wizard-phase-icon {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.wizard-phase-card--state-in-progress .wizard-phase-icon {
  /* Phase 1.1: In-progress = Primary Indigo */
  background: linear-gradient(135deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
  box-shadow: 0 4px 12px rgba(48, 62, 139, 0.3);
}

.wizard-phase-card--state-not-started .wizard-phase-icon {
  background: linear-gradient(135deg, #94a3b8 0%, #64748b 100%);
  box-shadow: 0 4px 12px rgba(148, 163, 184, 0.2);
}

.wizard-phase-card--state-locked .wizard-phase-icon {
  /* Phase 1.1: Locked = Upgrade Orange */
  background: linear-gradient(135deg, var(--gbc-upgrade, #FF8A00) 0%, var(--gbc-upgrade-dark, #CC6E00) 100%);
  box-shadow: 0 4px 12px rgba(255, 138, 0, 0.3);
}

.wizard-phase-title-block {
  flex: 1;
  min-width: 0;
}

.wizard-phase-name {
  font-size: 11px;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 2px;
}

.wizard-phase-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.wizard-phase-status-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Status pill colors */
.wizard-phase-card--state-complete .wizard-phase-status-pill {
  background: #dcfce7;
  color: #15803d;
}

.wizard-phase-card--state-in-progress .wizard-phase-status-pill {
  /* Phase 1.1: In-progress = Primary Indigo subtle */
  background: var(--gbc-primary-subtle, #E8EAF4);
  color: var(--gbc-primary, #303E8B);
}

.wizard-phase-card--state-not-started .wizard-phase-status-pill {
  background: #f1f5f9;
  color: #475569;
}

.wizard-phase-card--state-locked .wizard-phase-status-pill {
  /* Phase 1.1: Locked = Upgrade Orange subtle */
  background: var(--gbc-upgrade-subtle, #FFF3E0);
  color: var(--gbc-upgrade-dark, #CC6E00);
}

/* =========================================================================
   PHASE CARD BODY
   ========================================================================= */
.wizard-phase-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-phase-progress-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wizard-phase-progress-label {
  font-size: 11px;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.wizard-phase-progress-meta {
  font-size: 12px;
  font-weight: 600;
  color: #0f172a;
}

.wizard-phase-progress-bar {
  height: 8px;
  background: #f1f5f9;
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.wizard-phase-progress-fill {
  height: 100%;
  border-radius: 999px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

/* Progress bar colors by state */
.wizard-phase-card--state-complete .wizard-phase-progress-fill {
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
}

.wizard-phase-card--state-in-progress .wizard-phase-progress-fill {
  /* Phase 1.1: In-progress = Primary Indigo */
  background: linear-gradient(90deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
}

.wizard-phase-card--state-not-started .wizard-phase-progress-fill {
  background: linear-gradient(90deg, #94a3b8 0%, #64748b 100%);
}

.wizard-phase-card--state-locked .wizard-phase-progress-fill {
  /* Phase 1.1: Locked = Upgrade Orange */
  background: linear-gradient(90deg, var(--gbc-upgrade, #FF8A00) 0%, var(--gbc-upgrade-dark, #CC6E00) 100%);
}

/* Lock messages */
.wizard-phase-lock-message {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  /* Phase 1.1: Locked = Upgrade Orange */
  background: rgba(255, 138, 0, 0.08);
  border: 1px solid rgba(255, 138, 0, 0.2);
  border-radius: 8px;
  font-size: 12px;
  color: var(--gbc-upgrade-dark, #CC6E00);
  line-height: 1.4;
}

.wizard-phase-lock-message iconify-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.wizard-phase-lock-message--prereq {
  background: rgba(220, 38, 38, 0.08);
  border-color: rgba(220, 38, 38, 0.2);
  color: #991b1b;
}

/* =========================================================================
   PHASE CARD FOOTER
   ========================================================================= */
.wizard-phase-card-footer {
  display: flex;
  gap: 8px;
  align-items: center;
}

.wizard-phase-lessons-btn {
  flex: 0 0 auto;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #475569;
  transition: all 0.2s ease;
}

.wizard-phase-lessons-btn:hover {
  background: #f8fafc;
  border-color: #cbd5e1;
  color: #0f172a;
}

.wizard-phase-lessons-btn iconify-icon {
  font-size: 16px;
}

.wizard-phase-primary-btn {
  flex: 1;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  /* Phase 1: Token-based primary CTA */
  background: linear-gradient(135deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
  border: none;
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(48, 62, 139, 0.25);
}

.wizard-phase-primary-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(48, 62, 139, 0.35);
}

.wizard-phase-primary-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

.wizard-phase-primary-btn iconify-icon {
  font-size: 16px;
}

/* Button variants by state */
.wizard-phase-primary-btn--complete {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.25);
}

.wizard-phase-primary-btn--complete:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.35);
}

.wizard-phase-primary-btn--in-progress {
  /* Phase 1.1: In-progress = Primary Indigo */
  background: linear-gradient(135deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
  box-shadow: 0 2px 8px rgba(48, 62, 139, 0.25);
}

.wizard-phase-primary-btn--in-progress:hover:not(:disabled) {
  box-shadow: 0 4px 12px rgba(48, 62, 139, 0.35);
}

.wizard-phase-primary-btn--locked {
  background: #94a3b8;
  box-shadow: none;
}

/* =========================================================================
   NEXT RECOMMENDED ACTION
   ========================================================================= */
.wizard-next-action {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border: 1px solid #bae6fd;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.08);
}

.wizard-next-action--complete {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
  border-color: #bbf7d0;
  box-shadow: 0 4px 16px rgba(34, 197, 94, 0.08);
}

.wizard-next-left {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1;
}

.wizard-next-icon {
  width: 52px;
  height: 52px;
  /* Phase 1: Token-based primary gradient */
  background: linear-gradient(135deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 26px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(48, 62, 139, 0.3);
}

.wizard-next-icon--complete {
  /* Phase 1: Token-based success green */
  background: linear-gradient(135deg, var(--gbc-success, #2CC207) 0%, var(--gbc-success-dark, #1F9005) 100%);
  box-shadow: 0 4px 12px rgba(44, 194, 7, 0.3);
}

.wizard-next-text {
  flex: 1;
}

.wizard-next-title {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 4px;
}

.wizard-next-subtitle {
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.wizard-next-right {
  flex-shrink: 0;
}

.wizard-next-right .btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--gbc-shadow-primary-sm, 0 2px 8px rgba(48, 62, 139, 0.25));
}

.wizard-next-right .btn:hover {
  transform: translateY(-1px);
  box-shadow: var(--gbc-shadow-primary-lg, 0 4px 12px rgba(48, 62, 139, 0.35));
}

.wizard-next-right .btn iconify-icon {
  font-size: 16px;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
  .wizard-next-action {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
  }
  
  .wizard-next-right {
    width: 100%;
  }
  
  .wizard-next-right .btn {
    width: 100%;
  }
}

/* =========================================================================
   NBA CARD (Next Best Action) - Concierge V1 Surface
   P1: Fits in phase grid as 8th item, concierge-branded guidance
   ========================================================================= */
.wizard-nba-card {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border: 2px solid var(--gbc-primary-100, rgba(48, 62, 139, 0.15));
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 4px 16px rgba(48, 62, 139, 0.08);
  position: relative;
  overflow: hidden;
  min-height: 280px;
}

.wizard-nba-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-secondary, #5BB6D0) 100%);
}

.wizard-nba-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wizard-nba-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--gbc-primary, #303E8B) 0%, var(--gbc-primary-dark, #202C5D) 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 22px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(48, 62, 139, 0.25);
}

.wizard-nba-title-block {
  flex: 1;
}

.wizard-nba-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, var(--gbc-primary-50, #E8EAF4) 0%, var(--gbc-secondary-subtle, #E3F2F7) 100%);
  color: var(--gbc-primary, #303E8B);
  border: 1px solid var(--gbc-primary-100, rgba(48, 62, 139, 0.15));
  margin-bottom: 4px;
}

.wizard-nba-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--gbc-text-primary, #1f2937);
  margin: 0;
  line-height: 1.3;
}

.wizard-nba-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wizard-nba-description {
  font-size: 13px;
  color: var(--gbc-text-secondary, #64748b);
  line-height: 1.5;
  margin: 0;
}

.wizard-nba-context {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  background: var(--gbc-surface-2, #f9fafb);
  border-radius: 8px;
  border: 1px solid var(--gbc-border-color, #e5e7eb);
}

.wizard-nba-context-icon {
  color: var(--gbc-primary, #303E8B);
  font-size: 18px;
  flex-shrink: 0;
}

.wizard-nba-context-text {
  font-size: 12px;
  color: var(--gbc-text-secondary, #64748b);
}

.wizard-nba-context-text strong {
  color: var(--gbc-text-primary, #1f2937);
}

.wizard-nba-card-footer {
  display: flex;
  gap: 10px;
  margin-top: auto;
}

.wizard-nba-primary-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  background: var(--gbc-primary, #303E8B);
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.wizard-nba-primary-btn:hover {
  background: var(--gbc-primary-dark, #202C5D);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(48, 62, 139, 0.3);
}

.wizard-nba-secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  background: transparent;
  color: var(--gbc-text-secondary, #64748b);
  border: 1px solid var(--gbc-border-color, #e5e7eb);
  cursor: pointer;
  transition: all 0.2s ease;
}

.wizard-nba-secondary-btn:hover {
  background: var(--gbc-surface-2, #f9fafb);
  color: var(--gbc-text-primary, #1f2937);
  border-color: var(--gbc-neutral-300, #d1d5db);
}

/* NBA Complete state */
.wizard-nba-card--complete {
  background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
  border-color: var(--gbc-success-light, #86efac);
}

.wizard-nba-card--complete::before {
  background: linear-gradient(90deg, var(--gbc-success, #45B369) 0%, #22c55e 100%);
}

.wizard-nba-card--complete .wizard-nba-icon {
  background: linear-gradient(135deg, var(--gbc-success, #45B369) 0%, #16a34a 100%);
  box-shadow: 0 4px 12px rgba(69, 179, 105, 0.25);
}

/* =========================================================================
   UTILITIES
   ========================================================================= */

/* Ensure iconify icons align properly */
iconify-icon {
  display: inline-block;
  vertical-align: middle;
}

/* Smooth transitions for all interactive elements */
.wizard-phase-card *,
.wizard-hero *,
.wizard-next-action * {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
