/* ============================================================
   MenuCraft — Pricing page (light theme)
   Reuses .demo-hero, .cta-section etc. from landing.css/demo.css.
   ============================================================ */

.pricing-wrap { max-width: 1000px; margin: 0 auto; padding: 1rem 2rem 6rem; }

.billing-note {
  text-align: center;
  color: var(--brand);
  margin-bottom: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
}

.plans {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.plan {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: var(--transition);
}
.plan:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }

.plan-pro {
  border: 1.5px solid var(--brand);
  background: var(--brand-tint);
  position: relative;
}

.popular {
  position: absolute;
  top: -12px; left: 20px;
  background: var(--brand);
  color: #fff;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
}

.plan-name { color: var(--muted); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; font-weight: 600; }

.price { display: flex; align-items: baseline; gap: 0.4rem; margin: 0.5rem 0 1rem; }
.price strong { font-size: 2.75rem; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.price span { color: var(--muted); }

.plan-desc { color: var(--muted); margin-bottom: 1.5rem; line-height: 1.6; font-size: 0.9375rem; }

.features { list-style: none; margin-top: 1.5rem; display: grid; gap: 0.75rem; color: var(--ink-2); font-size: 0.9375rem; }
.features li { display: flex; gap: 0.625rem; align-items: flex-start; }
.features li .check { color: var(--brand); font-weight: 700; flex-shrink: 0; }

.compare {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}
.compare div { padding: 0.9rem 1rem; border-bottom: 1px solid var(--border); font-size: 0.9rem; color: var(--ink-2); }
.compare-head { background: var(--surface); font-weight: 700; color: var(--ink); font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.04em; }
.compare div:nth-last-child(-n+3) { border-bottom: 0; }

.faq { margin-top: 5rem; max-width: 720px; margin-left: auto; margin-right: auto; }
.faq h2 { text-align: center; margin-bottom: 2rem; }

details {
  background: #fff;
  border: 1px solid var(--border);
  padding: 1.125rem 1.25rem;
  border-radius: 12px;
  margin-bottom: 0.75rem;
}
summary { cursor: pointer; font-weight: 600; color: var(--ink); }
details p { margin-top: 0.75rem; color: var(--muted); line-height: 1.65; font-size: 0.9375rem; }

@media (max-width: 900px) {
  .plans { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1.2fr 1fr 1fr; font-size: 0.85rem; }
}
