/* css/pricing.css
   Shared by /pricing (pay.html) and /ai-analysis (ai-analysis.html).
   Extracted from pay.html's inline <style> on 2026-07-16 so the two pages
   cannot drift, and because CLAUDE.md forbids inline <style> in new HTML.

   The ops manual parses this page's structure (.step, .step-label, h2,
   .price-card, .price-amount, .price-detail) to publish the tier list —
   see routes/opsRefresh/extensions.js. Renaming these classes silently
   empties that section, so keep the names even if the styling changes. */

    :root { --maxw: 720px; --border: #e2e8f0; --muted: #64748b; --bg: #f8fafc; }
    body { background: var(--bg); line-height: 1.7; }
    main { max-width: var(--maxw); margin: 0 auto; padding: 80px 20px 48px; } /* 80px top for fixed nav */
    a { color: var(--wm-blue); }
    a:hover { text-decoration: underline; }

    /* Override landing hero — no background image on pricing */
    .hero { background: none; padding: 2.5rem 0 1rem; color: var(--wm-text); }
    .hero::before { display: none; }
    .hero h1 { color: var(--wm-text); text-shadow: none; }
    .hero-sub { color: var(--muted); text-shadow: none; }

    /* Hero */
    .hero { text-align: center; padding: 2.5rem 0 1rem; }
    .hero h1 { font-size: 1.8rem; font-weight: 800; margin: 0 0 0.75rem; }
    .hero-sub { color: var(--muted); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

    /* Steps */
    .step { margin: 2.5rem 0; }
    .step-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--wm-blue); margin-bottom: 0.25rem; }
    .step h2 { font-size: 1.3rem; font-weight: 800; margin: 0 0 0.5rem; }
    .step p { color: #475569; font-size: 0.95rem; margin: 0 0 0.75rem; }
    .step ul { margin: 0; padding-left: 1.2rem; font-size: 0.9rem; color: #475569; }
    .step li { margin-bottom: 0.3rem; }

    /* Price card */
    .price-card { background: #fff; border: 2px solid var(--border); border-radius: 12px; padding: 20px 24px; margin: 1rem 0; }
    .price-card.featured { border-color: var(--wm-blue); }
    .price-amount { font-size: 1.5rem; font-weight: 800; color: var(--wm-blue); }
    .price-detail { font-size: 0.82rem; color: var(--muted); }
    .price-quiet { color: var(--muted); font-size: 0.85rem; margin-top: 0.75rem; padding-top: 0.75rem; border-top: 1px solid var(--border); }

    /* Annual cards */
    .annual-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin: 1rem 0; }
    @media (max-width: 500px) { .annual-grid { grid-template-columns: 1fr; } }

    /* Divider */
    hr { border: none; border-top: 1px solid var(--border); margin: 2.5rem 0; }

    /* Includes */
    .includes { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; font-size: 0.85rem; margin: 1rem 0; }
    @media (max-width: 500px) { .includes { grid-template-columns: 1fr; } }
    .includes li { list-style: none; padding-left: 1.4rem; position: relative; }
    .includes li::before { content: '✓'; position: absolute; left: 0; color: var(--wm-green); font-weight: 700; }

    /* Callout */
    .callout { background: #f0f9ff; border: 1px solid #bae6fd; border-radius: 10px; padding: 18px 22px; margin: 2rem 0; }
    .callout p { margin: 0; font-size: 0.92rem; }

    /* Procurement */
    .procurement { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 0.5rem; }
    .procurement a { font-size: 0.85rem; }

    /* Bottom */
    .cta-bottom { text-align: center; padding: 2rem 0; }
    .cta-bottom p { color: var(--muted); font-size: 0.95rem; margin: 0 0 0.5rem; }
    .cta-bottom a { font-size: 0.9rem; }

    /* CTA button */
    .btn-cta { display: inline-block; background: var(--wm-blue); color: #fff; padding: 10px 24px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; text-decoration: none; }
    .btn-cta:hover { background: #145c90; text-decoration: none; }
