/* Pricing Section Styles */
.pricing-section {
  position: relative;
  padding: 120px 20px;
  background: radial-gradient(circle at 50% 50%, rgba(0, 85, 255, 0.05) 0%, transparent 70%);
  overflow: hidden;
}

/* Background Elements */
.pricing-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(0, 85, 255, 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(0, 255, 136, 0.05) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

/* Container Adjustments */
.pricing-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
}

/* Plan Card Styling */
.plan-card {
  position: relative;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 40px;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

/* Hover Effect */
.plan-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 85, 255, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.02);
}

/* Featured Card (Professional) */
.plan-card.featured {
  background: linear-gradient(145deg, rgba(0, 85, 255, 0.08), rgba(0, 85, 255, 0.02));
  border: 1px solid rgba(0, 85, 255, 0.3);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(0, 85, 255, 0.3);
  transform: scale(1.05);
  z-index: 10;
}

.plan-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
  box-shadow:
    0 40px 80px rgba(0, 85, 255, 0.2),
    0 0 0 1px rgba(0, 85, 255, 0.5),
    inset 0 0 30px rgba(0, 85, 255, 0.1);
}

/* Featured Badge */
.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, #0055ff, #0088ff);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0, 85, 255, 0.4);
}

/* Typography */
.plan-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.plan-description {
  color: #9ca3af;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 2rem;
  min-height: 42px;
  /* Alignment fix */
}

/* Price Tag */
.plan-price {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
}

/* Features List */
.plan-features {
  margin-top: auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #d1d5db;
  font-size: 0.95rem;
}

.feature-icon {
  width: 20px;
  height: 20px;
  color: #0088ff;
  flex-shrink: 0;
}

.plan-card.featured .feature-icon {
  color: #00ff88;
}

/* CTA Button */
.plan-button {
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Basic & Enterprise Button */
.plan-button-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-button-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Professional (Featured) Button */
.plan-button-primary {
  background: linear-gradient(135deg, #0055ff 0%, #0088ff 100%);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 85, 255, 0.25);
}

.plan-button-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.plan-button-primary:hover::before {
  left: 100%;
}

.plan-button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 85, 255, 0.4);
}

/* Header Text */
.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #ffffff 0%, #a0a0a0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.pricing-subtitle {
  color: #9ca3af;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}