/* Pricing page styles — premium bar SaaS feel */

.pricing-hero {
  padding: 72px 48px 64px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  text-align: center;
}

.pricing-hero-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pricing-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  background: var(--amber-dim);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.pricing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 16px;
}

.pricing-sub {
  font-size: 17px;
  color: var(--text-muted);
}

.pricing-section {
  padding: 64px 48px 80px;
  background: var(--bg);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}

/* Plan card */
.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.25s, transform 0.25s;
}

.plan-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  transform: translateY(-2px);
}

.plan-card-featured {
  background: var(--surface2);
  border-color: rgba(245, 158, 11, 0.45);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.08), 0 24px 60px rgba(0,0,0,0.4), 0 0 40px rgba(245, 158, 11, 0.05);
}

.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--amber);
  padding: 4px 16px;
  border-radius: 999px;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 8px;
}

.plan-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.01em;
  margin-bottom: 16px;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.04em;
  line-height: 1;
}

.price-period {
  font-size: 16px;
  color: var(--text-muted);
}

.plan-annual-note {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 24px;
  min-height: 20px;
}

.plan-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.2s;
  text-decoration: none;
  margin-bottom: 0;
}

.plan-cta-primary {
  background: var(--amber);
  color: #000;
}

.plan-cta-primary:hover {
  background: #fbbf24;
  transform: translateY(-1px);
}

.plan-cta-secondary {
  background: var(--surface2);
  color: var(--text);
  border: 1px solid var(--border);
}

.plan-cta-secondary:hover {
  border-color: rgba(245, 158, 11, 0.4);
  color: var(--amber);
}

.plan-divider {
  height: 1px;
  background: var(--border);
  margin: 24px 0;
}

.plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.feature-item strong {
  color: var(--text);
}

.feature-icon {
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

.feature-na {
  opacity: 0.35;
  text-decoration: line-through;
}

/* FAQ */
.faq-section {
  padding: 80px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}

.faq-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.faq-title {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 48px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 64px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-q {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}

.faq-a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-a a {
  color: var(--amber);
  text-decoration: none;
}

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

/* Footer links fix */
.footer-links a,
.footer-links span {
  font-size: 13px;
  color: var(--text-dim);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links span:hover {
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }

  .plan-card-featured {
    order: -1;
  }

  .pricing-section,
  .faq-section {
    padding: 48px 24px 64px;
  }

  .pricing-hero {
    padding: 56px 24px 48px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .nav {
    padding: 16px 24px;
  }
}