/* ─────────────────────────────────────────────────────────────
   health-check.html: page-specific styles
   Extends styles.css (shared variables, nav, buttons, sections).
   ───────────────────────────────────────────────────────────── */

/* ── hero ──────────────────────────────────────────────────── */
.hc-hero { padding-top: 88px; padding-bottom: 64px; }

.hc-hero__kicker {
  margin: 0 0 20px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.hc-hero__title {
  margin: 0 0 22px;
  max-width: 760px;
  font-size: 48px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hc-hero__lead {
  margin: 0 0 32px;
  max-width: 620px;
  font-size: 18px;
  color: var(--muted-light);
}

.hc-hero__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
}
.hc-hero__facts strong { color: var(--fg); font-weight: 600; }

/* ── deliverable list ─────────────────────────────────────── */
.hc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}
.hc-list li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  color: var(--muted-light);
}
.hc-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-family: var(--mono);
}

/* ── steps ─────────────────────────────────────────────────── */
.hc-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.hc-step {
  background: var(--panel);
  padding: 32px 28px;
}
.hc-step__num {
  margin: 0 0 16px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
}
.hc-step__title {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 600;
}
.hc-step__body {
  margin: 0;
  font-size: 15px;
  color: var(--muted);
}

/* ── price ─────────────────────────────────────────────────── */
.hc-price-box {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 36px;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.hc-price-box__amount {
  font-family: var(--mono);
  font-size: 42px;
  font-weight: 600;
  color: var(--fg);
  white-space: nowrap;
}
.hc-price-box__amount span {
  display: block;
  margin-top: 6px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
}
.hc-price-box__notes {
  flex: 1 1 320px;
  min-width: 260px;
}
.hc-price-box__notes p {
  margin: 0 0 12px;
  font-size: 15px;
  color: var(--muted-light);
}
.hc-price-box__notes p:last-child { margin-bottom: 0; }

/* ── scenarios ─────────────────────────────────────────────── */
.hc-scenarios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.hc-scenario {
  padding: 28px;
  background: var(--panel);
  border: 1px solid var(--rule);
  border-radius: 12px;
}
.hc-scenario__tag {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.hc-scenario__quote {
  margin: 0 0 16px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
}
.hc-scenario__body {
  margin: 0;
  font-size: 14.5px;
  color: var(--muted);
}

/* ── FAQ ───────────────────────────────────────────────────── */
.hc-faq {
  display: grid;
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: 12px;
  overflow: hidden;
}
.hc-faq details {
  background: var(--panel);
  padding: 22px 26px;
}
.hc-faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.hc-faq summary::-webkit-details-marker { display: none; }
.hc-faq summary::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--mono);
  font-weight: 400;
  color: var(--accent);
  font-size: 20px;
  transition: transform 0.15s;
}
.hc-faq details[open] summary::after { transform: rotate(45deg); }
.hc-faq p {
  margin: 14px 0 0;
  font-size: 15px;
  color: var(--muted-light);
  max-width: 680px;
}

/* ── back link ─────────────────────────────────────────────── */
.hc-back {
  display: inline-block;
  margin-bottom: 28px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}
.hc-back:hover { color: var(--accent); }

/* ── responsive ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hc-hero { padding-top: 56px; }
  .hc-hero__title { font-size: 32px; }
  .hc-hero__lead { font-size: 16px; }
  .hc-price-box { padding: 26px; }
  .hc-price-box__amount { font-size: 34px; }
}
