/* ============================================
   Pricing Page
   ============================================ */

/* --- Hero --- */
.pricing-hero {
  padding: 10rem 2rem 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 600px;
  background: radial-gradient(
    ellipse,
    rgba(99, 102, 241, 0.1) 0%,
    rgba(37, 99, 235, 0.04) 40%,
    transparent 70%
  );
  z-index: 0;
}

.pricing-hero .container {
  position: relative;
  z-index: 1;
}

.pricing-hero h1 {
  font-size: 3.5rem;
  color: var(--text-primary);
  margin-bottom: 1.2rem;
  margin-top: 1.5rem;
}

.pricing-hero-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* --- Pricing Section (Light) --- */
.pricing-section {
  background: var(--bg-light);
  padding: 5rem 2rem 6rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 820px;
  margin: 0 auto;
  align-items: start;
}

/* --- Price Card --- */
.price-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  position: relative;
  transition: all 0.35s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 50px rgba(99, 102, 241, 0.06);
}

/* Pro card highlight */
.price-card-pro {
  border-color: rgba(99, 102, 241, 0.25);
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.08), 0 12px 40px rgba(99, 102, 241, 0.08);
}

.price-card-pro:hover {
  box-shadow: 0 0 0 1px rgba(99, 102, 241, 0.15), 0 20px 60px rgba(99, 102, 241, 0.1);
}

.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-gradient);
  color: white;
  font-family: 'Manrope', sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 0.35rem 1.2rem;
  border-radius: 50px;
  letter-spacing: 0.02em;
}

.price-card-header {
  margin-bottom: 1.5rem;
}

.price-card-name {
  font-family: 'Manrope', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
}

.price-card-desc {
  font-size: 0.85rem;
  color: var(--text-body-light);
}

/* Price amount */
.price-card-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
}

.price-amount {
  font-family: 'Manrope', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1;
}

.price-period {
  font-size: 0.9rem;
  color: var(--text-body-light);
  font-weight: 500;
}

/* Feature list */
.price-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.price-card-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  padding: 0.5rem 0;
  font-size: 0.88rem;
  color: var(--text-body-light);
  line-height: 1.5;
}

.price-card-features li.highlight {
  color: var(--text-dark);
  font-weight: 600;
}

.check {
  color: #22C55E;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.cross {
  color: #CBD5E1;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.not-included {
  opacity: 0.5;
}

/* Price button */
.price-btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* --- Pricing FAQ (Dark) --- */
.pricing-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-faq-item {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.pricing-faq-item h3 {
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.pricing-faq-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --- CTA reuse --- */
.cta-box {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}

.cta-actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 2rem;
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .pricing-hero {
    padding: 8rem 1.5rem 3rem;
  }

  .pricing-hero h1 {
    font-size: 2.4rem;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .pricing-section {
    padding: 3rem 1.5rem 4rem;
  }

  .pricing-faq {
    grid-template-columns: 1fr;
  }
}