/* Pricing section styles */

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.pricing-card {
  width: 100%;
  max-width: 365px;
  background: var(--neo-surface);
  border-radius: var(--radius-xl);
  padding: 32px 24px;
  box-shadow: 10px 10px 20px var(--neo-shadow-dark), -10px -10px 20px var(--neo-shadow-light);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 12px 12px 24px var(--neo-shadow-dark), -12px -12px 24px var(--neo-shadow-light);
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--color-primary);
  padding: 5px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: 0;
  align-self: flex-start;
  text-transform: uppercase;
}

.pricing-badge.badge-free {
  background: rgba(245, 166, 35, 0.12);
  color: #F5A623;
}

.pricing-badge.badge-professional {
  background: rgba(99, 102, 241, 0.12);
  color: #6366f1;
}

.pricing-badge.badge-recommended {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

.pricing-badge.badge-package {
  background: rgba(168, 85, 247, 0.12);
  color: #a855f7;
}

.pricing-badge.badge-amazon {
  background: rgba(249, 115, 22, 0.12);
  color: #f97316;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--neo-text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.pricing-card .subtitle {
  font-size: 13px;
  color: var(--neo-text-muted);
  line-height: 1.5;
  margin-bottom: 18px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 16px;
  flex-grow: 1;
  padding: 0;
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 12px;
  color: var(--neo-text);
  line-height: 1.4;
}

.pricing-feature:last-child {
  margin-bottom: 0;
}

.pricing-check-icon {
  color: var(--color-primary);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  margin: 16px 0;
}

.pricing-details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.pricing-label {
  color: var(--neo-text-muted);
  font-weight: 500;
}

.pricing-value {
  color: var(--neo-text);
  font-weight: 600;
}

.pricing-value.price {
  color: var(--color-primary);
  font-size: 15px;
  font-weight: 700;
}

.pricing-accent-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, transparent 50%, rgba(245, 166, 35, 0.1) 50%);
  pointer-events: none;
}

/* Featured pricing card */
.pricing-card.featured {
  border: 3px solid var(--color-primary);
  position: relative;
}

.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(145deg, var(--color-primary), var(--color-accent-yellow));
  color: #1f2937;
  padding: 6px 20px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px rgba(245, 166, 35, 0.3);
  z-index: 1;
}

/* Pricing CTA button styles */
.pricing-cta-btn {
  width: 100%;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.pricing-cta-btn .btn-icon {
  margin-left: auto;
}

/* Button appears on card hover */
.pricing-card .pricing-cta-btn {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.pricing-card:hover .pricing-cta-btn {
  transform: translateY(-2px);
}
