@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: #334155;
  background: #f8fafc;
}

.gradient-text {
  background: linear-gradient(135deg, #3b82f6 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-bg {
  background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
}

.fade-in-up {
  opacity: 0;
  transform: translateY(60px);
  transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.bounce-in {
  opacity: 0;
  transform: scale(0.8) translateY(30px);
  transition: all 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.bounce-in.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.pulse-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.card-shadow {
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
}

.card-shadow:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.popular-badge {
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}

.popular-card {
  position: relative;
  margin-top: 12px;
}

.popular-card:hover {
  transform: translateY(-8px) scale(1.07) !important;
}

@media (min-width: 768px) {
  .popular-card {
    transform: scale(1.05);
    margin-top: 0;
  }
  
  .popular-card:hover {
    transform: translateY(-8px) scale(1.10) !important;
  }
}

.tier-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: all 0.3s ease;
}

.bounce-in:hover .tier-icon {
  transform: rotate(10deg) scale(1.1);
}

.pro-icon { background: linear-gradient(135deg, #8b5cf6 0%, #a855f7 100%); }
.pro-plus-icon { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); }
.max-icon { background: linear-gradient(135deg, #059669 0%, #10b981 100%); }

.pricing-card-button {
  transition: all 0.3s ease;
}

.bounce-in:hover .pricing-card-button {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}
