@tailwind base;
@tailwind components;
@tailwind utilities;

:root {
  --primary-color: #3b82f6; /* blue-500 */
  --secondary-color: #8b5cf6; /* violet-500 */
}

body {
  font-family: 'Inter', sans-serif;
  scroll-behavior: smooth;
}

.pricing-card {
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: var(--primary-color);
}

.popular-badge {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  position: absolute;
  top: -12px;
  right: 20px;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 600;
  font-size: 0.8rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.discount-badge {
  background-color: #dc2626;
  color: white;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.price-highlight {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1f2937;
}

.feature-list li {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.feature-list li:before {
  content: "✓";
  color: #10b981;
  font-weight: bold;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.animate-pop-in {
  animation: popIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.pulse-ring {
  position: relative;
}

.pulse-ring:before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  border-radius: inherit;
  border: 2px solid rgba(59, 130, 246, 0.5);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    opacity: 0.7;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
  100% {
    transform: scale(0.95);
    opacity: 0.7;
  }
}