/* Site review 2026-09-10 · homepage conversion fixes.
   Loaded last on the homepage so it wins over the earlier polish sheets.
   1. One primary action above the fold (the interactive demo); booking is the secondary.
   2. The sticky reading bar carries both "Try the demo" and "Book a review". */

/* ---- hero actions: primary button + a real secondary button (not a bare underline) */
.first .hero-actions { flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px 16px; margin-top: 26px; }
.first .hero-primary { font-size: 14px; min-height: 48px; padding: 13px 20px; }
.first .hero-secondary {
  display: inline-flex; align-items: center; gap: 10px; min-height: 48px;
  padding: 12px 18px; border: 1px solid var(--navy, #0f2538); border-radius: 4px;
  font: 500 14px/1.4 var(--sans); color: var(--navy, #0f2538);
  text-decoration: none; background: transparent;
}
.first .hero-secondary:hover { background: var(--navy, #0f2538); color: var(--paper, #f7f3ec); text-decoration: none; }
.first .booking-context { margin-top: 14px; font-size: 12px; max-width: 470px; }
@media (max-width: 767px) {
  .first .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .first .hero-primary, .first .hero-secondary { justify-content: center; }
}

/* ---- reading bar: two links, both readable */
.reading-bar .skip-story { max-width: none; white-space: nowrap; }
.reading-bar .skip-demo { margin-left: auto; margin-right: 18px; font-weight: 600; }
@media (max-width: 767px) {
  .reading-bar .skip-demo { margin-right: 12px; }
}
