/* --- PREMIUM ADDITIONS --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@keyframes gradientText {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.text-gradient {
  background-size: 200% auto;
  animation: gradientText 4s linear infinite;
}

@keyframes floatGlow {
  0% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-20px) scale(1.1); opacity: 0.6; }
  100% { transform: translateY(0) scale(1); opacity: 0.4; }
}
.bg-glow {
  animation: floatGlow 8s ease-in-out infinite;
}
.bg-glow.bottom-right {
  animation-delay: -4s;
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.price-card {
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  border-radius: var(--radius-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
}
.price-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
  border-color: var(--accent-blue);
}
.price-card.popular {
  border: 1px solid var(--accent-purple);
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.2);
  transform: scale(1.05);
}
.price-card.popular:hover {
  transform: scale(1.05) translateY(-10px);
}
.popular-badge {
  position: absolute;
  top: 25px;
  right: -35px;
  background: var(--accent-purple);
  color: white;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-size: 12px;
  font-weight: bold;
}
.price-amount {
  font-size: 48px;
  font-weight: 800;
  margin: 20px 0;
}
.price-amount span {
  font-size: 18px;
  color: var(--text-muted);
}
.price-features {
  list-style: none;
  margin-bottom: 30px;
  text-align: left;
}
.price-features li {
  margin-bottom: 12px;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-features i {
  color: var(--accent-blue);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--glass-border);
  transform: translateX(-50%);
}
.timeline-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
  position: relative;
}
.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}
.timeline-content {
  width: 45%;
  background: var(--glass-bg);
  padding: 30px;
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  position: relative;
  transition: var(--transition);
}
.timeline-content:hover {
  border-color: var(--accent-blue);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.timeline-dot {
  width: 20px;
  height: 20px;
  background: var(--accent-blue);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 15px var(--accent-blue);
}
@media (max-width: 768px) {
  .timeline::before { left: 20px; }
  .timeline-content { width: calc(100% - 50px); margin-left: 50px; }
  .timeline-item { flex-direction: row !important; justify-content: flex-start; }
  .timeline-dot { left: 20px; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-10px); }
}
