/* =============================================
   PRICING — page-specific styles
   Hero uses global .page-hero
   Section headers use global .section-hd-center
   3-up cards (How we price / Procurement) use global .org-grid + .org-card-plain
   Checklist bullets use global .feat-list
   ============================================= */

/* ---------- HOW WE PRICE — promise block under cards ---------- */
.pr-promise {
	max-width: 760px;
	margin: 3rem auto 0;
	text-align: center;
}

.pr-promise p {
	font-size: 1.05rem;
	line-height: 1.7;
	color: var(--ink-700);
	margin: 0;
}

.pr-promise p strong {
	color: var(--ink-900);
	font-weight: 700;
}

.pr-promise-note {
	margin-top: 1rem !important;
	padding-top: 1rem;
	border-top: 1px solid var(--ink-100);
	font-size: 0.92rem !important;
	color: var(--ink-600) !important;
	font-style: italic;
}

.pr-promise-cta {
	margin-top: 2rem;
}

/* ---------- WHAT'S INCLUDED — 2-column feat-list ---------- */
.pr-included {
	display: grid;
	grid-template-columns: 1fr 1fr;
	column-gap: 2.5rem;
	max-width: 920px;
	margin: 0 auto;
}

@media (max-width: 720px) {
	.pr-included {
		grid-template-columns: 1fr;
		column-gap: 0;
	}
}

.pr-footnote {
	text-align: center;
	max-width: 720px;
	margin: 2.5rem auto 0;
	color: var(--ink-600);
	font-size: 0.95rem;
	line-height: 1.6;
}

.pr-footnote a {
	color: var(--brand-600);
	font-weight: 600;
	border-bottom: 1px solid var(--brand-200);
	transition: color 0.15s ease, border-color 0.15s ease;
}

.pr-footnote a:hover {
	color: var(--brand-700);
	border-bottom-color: var(--brand-400);
}

/* ---------- PROCUREMENT — note under cards ---------- */
.pr-procurement-note {
	text-align: center;
	margin-top: 2rem;
	color: var(--ink-600);
	font-size: 0.95rem;
	font-style: italic;
}

/* ---------- EVALUATION — soft callout panel ---------- */
.pr-eval {
	max-width: 760px;
	margin: 0 auto;
	padding: 2.5rem;
	background: #fff;
	border: 1px solid var(--ink-100);
	border-radius: var(--radius-lg);
	text-align: center;
}

.pr-eval-tag {
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 700;
	color: var(--brand-600);
	margin-bottom: 1rem;
}

.pr-eval h3 {
	font-size: clamp(1.3rem, 2.3vw, 1.6rem);
	font-weight: 700;
	letter-spacing: -0.02em;
	color: var(--ink-900);
	margin: 0 0 0.85rem;
	line-height: 1.3;
}

.pr-eval p {
	max-width: 600px;
	margin: 0 auto;
	color: var(--ink-700);
	line-height: 1.65;
}

/* ---------- 5 STEPS ---------- */
.pr-steps {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}

.pr-step {
	padding: 1.75rem 1.25rem;
	background: #fff;
	border: 1px solid var(--ink-100);
	border-radius: var(--radius);
	text-align: center;
}

.pr-step-num {
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--brand-600), var(--accent-500));
	color: #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: var(--mono);
	font-size: 0.95rem;
	font-weight: 700;
	margin-bottom: 1rem;
	box-shadow: 0 2px 6px rgba(21, 101, 192, 0.3);
}

.pr-step h3 {
	font-size: 1rem;
	font-weight: 700;
	color: var(--ink-900);
	margin: 0 0 0.5rem;
}

.pr-step p {
	font-size: 0.88rem;
	color: var(--ink-600);
	line-height: 1.5;
	margin: 0;
}

@media (max-width: 900px) {
	.pr-steps {
		grid-template-columns: 1fr;
	}
}

/* ---------- FAQ ACCORDION ---------- */
.pr-faq {
	max-width: 820px;
	margin: 0 auto;
}

.pr-faq-item {
	border-bottom: 1px solid var(--ink-200);
}

.pr-faq-item:first-child {
	border-top: 1px solid var(--ink-200);
}

.pr-faq-item summary {
	list-style: none;
	cursor: pointer;
	padding: 1.25rem 0.25rem;
	font-size: 1.02rem;
	font-weight: 700;
	color: var(--ink-900);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	transition: color 0.15s ease;
}

.pr-faq-item summary::-webkit-details-marker {
	display: none;
}

.pr-faq-item summary:hover {
	color: var(--brand-600);
}

.pr-faq-item summary::after {
	content: '+';
	font-family: var(--mono);
	font-size: 1.5rem;
	font-weight: 400;
	color: var(--ink-400);
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	transition: color 0.15s ease;
	line-height: 1;
}

.pr-faq-item[open] summary::after {
	content: '−';
	color: var(--brand-600);
}

.pr-faq-item p {
	padding: 0 0.25rem 1.25rem;
	color: var(--ink-700);
	line-height: 1.65;
	margin: 0;
	font-size: 0.95rem;
}

.pr-faq-item p a {
	color: var(--brand-600);
	font-weight: 600;
	border-bottom: 1px solid var(--brand-200);
	transition: color 0.15s ease, border-color 0.15s ease;
}

.pr-faq-item p a:hover {
	color: var(--brand-700);
	border-bottom-color: var(--brand-400);
}