/* ------------------------------------------------------------
File: /public/css/pages/pricing.css
Description: Page-specific styles for pricing cards, FAQ, and billing note sections.
------------------------------------------------------------ */
/* Pricing page */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: start;
  max-width: 760px;
  margin: 0 auto;
}
.faq { max-width: 100%; }
.faq-item {
  border-bottom: 1px solid var(--border-subtle);
  padding: 20px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border-subtle); }
.faq-question {
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question .arrow { color: var(--text-dim); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-question .arrow { transform: rotate(180deg); }
.faq-answer {
  display: none;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-top: 12px;
}
.faq-item.open .faq-answer { display: block; }
.compare-table { width: 100%; border-collapse: collapse; margin-top: 40px; }
.compare-table th, .compare-table td {
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 0.9rem;
}
.compare-table th { color: var(--text-dim); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: rgba(255,255,255,0.02); }
.check-yes { color: #10b981; font-size: 1.1rem; }
.check-no { color: var(--text-dim); }

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
