/* ── How Boltkit Works (/how-it-works) ───────────────── */

/* Numbered step badge — round chip with cream numeral on amber background.
   Matches the post-purchase thanks-page step numbers visually. */
.hiw-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--amber);
  color: #fff7e8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.8125rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: -0.01em;
}

/* Step header line — title sits next to the badge inside .hiw-step-head. */
.hiw-step-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.625rem;
}

/* Sub-bullet list inside each step card. */
.hiw-step-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0.875rem 0 1.25rem;
  padding-left: 0;
}
.hiw-step-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.8125rem;
  color: rgba(12, 12, 12, 0.7);
  font-weight: 300;
  line-height: 1.6;
}
.hiw-step-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--amber);
}

/* Caption line below each card's CTA. */
.hiw-step-note {
  font-size: 0.75rem;
  color: #5b6470;
  font-weight: 300;
  margin-top: 0.625rem;
  text-align: center;
}

/* Full-width CTA inside the include card on /how-it-works so the buy
   button sits flush below the card body. */
.pp-include-card .pp-buy-btn-sm {
  width: 100%;
  justify-content: center;
  margin-top: 0.5rem;
}

/* Low-emphasis secondary link used on SWFL hero and FAQ. Sits below
   or beside the primary Stripe CTA without competing for attention. */
.hiw-alt-link {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #5b6470;
  text-decoration: none;
  letter-spacing: 0.01em;
  border-bottom: 1px solid rgba(91, 100, 112, 0.25);
  padding-bottom: 1px;
  transition: color 0.15s, border-color 0.15s;
}
.hiw-alt-link:hover {
  color: var(--amber);
  border-bottom-color: var(--amber);
}

/* Mobile: tighten card padding, keep badges + buttons legible, and force
   the buy buttons to stay full width so the price is always visible. */
@media (max-width: 640px) {
  .hiw-step-num {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .pp-include-card {
    padding: 1.5rem;
  }
  .pp-include-card .pp-buy-btn-sm {
    width: 100%;
  }
}
