/* Business Health Check Pro — Ledger design system
   navy #1b2431 · cream #f5f0e3 · rust #b5562f
   Fraunces (display) · Inter (body) · JetBrains Mono (numbers) */

.bhcp-wrap {
	--navy: #1b2431;
	--cream: #f5f0e3;
	--rust: #b5562f;
	--rust-dark: #8f421f;
	--line: rgba(27,36,49,0.12);
	font-family: 'Inter', -apple-system, sans-serif;
	color: var(--navy);
	max-width: 960px;
	margin: 0 auto;
	line-height: 1.6;
}

.bhcp-wrap h1, .bhcp-wrap h2, .bhcp-wrap h3 {
	font-family: 'Fraunces', Georgia, serif;
	font-weight: 700;
	line-height: 1.15;
}

.bhcp-mono, .bhcp-score-value, .bhcp-cat-score { font-family: 'JetBrains Mono', monospace; }

/* ---------- Landing ---------- */
.bhcp-hero {
	background: var(--navy);
	color: var(--cream);
	padding: 64px 32px;
	border-radius: 4px;
	text-align: center;
	margin-bottom: 48px;
}
.bhcp-hero h1 { font-size: clamp(28px,5vw,48px); margin: 0 0 16px; }
.bhcp-hero p { font-size: 18px; opacity: 0.85; max-width: 620px; margin: 0 auto 28px; }

.bhcp-btn {
	display: inline-block;
	background: var(--rust);
	color: var(--cream) !important;
	font-weight: 600;
	padding: 14px 32px;
	border-radius: 3px;
	text-decoration: none;
	border: none;
	cursor: pointer;
	font-size: 16px;
	transition: background .15s ease;
}
.bhcp-btn:hover { background: var(--rust-dark); color: var(--cream); }
.bhcp-btn-outline {
	background: transparent;
	border: 1px solid var(--cream);
	color: var(--cream) !important;
}

.bhcp-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin: 40px 0; }
@media (max-width: 720px) { .bhcp-grid-3 { grid-template-columns: 1fr; } }

.bhcp-card {
	background: #fff;
	border: 1px solid var(--line);
	border-left: 4px solid var(--rust);
	border-radius: 3px;
	padding: 24px;
}
.bhcp-card h3 { font-size: 18px; margin: 0 0 8px; }
.bhcp-card p { margin: 0; color: #444; font-size: 14px; }

.bhcp-testimonial {
	background: var(--cream);
	border-radius: 4px;
	padding: 20px;
	margin-bottom: 16px;
}
.bhcp-testimonial p { font-style: italic; margin: 0 0 10px; }
.bhcp-testimonial .who { font-weight: 600; font-size: 13px; color: var(--rust); }

.bhcp-faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.bhcp-faq-item summary { font-weight: 600; cursor: pointer; font-size: 16px; }
.bhcp-faq-item p { margin: 10px 0 0; color: #444; }

.bhcp-cta-band {
	text-align: center;
	background: var(--cream);
	border: 1px dashed var(--rust);
	padding: 40px 24px;
	border-radius: 4px;
	margin: 48px 0;
}

/* ---------- Assessment ---------- */
.bhcp-progress-bar { height: 8px; background: var(--line); border-radius: 4px; overflow: hidden; margin-bottom: 24px; }
.bhcp-progress-fill { height: 100%; background: var(--rust); width: 0%; transition: width .2s ease; }

.bhcp-category-block { margin-bottom: 40px; }
.bhcp-category-block h2 {
	font-size: 20px;
	color: var(--rust);
	border-bottom: 2px solid var(--navy);
	padding-bottom: 6px;
	margin-bottom: 16px;
}
.bhcp-question { padding: 16px 0; border-bottom: 1px solid var(--line); }
.bhcp-question p { font-weight: 500; margin: 0 0 10px; }
.bhcp-options { display: flex; gap: 10px; flex-wrap: wrap; }
.bhcp-option { position: relative; }
.bhcp-option input { position: absolute; opacity: 0; }
.bhcp-option label {
	display: inline-block;
	padding: 8px 18px;
	border: 1px solid var(--line);
	border-radius: 20px;
	cursor: pointer;
	font-size: 14px;
	transition: all .15s ease;
}
.bhcp-option input:checked + label { background: var(--rust); border-color: var(--rust); color: #fff; }

.bhcp-submit-row { text-align: center; margin-top: 32px; }

/* ---------- Results ---------- */
.bhcp-score-hero {
	background: var(--navy);
	color: var(--cream);
	text-align: center;
	padding: 48px 24px;
	border-radius: 4px;
	margin-bottom: 32px;
}
.bhcp-score-value { font-size: 64px; font-weight: 700; color: var(--rust); }
.bhcp-grade-pill {
	display: inline-block;
	background: var(--rust);
	padding: 4px 16px;
	border-radius: 20px;
	font-weight: 700;
	margin-top: 8px;
}
.bhcp-maturity { opacity: .8; margin-top: 8px; font-size: 14px; }

.bhcp-cat-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.bhcp-cat-label { width: 200px; font-size: 14px; flex-shrink: 0; }
.bhcp-cat-bar-track { flex: 1; height: 10px; background: var(--line); border-radius: 5px; overflow: hidden; }
.bhcp-cat-bar-fill { height: 100%; background: var(--rust); }
.bhcp-cat-score { width: 48px; text-align: right; font-size: 13px; }

.bhcp-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 32px 0; }
@media (max-width: 720px) { .bhcp-two-col { grid-template-columns: 1fr; } }

.bhcp-list-card { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 20px; }
.bhcp-list-card h3 { font-size: 16px; margin: 0 0 12px; color: var(--rust); }
.bhcp-list-card ol, .bhcp-list-card ul { margin: 0; padding-left: 20px; font-size: 14px; }
.bhcp-list-card li { margin-bottom: 8px; }

.bhcp-roadmap { display: flex; gap: 16px; margin: 24px 0; flex-wrap: wrap; }
.bhcp-roadmap .day-block { flex: 1; min-width: 220px; background: var(--cream); border-radius: 4px; padding: 16px; }
.bhcp-roadmap .day-block h4 { color: var(--rust); margin: 0 0 8px; font-family: 'JetBrains Mono', monospace; }

.bhcp-pdf-actions { text-align: center; margin: 32px 0; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ---------- Consultation ---------- */
.bhcp-consult-box { background: var(--cream); border-radius: 4px; padding: 32px; margin: 32px 0; }
.bhcp-consult-box h2 { color: var(--rust); }
.bhcp-form-row { margin-bottom: 16px; }
.bhcp-form-row label { display: block; font-weight: 600; margin-bottom: 6px; font-size: 14px; }
.bhcp-form-row input, .bhcp-form-row select, .bhcp-form-row textarea {
	width: 100%;
	padding: 10px 12px;
	border: 1px solid var(--line);
	border-radius: 3px;
	font-family: 'Inter', sans-serif;
	font-size: 14px;
}

.bhcp-notice { padding: 12px 16px; border-radius: 3px; margin-bottom: 20px; font-size: 14px; }
.bhcp-notice-error { background: #fbe4e0; color: var(--rust-dark); border: 1px solid var(--rust); }
.bhcp-notice-success { background: #e6f4ea; color: #256029; border: 1px solid #256029; }
