/* ==========================================================================
   Pricing comparison: a bordered panel holding 2 pricing-option cards, a
   footer note+CTA row, and a compact fine-print notes area beneath. First
   built for bi-consulting-services.html; promoted to a shared file here
   (its second use, on reporting-reality-check.html) rather than
   duplicated per page, matching how related-links.css was promoted after
   its own second use. Both cards intentionally share one neutral border
   treatment - do not add a "featured"/accent-border variant without
   explicit copy (e.g. "Most popular") explaining why one card would be
   visually recommended over the other.
   Requires tokens.css + base.css + buttons.css (for the footer's .btn).
   ========================================================================== */

.pricing-comparison-box {
  padding: 40px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-panel);
  background: var(--surface-bg);
  box-shadow: var(--shadow-card);
}

.pricing-options-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.pricing-option-card {
  padding: 28px 26px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-card);
  background: var(--surface-bg);
}

.pricing-option-kicker {
  margin-bottom: 10px;
  color: var(--accent-label-color);
  font-size: var(--fs-label-sm);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-option-card h3 {
  margin: 0 0 8px;
  font-size: 1.25rem;
}

.pricing-option-price {
  margin-bottom: 4px;
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.pricing-option-subtitle {
  margin: 0 0 18px;
  color: var(--text-secondary);
  font-size: var(--fs-secondary);
}

.pricing-option-card ul {
  display: grid;
  gap: 10px;
}

.pricing-option-card li {
  position: relative;
  padding-left: 20px;
  color: var(--text-secondary);
  font-size: var(--fs-secondary);
  line-height: 1.5;
}

.pricing-option-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--accent-color);
}

.pricing-comparison-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-color);
}

.pricing-comparison-footer p {
  margin: 0;
  max-width: 520px;
  color: var(--text-secondary);
}

/* Fine print, not a second panel - a thin top border and compact type
   instead of the card treatment (border/radius/shadow/background) the
   comparison box above uses, so it reads as supporting terms rather than
   a competing content block. */
.pricing-notes-box {
  max-width: 940px;
  margin: 20px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--border-color);
}

.pricing-notes-box h3 {
  margin: 0 0 10px;
  color: var(--heading-color);
  font-size: 0.98rem;
  font-weight: 700;
}

.pricing-notes-box ul {
  display: grid;
  gap: 7px;
}

.pricing-notes-box li {
  position: relative;
  padding-left: 16px;
  color: var(--text-secondary);
  font-size: var(--fs-note);
  line-height: 1.55;
}

.pricing-notes-box li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent-color);
}

@media (max-width: 768px) {
  .pricing-options-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .pricing-comparison-box {
    padding: 26px 22px;
  }

  .pricing-comparison-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .pricing-comparison-footer .btn {
    width: 100%;
  }
}
