/* ==========================================================================
   Pricing Page
   ========================================================================== */

/* Pricing section wrapper */
.pricing-page-section {
  background: var(--gradient-pricing);
  position: relative;
  overflow: hidden;
  padding: 3rem 0 6rem;
}

.pricing-page-section::before {
  content: '';
  position: absolute;
  top: 8%;
  left: -8%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(244, 179, 204, 0.15);
  filter: blur(80px);
  pointer-events: none;
}

.pricing-page-section::after {
  content: '';
  position: absolute;
  bottom: 5%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(155, 114, 207, 0.08);
  filter: blur(80px);
  pointer-events: none;
}

.pricing-cards-full {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
  padding-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.price-card {
  background: var(--bg-card);
  border-radius: var(--radius-2xl);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}

.price-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 60px rgba(0,0,0,0.10);
}

/* Featured card */
.price-card.featured {
  border: 2px solid var(--brand-3);
  box-shadow: 0 8px 40px rgba(221, 34, 143, 0.12);
  transform: scale(1.04);
  z-index: 2;
}

.price-card.featured:hover {
  transform: scale(1.04) translateY(-8px);
  box-shadow: 0 20px 60px rgba(221, 34, 143, 0.18);
}

/* Featured card header has pink tint */
.price-card.featured .price-card-top {
  background: linear-gradient(180deg, rgba(253, 245, 248, 1) 0%, rgba(255,255,255,1) 100%);
}

.price-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-pink-btn);
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(221, 34, 143, 0.25);
  animation: pulse-glow 3s ease-in-out infinite;
}

.price-card-top {
  padding: 3.5rem 2.5rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

/* Decorative gradient divider instead of plain border */
.price-card.featured .price-card-top {
  border-bottom: 2px solid;
  border-image: linear-gradient(90deg, transparent 10%, var(--brand-5) 30%, var(--brand-3) 50%, var(--brand-5) 70%, transparent 90%) 1;
}

.price-tier {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

.price-amount {
  font-size: 3.75rem;
  margin: 0.75rem 0 0.5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.price-card.featured .price-amount {
  color: var(--brand-3);
}

.price-hours {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.price-tagline {
  font-size: 0.95rem;
  color: var(--brand-4);
  margin-top: 1rem;
}

.price-card-body {
  padding: 2.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.price-card-body h4 {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
}

.check-icon {
  font-size: 1.2rem;
  color: var(--brand-3);
  flex-shrink: 0;
  margin-top: 1px;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 20;
}

/* Featured card CTA button upgrade */
.price-card.featured .btn {
  box-shadow: 0 4px 16px rgba(221, 34, 143, 0.25);
}

/* Additional hours note */
.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}

.pricing-note strong {
  color: var(--brand-3);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .pricing-cards-full {
    grid-template-columns: 1fr 1fr;
  }
  .price-card.featured {
    transform: none;
  }
  .price-card.featured:hover {
    transform: translateY(-8px);
  }
}

@media (max-width: 768px) {
  .pricing-cards-full {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .price-card.featured {
    grid-column: auto;
    max-width: none;
  }
}