/* Welcome Banner */
.welcome-banner {
  background: linear-gradient(135deg, #c94b4b 0%, #4a148c 50%, #1565c0 100%);
  border-radius: 16px;
  padding: 2rem;
  color: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.status-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.75rem;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  display: inline-block;
}

/* Premium badge as span (for initial state before JS) */
.premium-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 0.375rem 0.875rem;
  border-radius: 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-premium {
  background: #10b981;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-premium:hover {
  background: #059669;
  color: white;
}

/* Section Headers */
.section-header {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1e293b;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Action Cards */
.action-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid #f1f5f9;
  height: 100%;
  cursor: pointer;
}

.action-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #e2e8f0;
}

.action-card.active {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.action-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.75rem;
  color: white;
}

.bg-orange { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.bg-success { background: linear-gradient(135deg, #10b981, #059669); }
.bg-danger { background: linear-gradient(135deg, #ef4444, #dc2626); }
.bg-warning { background: linear-gradient(135deg, #fbbf24, #f59e0b); }

.action-card h5 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #1e293b;
}

.btn-action {
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  padding: 0.625rem 1rem;
  border: none;
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-action:hover {
  transform: scale(1.02);
  color: white;
}

.btn-orange { background: linear-gradient(135deg, #ff6b35, #f7931e); }
.btn-orange:hover { background: linear-gradient(135deg, #f7931e, #ff6b35); }

.btn-success { background: linear-gradient(135deg, #10b981, #059669); }
.btn-success:hover { background: linear-gradient(135deg, #059669, #10b981); }

.btn-danger { background: linear-gradient(135deg, #ef4444, #dc2626); }
.btn-danger:hover { background: linear-gradient(135deg, #dc2626, #ef4444); }

.btn-warning { background: linear-gradient(135deg, #fbbf24, #f59e0b); color: #78350f; }
.btn-warning:hover { background: linear-gradient(135deg, #f59e0b, #fbbf24); color: #78350f; }

/* Progress Cards */
.progress-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border: 2px solid #f1f5f9;
  transition: all 0.3s ease;
}

.progress-card:hover {
  border-color: #e2e8f0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.progress-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.bg-primary-light { background: #dbeafe; color: #1e40af; }
.bg-success-light { background: #d1fae5; color: #065f46; }
.bg-danger-light { background: #fee2e2; color: #991b1b; }
.bg-warning-light { background: #fef3c7; color: #92400e; }

.progress-content {
  flex: 1;
}

.progress-value {
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.progress-label {
  font-size: 0.875rem;
  color: #64748b;
  font-weight: 500;
}

/* Readiness Card */
.readiness-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid #f1f5f9;
}

.readiness-percentage {
  font-size: 1.5rem;
  font-weight: 700;
  color: #10b981;
}

.readiness-progress {
  height: 12px;
  border-radius: 10px;
  background: #f1f5f9;
}

.readiness-progress .progress-bar {
  border-radius: 10px;
  background: linear-gradient(90deg, #10b981 0%, #3b82f6 100%);
  transition: width 0.5s ease;
}

.readiness-status {
  font-weight: 600;
  color: #64748b;
}

/* Activity Card */
.activity-card {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  border: 2px solid #f1f5f9;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #f1f5f9;
  transition: background 0.2s ease;
}

.activity-item:hover {
  background: #f8fafc;
  border-radius: 8px;
}

.activity-item:last-child {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .welcome-banner {
    padding: 1.5rem;
  }
  
  .welcome-banner h1 {
    font-size: 1.5rem;
  }
  
  .action-icon {
    width: 56px;
    height: 56px;
    font-size: 1.5rem;
  }
}
