/* ==========================================================================
   quote-cta.css — "Quote on your free strategy call" lockup
   Shared, additive component that replaces every fixed-price slot site-wide.
   Built on the existing tokens (tokens.css): navy --color-primary,
   gold --color-accent, Inter Display / Inter. No new palette.

   Accessibility notes (UI-UX-PRO-MAX §1):
   - Gold (#E8B400) on white is ~1.7:1 → NEVER used as text on light surfaces.
     On light cards the eyebrow is navy/muted text + a decorative gold bar,
     and gold appears only as a PILL background (navy-on-gold = AAA).
   - On dark (navy) cards gold-as-text is ~7.5:1 → used via --on-dark.
   ========================================================================== */

.vq-quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  margin: 0;
}

/* Eyebrow — light context: muted label with a gold accent bar (gold is
   decorative; meaning carried by the navy text, satisfying color-not-only). */
.vq-quote__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
  margin: 0;
}
.vq-quote__eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--color-accent);
  transition: width 0.25s ease;
}

/* Value — the new focal point of the card (replaces the big number). */
.vq-quote__value {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.3vw, 25px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--color-primary);
  text-wrap: balance;
  margin: 0;
}
.vq-quote__value > svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--color-accent);           /* decorative spark */
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.vq-quote__sub {
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--color-muted);
  margin: 0;
}

/* --- Retainer variant: loud gold "Monthly retainer" pill ------------------ */
.vq-quote--retainer .vq-quote__eyebrow {
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px -6px rgba(204, 158, 0, 0.7);
}
.vq-quote--retainer .vq-quote__eyebrow::before { display: none; }

/* --- Dark (navy card) variant -------------------------------------------- */
.vq-quote--on-dark .vq-quote__eyebrow { color: var(--color-accent); }
.vq-quote--on-dark .vq-quote__value   { color: #fff; }
.vq-quote--on-dark .vq-quote__sub     { color: rgba(255, 255, 255, 0.62); }
.vq-quote--on-dark.vq-quote--retainer .vq-quote__eyebrow { color: var(--color-primary); }

/* --- Divider parity: restore the rule the old price block carried --------- */
.pr-tier .vq-quote,
.addon   .vq-quote,
.ma-tier .vq-quote {
  padding-bottom: 16px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--color-border);
  width: 100%;
}

/* --- Micro-interaction: gold bar widens / spark nudges on card hover ------ */
.pr-tier:hover .vq-quote__eyebrow::before,
.addon:hover  .vq-quote__eyebrow::before,
.ma-tier:hover .vq-quote__eyebrow::before { width: 32px; }

.pr-tier:hover .vq-quote__value > svg,
.addon:hover  .vq-quote__value > svg,
.ma-tier:hover .vq-quote__value > svg,
.vh-svc-card:hover .vq-quote__value > svg { transform: rotate(15deg) scale(1.12); }

/* --- Small inline tag (e.g. homepage meta "Monthly retainer") ------------- */
.vq-tag {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: var(--color-accent);
  padding: 3px 9px;
  border-radius: 999px;
  margin-right: 9px;
  vertical-align: 1px;
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .vq-quote__eyebrow::before,
  .vq-quote__value > svg { transition: none; }
}
