/* ========================================
   Pricing Page Specific Styles
   ======================================== */

.pricing-hero {
  padding-top: 10rem;
  padding-bottom: 4rem;
  text-align: center;
  background: var(--gradient-hero);
  position: relative;
  overflow: hidden;
}

.pricing-hero::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 40rem;
  height: 40rem;
  background: radial-gradient(circle, hsl(var(--accent-purple) / 0.3) 0%, transparent 70%);
  pointer-events: none;
}

.pricing-hero-content {
  position: relative;
  z-index: 10;
}

.pricing-hero h1 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .pricing-hero h1 {
    font-size: 3.5rem;
  }
}

.pricing-hero p {
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.price-highlight {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
}

.price-highlight .green {
  color: hsl(142, 76%, 36%);
}

.dark .price-highlight .green {
  color: hsl(142, 76%, 50%);
}

/* ========================================
   FAQ Section
   ======================================== */

.faq-section {
  padding: 5rem 0;
  background: var(--gradient-section-1);
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-header .section-title {
  margin-top: 1rem;
  margin-bottom: 0.75rem;
}

.faq-header .section-description {
  color: hsl(var(--muted-foreground));
  max-width: 36rem;
  margin: 0 auto;
}

.faq-grid {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background-color: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item:hover {
  border-color: hsl(var(--border));
  box-shadow: var(--shadow-md);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  transition: background-color 0.2s ease;
}

.faq-question:hover {
  background-color: hsl(var(--secondary) / 0.5);
}

.faq-chevron {
  flex-shrink: 0;
  color: hsl(var(--muted-foreground));
  transition: transform 0.3s ease, color 0.2s ease;
}

.faq-item.active .faq-chevron {
  transform: rotate(180deg);
  color: hsl(var(--foreground));
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  line-height: 1.7;
}
