/* ============================================================
   Wuthqa — Mizan (legal SaaS) page styles
   Builds on tokens + chrome (home.css) + shared inner styles (inner.css).
   ============================================================ */

/* ---- Why trust us ----------------------------------------------- */
.wq-mz-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wq-mz-why-card { text-align: center; background: var(--surface); border: 1px solid var(--border-soft); border-radius: var(--r-lg);
  padding: 32px 26px; transition: border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease); }
.wq-mz-why-card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.wq-mz-why-ic { display: inline-flex; align-items: center; justify-content: center; width: 56px; height: 56px;
  border-radius: var(--r-full); background: var(--gold-tint); color: var(--gold); margin-bottom: 16px; }
.wq-mz-why-name { color: var(--teal); font-weight: 700; font-size: 17px; }
.wq-mz-why-desc { color: var(--fg-2); font-size: 14px; line-height: 1.6; margin: 8px 0 0; }

/* ---- Pricing plans ---------------------------------------------- */
.wq-mz-plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.wq-mz-plan { position: relative; background: #fff; border: 1px solid var(--border); border-radius: var(--r-xl); padding: 32px 28px;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease); }
.wq-mz-plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.wq-mz-plan.is-popular { border-color: var(--gold); box-shadow: 0 20px 50px -28px rgba(200,168,75,.6); }
.wq-mz-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); white-space: nowrap;
  font-family: var(--font-en); font-weight: 700; font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--teal-900); background: var(--gold); border-radius: var(--r-full); padding: 6px 16px; }
.wq-mz-plan-name { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; font-size: 23px; color: var(--teal); margin: 0; }
.wq-mz-plan-tag { color: var(--fg-3); font-size: 13.5px; margin: 6px 0 18px; }
.wq-mz-plan-price { display: flex; flex-direction: column; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--border-soft); }
.wq-mz-plan-price .amt { font-family: var(--font-en); font-weight: 700; font-size: 26px; color: var(--teal); letter-spacing: -.01em; }
.wq-mz-plan-price .per { color: var(--fg-3); font-size: 12.5px; margin-top: 4px; }
.wq-mz-plan .wq-btn { width: 100%; justify-content: center; }
.wq-mz-plus { font-family: var(--font-en); font-weight: 600; font-size: 12.5px; color: var(--gold-600); margin: 22px 0 12px; }
.wq-mz-feats { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.wq-mz-feats li { display: flex; gap: 10px; align-items: flex-start; color: var(--fg-2); font-size: 13.5px; line-height: 1.5; }
.wq-mz-feats svg, .wq-mz-feats [data-lucide] { flex-shrink: 0; color: var(--gold); margin-top: 2px; }

/* ---- Not sure band ---------------------------------------------- */
.wq-mz-notsure { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.wq-mz-notsure > div { flex: 1 1 420px; }
.wq-mz-notsure h2 { font-family: 'Source Serif 4', Georgia, serif; font-weight: 600; color: #fff;
  font-size: clamp(24px, 2.8vw, 33px); line-height: 1.2; margin: 14px 0 12px; }
.wq-mz-notsure p { color: rgba(255,255,255,.76); font-size: 16px; line-height: 1.75; margin: 0; }

/* ---- FAQ accordion ---------------------------------------------- */
.wq-faq { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.wq-faq-item { border: 1px solid var(--border); border-radius: var(--r-lg); background: #fff; overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease); }
.wq-faq-item.is-open { border-color: var(--teal); box-shadow: var(--shadow-md); }
.wq-faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer; text-align: start; font-family: inherit;
  color: var(--teal); font-size: 16px; font-weight: 600; }
.wq-faq-chev { color: var(--gold); transition: transform .3s var(--ease); display: inline-flex; flex-shrink: 0; }
.wq-faq-item.is-open .wq-faq-chev { transform: rotate(180deg); }
.wq-faq-a { padding: 0 22px 20px; }
.wq-faq-a p { color: var(--fg-2); font-size: 14.5px; line-height: 1.75; margin: 0; }
.wq-mz-addon { text-align: center; margin-top: 26px; font-size: 13px; color: var(--fg-3); font-style: italic; }

/* ---- Responsive ------------------------------------------------- */
@media (max-width: 980px) {
  .wq-mz-why { grid-template-columns: 1fr; }
  .wq-mz-plans { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
