/* =============================================================
   NICHENCY — PRICING PAGE
   pages/pricing.css
   ============================================================= */

.pricing-page { font-family: 'Karla', sans-serif; font-size: 17px; line-height: 1.75; color: var(--text); background: #ffffff; }
.pricing-page-inner { width: 100%; }

/* ── HERO (PRICING) ── */
.hero-content { max-width: 780px; margin: 0 auto; }
/* NOTE: .hero-eyebrow base styles are defined in core/typography.css
   The margin-bottom override below extends the base for the pricing hero context */
.hero-eyebrow { margin-bottom: 28px; }

/* ── COST FRAME ── */
.cost-frame { background: var(--hero-bg); padding: 40px; border-radius: 12px; border-left: 4px solid var(--dark-blue); max-width: 800px; margin: 0 auto 30px; }
.cost-frame h2 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 20px; }
.cost-frame p { font-size: 17px; color: var(--text); margin-bottom: 16px; line-height: 1.75; }
.cost-list { list-style: none; margin: 20px 0; }
.cost-list li { font-size: 17px; color: var(--text); padding-left: 28px; margin-bottom: 10px; position: relative; }
.cost-list li::before { content: '→'; position: absolute; left: 0; color: var(--dark-blue); font-weight: 700; }
.cost-highlight { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--dark-blue); font-size: 1.1rem; margin-top: 20px; }
.cost-conclusion { font-size: 17px; color: var(--text); font-weight: 500; margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); }

/* ── PRICING CARDS ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pricing-card { background: #ffffff; border-radius: 12px; padding: 36px 28px; border: 1px solid var(--border); position: relative; transition: border-color .2s, box-shadow .2s, transform .2s; display: flex; flex-direction: column; float: none; width: auto; max-width: none; margin: 0; grid-column: auto; }
.pricing-card:hover { border-color: var(--dark-blue); box-shadow: 0 12px 32px rgba(19,15,73,0.1); transform: translateY(-4px); }
.pricing-tier-color { width: 36px; height: 36px; border-radius: 50%; margin: 0 auto 16px; flex-shrink: 0; }
.tier-foundation { background: #55A55A; }
.tier-growth { background: #5B7FDB; }
.tier-stewardship { background: #C84B4B; }
.pricing-tier-name { font-family: 'Inter', sans-serif; font-size: 1.3rem; font-weight: 700; color: var(--dark-blue); text-align: center; margin-bottom: 8px; }
.pricing-amount { font-family: 'Inter', sans-serif; font-size: 1.8rem; font-weight: 700; color: var(--dark-blue); text-align: center; margin-bottom: 16px; }
.pricing-amount span { font-size: 15px; font-weight: 500; color: var(--muted); }
.pricing-best-for { background: var(--hero-bg); padding: 12px 16px; border-radius: 8px; margin-bottom: 20px; border: 1px solid var(--border); }
.pricing-best-for strong { font-family: 'Inter', sans-serif; font-size: 11px; font-weight: 700; color: var(--dark-blue); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 6px; }
.pricing-best-for p { font-size: 14px; color: var(--muted); margin: 0; line-height: 1.5; }
.pricing-features { margin-bottom: 24px; flex-grow: 1; }
.pricing-features h4 { font-family: 'Inter', sans-serif; font-size: 13px; font-weight: 600; color: var(--dark-blue); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.pricing-features ul { list-style: none; }
.pricing-features li { font-size: 14px; color: var(--text); padding-left: 22px; margin-bottom: 9px; position: relative; line-height: 1.5; }
.pricing-features li::before { content: '→'; position: absolute; left: 0; color: var(--dark-blue); font-weight: 700; font-size: 13px; }
.pricing-cta { flex-shrink: 0; }
.pricing-cta .btn { width: 100%; justify-content: center; padding: 14px 24px; }

/* ── NOT INCLUDED ── */
.not-included-box { background: #ffffff; padding: 40px; border-radius: 12px; border: 1px solid var(--border); max-width: 700px; margin: 0 auto; }
.not-included-box h2 { font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 700; color: var(--dark-blue); margin-bottom: 20px; text-align: center; }
.not-included-box ul { list-style: none; margin-top: 20px; }
.not-included-box li { font-size: 16px; color: var(--text); padding-left: 28px; margin-bottom: 12px; position: relative; }
.not-included-box li::before { content: '✗'; position: absolute; left: 0; color: var(--muted); font-weight: 700; }
.not-included-note { font-size: 15px; color: var(--muted); margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border); text-align: center; font-style: italic; }

/* ── FAQ ── */
.faq-grid { display: grid; grid-template-columns: 1fr; gap: 16px; max-width: 860px; margin: 0 auto; }
.faq-item { background: #ffffff; padding: 28px 32px; border-radius: 10px; border: 1px solid var(--border); border-left: 4px solid var(--dark-blue); transition: box-shadow .2s; }
.faq-item:hover { box-shadow: 0 4px 20px rgba(19,15,73,0.08); }
.faq-item h3 { font-family: 'Inter', sans-serif; font-size: 1rem; font-weight: 600; color: var(--dark-blue); margin-bottom: 10px; }
.faq-item p { font-size: 15px; color: var(--muted); line-height: 1.7; margin: 0; }
