/* Pricing Section */
.pricing-section {
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

.pricing-section .section-header {
  text-align: center;
  margin-bottom: 48px;
  animation: fadeInUp 0.8s ease;
}

.pricing-section .section-title {
  font-size: 38px !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  letter-spacing: -1px !important;
  margin-bottom: 16px !important;
  color: #ffffff !important;
}

.pricing-section .section-description {
  font-size: 15px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  max-width: 600px !important;
  margin: 0 auto !important;
  font-weight: 600 !important;
  letter-spacing: -0.2px !important;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  align-items: stretch;
}

.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 36px 32px 32px 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 24px rgba(0, 0, 0, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #06b6d4, #0ea5e9);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.pricing-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pricing-card:hover::before {
  transform: scaleX(1);
}

.pricing-card:hover::after {
  opacity: 1;
}

.pricing-card:hover {
  transform: translateY(-12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(6, 182, 212, 0.4);
  box-shadow: 
    0 20px 60px rgba(6, 182, 212, 0.25),
    0 0 0 1px rgba(6, 182, 212, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card-featured {
  border: 2px solid rgba(6, 182, 212, 0.5);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.08) 0%, rgba(14, 165, 233, 0.04) 100%);
  transform: scale(1.02);
  box-shadow: 
    0 8px 32px rgba(6, 182, 212, 0.3),
    0 0 0 1px rgba(6, 182, 212, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.pricing-card-featured::before {
  background: linear-gradient(90deg, #06b6d4, #0ea5e9, #06b6d4);
  background-size: 200% 100%;
  transform: scaleX(1);
  animation: shimmer 3s ease-in-out infinite;
}

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

.pricing-card-featured:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 
    0 24px 80px rgba(6, 182, 212, 0.4),
    0 0 0 1px rgba(6, 182, 212, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.pricing-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  backdrop-filter: blur(10px);
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-badge-featured {
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.25), rgba(14, 165, 233, 0.25));
  border-color: rgba(6, 182, 212, 0.5);
  color: #06b6d4;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.2);
}

.pricing-badge-premium {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(249, 115, 22, 0.25));
  border-color: rgba(245, 158, 11, 0.5);
  color: #f59e0b;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
}

.pricing-title {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  margin-bottom: 16px !important;
  line-height: 1.2 !important;
  text-align: left !important;
  min-height: 29px !important;
}

.pricing-discount {
  margin-bottom: 12px !important;
  min-height: 20px !important;
}

.price-old {
  font-size: 14px;
  color: #94a3b8;
  text-decoration: line-through;
  display: block;
  margin-bottom: 6px;
}

.pricing-price {
  margin-bottom: 12px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 48px !important;
}

.price-amount {
  font-size: 48px !important;
  font-weight: 900 !important;
  background: linear-gradient(135deg, #10b981, #14b8a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1 !important;
}

.price-premium {
  background: linear-gradient(135deg, #f59e0b, #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price-period {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.discount-badge {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.discount-premium {
  background: rgba(245, 158, 11, 0.15);
  color: #fcd34d;
  border-color: rgba(245, 158, 11, 0.3);
}

.countdown-timer {
  padding: 10px 12px;
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-radius: 8px;
  margin-bottom: 16px !important;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  min-height: 58px;
  justify-content: center;
}

.countdown-premium {
  background: rgba(245, 158, 11, 0.08);
  border-color: rgba(245, 158, 11, 0.2);
}

.countdown-label {
  font-size: 9px;
  color: #fca5a5;
  font-weight: 700;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  width: 100%;
  text-align: center;
}

.countdown-premium .countdown-label {
  color: #fcd34d;
}

.countdown-display {
  display: flex;
  gap: 4px;
  width: 100%;
  justify-content: center;
}

.pricing-description {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px !important;
  margin-bottom: 24px !important;
  line-height: 1.5 !important;
  min-height: 78px !important;
  font-weight: 400 !important;
  text-align: left !important;
}

.pricing-features {
  list-style: none;
  margin-bottom: auto;
  padding: 0;
  flex-grow: 1;
}

.pricing-features li {
  padding: 10px 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.5 !important;
  font-weight: 400 !important;
  text-align: left !important;
}

.pricing-features .check {
  color: #10b981;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-features .cross {
  color: rgba(255, 255, 255, 0.25);
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.pricing-btn {
  width: 100%;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 15px !important;
  font-weight: 600 !important;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  flex-shrink: 0;
}

.pricing-btn-primary {
  background: linear-gradient(135deg, #06b6d4, #0ea5e9);
  color: white;
  box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.pricing-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(6, 182, 212, 0.5);
}

.pricing-btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(6, 182, 212, 0.3);
  transform: translateY(-2px);
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}

/* Tablet */
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 500px;
  }

  .pricing-card-featured {
    transform: scale(1);
  }

  .pricing-card-featured:hover {
    transform: translateY(-8px) scale(1);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .pricing-section {
    padding: 50px 0;
  }

  .pricing-section .section-header {
    margin-bottom: 36px;
  }

  .pricing-section .section-title {
    font-size: 34px !important;
  }

  .pricing-section .section-description {
    font-size: 14px !important;
  }

  .pricing-grid {
    margin-top: 32px;
  }

  .pricing-card {
    padding: 28px 24px;
  }

  .pricing-title {
    font-size: 24px !important;
  }

  .price-amount {
    font-size: 40px !important;
  }

  .pricing-features li {
    font-size: 13px !important;
    padding: 8px 0;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 0;
  }

  .pricing-section .section-title {
    font-size: 30px !important;
  }

  .pricing-section .section-description {
    font-size: 13px !important;
  }
}
