/* Enhanced animations and interactions for PRO analytics */
.awp-analytics-dashboard--pro .awp-stat-card {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.awp-analytics-dashboard--pro .awp-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.awp-analytics-dashboard--pro .awp-tab-content {
  animation: awpFadeIn 0.3s ease-in-out;
}
@keyframes awpFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

