/* FAQ Section Styles */
.faq-section {
  padding: 5rem 0;
  position: relative;
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  max-width: 48rem;
}

@media (min-width: 768px) {
  .faq-container {
    padding: 0 2rem;
  }
}

.faq-title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4rem;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .faq-title {
    font-size: 3rem;
  }
}

.faq-title-gradient {
  background: linear-gradient(to right, oklch(0.62 0.25 240), oklch(0.70 0.18 200));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  backdrop-filter: blur(12px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 0 1.5rem;
  overflow: hidden;
}

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

.faq-trigger:hover {
  text-decoration: underline;
}

.faq-trigger:focus-visible {
  outline: 3px solid oklch(0.62 0.25 240 / 0.5);
  outline-offset: 2px;
  border-radius: 0.25rem;
}

.faq-trigger[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-chevron {
  width: 1rem;
  height: 1rem;
  color: var(--muted-foreground);
  flex-shrink: 0;
  transition: transform 0.2s;
  pointer-events: none;
}

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

.faq-item[data-open="true"] .faq-content {
  max-height: 500px;
  padding: 0 0 1.5rem 0;
}

.faq-content p {
  color: var(--muted-foreground);
  font-size: 1rem;
  line-height: 1.75;
}

