@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600;700&display=swap');

#whQG {
  --whQG-page: #f7f3ec;
  --whQG-gradient: radial-gradient(circle at 12% 14%, #e9f1ff 0, rgba(233, 241, 255, 0) 34%),
    radial-gradient(circle at 78% 10%, #fff6dd 0, rgba(255, 246, 221, 0) 32%),
    linear-gradient(120deg, #eef5ff 0%, #f7f3ec 44%, #fff8e8 100%);
  --whQG-panel: #f7f3ec;
  --whQG-panel-soft: #fffdfa;
  --whQG-text: #171717;
  --whQG-muted: #6e6e68;
  --whQG-faint: #a9a9a3;
  --whQG-line: #222222;
  --whQG-line-soft: #ddd6cb;
  --whQG-choice: #fffdfa;
  --whQG-choice-hover: #ffffff;
  --whQG-accent: #4e63f4;
  --whQG-accent-soft: #eef3ff;
  --whQG-green: #006b5f;
  --whQG-black: #111111;
  --whQG-white: #ffffff;
  --whQG-success: #1f7a45;
  font-family: 'Instrument Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--whQG-gradient);
  color: var(--whQG-text);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;

  /* Full-screen takeover — own the viewport regardless of theme chrome */
  position: fixed;
  inset: 0;
  z-index: 2147483000;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

/* Lock the underlying themed page from scrolling while the gate is active */
html.whQG-locked,
html.whQG-locked body {
  overflow: hidden !important;
  height: 100%;
}

#whQG *,
#whQG *::before,
#whQG *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

#whQG .whQG-progress-wrap {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 253, 250, 0.78);
  border-bottom: 1px solid rgba(34, 34, 34, 0.08);
  backdrop-filter: blur(16px);
}

#whQG .whQG-progress-track {
  width: 100%;
  height: 3px;
  background: rgba(78, 99, 244, 0.12);
}

#whQG .whQG-progress-bar {
  height: 100%;
  background: var(--whQG-accent);
  transition: width 0.45s ease;
}

#whQG .whQG-progress-header {
  position: relative;
  min-height: 64px;
  padding: 14px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#whQG .whQG-logo {
  display: block;
  width: auto;
  max-width: 112px;
  height: 26px;
  object-fit: contain;
  object-position: left center;
}

#whQG .whQG-progress-header .whQG-logo-link-header {
  position: absolute;
  left: 28px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  line-height: 0;
  text-decoration: none;
}

#whQG .whQG-logo-link {
  text-decoration: none;
}

#whQG .whQG-logo-link:focus-visible {
  outline: 2px solid var(--whQG-accent);
  outline-offset: 3px;
  border-radius: 4px;
}

#whQG .whQG-progress-steps {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 12px;
  min-width: 0;
}

#whQG .whQG-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  color: var(--whQG-muted);
  min-width: 0;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
}

#whQG .whQG-progress-step::before {
  content: '';
  width: 100%;
  height: 4px;
  border-radius: 999px;
  background: #8f8f87;
}

#whQG .whQG-step-dot {
  width: 0;
  height: 0;
  border-radius: 999px;
  display: none;
  align-items: center;
  justify-content: center;
  background: #ededeb;
  color: #777771;
  font-size: 11px;
  font-weight: 700;
}

#whQG .whQG-progress-step.whQG-active,
#whQG .whQG-progress-step.whQG-done {
  color: var(--whQG-black);
}

#whQG .whQG-progress-step.whQG-active .whQG-step-dot,
#whQG .whQG-progress-step.whQG-done .whQG-step-dot {
  background: var(--whQG-accent);
  color: var(--whQG-white);
}

#whQG .whQG-progress-step.whQG-active::before,
#whQG .whQG-progress-step.whQG-done::before {
  background: var(--whQG-accent);
}

#whQG .whQG-progress-step.whQG-active {
  background: transparent;
  border-left-color: transparent;
  box-shadow: none;
}

#whQG .whQG-step-label {
  display: block;
  line-height: 1.25;
  white-space: normal;
}

#whQG .whQG-content {
  width: 100%;
  min-height: calc(100vh - 124px);
  margin: 0 auto;
  padding: clamp(34px, 6vh, 64px) 32px 62px;
  border-radius: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

#whQG .whQG-built-by {
  width: 100%;
  margin: 0 auto;
  padding: 0 0 18px;
  background: transparent;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

#whQG .whQG-built-by-logo {
  display: block;
  width: min(142px, 44vw);
  height: auto;
  opacity: 0.52;
}

#whQG .whQG-logo-link-footer {
  display: inline-block;
  line-height: 0;
  pointer-events: auto;
  transition: opacity 0.12s ease;
}

#whQG .whQG-logo-link-footer:hover .whQG-built-by-logo {
  opacity: 0.72;
}

#whQG .whQG-content.whQG-hidden {
  opacity: 0;
  transform: translateY(10px);
}

#whQG .whQG-content > * {
  width: min(100%, 620px);
}

#whQG .whQG-stage-label,
#whQG .whQG-stage-label-lg {
  color: var(--whQG-muted);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 10px;
}

#whQG .whQG-h1,
#whQG .whQG-h2,
#whQG .whQG-h2-result {
  color: var(--whQG-text);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.16;
}

#whQG .whQG-h1 {
  font-size: clamp(30px, 3.2vw, 40px);
  margin-bottom: 14px;
}

#whQG .whQG-h2 {
  font-size: clamp(23px, 2.2vw, 28px);
  margin-bottom: 22px;
}

#whQG .whQG-h2-result {
  font-size: clamp(26px, 2.7vw, 34px);
  margin-bottom: 14px;
}

#whQG .whQG-serif,
#whQG .whQG-body,
#whQG .whQG-body-lg {
  color: var(--whQG-muted);
  font-size: clamp(14px, 1.35vw, 16px);
  line-height: 1.55;
}

#whQG .whQG-serif {
  max-width: 780px;
  margin-bottom: 24px;
  font-style: normal;
}

#whQG .whQG-body,
#whQG .whQG-body-lg {
  margin-bottom: 16px;
}

#whQG .whQG-body-lg {
  margin-bottom: 30px;
}

#whQG .whQG-divider {
  border-top: 1px solid var(--whQG-line-soft);
  margin-top: 28px;
  padding-top: 24px;
}

#whQG .whQG-question-group {
  width: min(100%, 620px);
  margin-bottom: 32px;
}

#whQG .whQG-question-group:last-of-type {
  margin-bottom: 0;
}

#whQG .whQG-question-prompt {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  margin-bottom: 26px;
}

#whQG .whQG-question-number {
  color: var(--whQG-text);
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  white-space: nowrap;
}

#whQG .whQG-question-text {
  color: var(--whQG-text);
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.28;
}

#whQG .whQG-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(100%, 520px);
  margin-left: 28px;
}

#whQG .whQG-option-btn {
  width: 100%;
  min-height: 48px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 8px;
  border: 1px solid #d3cec4;
  border-radius: 16px;
  background: var(--whQG-choice);
  color: var(--whQG-text);
  padding: 8px 12px;
  cursor: pointer;
  font: inherit;
  font-size: 15px;
  line-height: 1.42;
  text-align: left;
  box-shadow: 0 1px 2px rgba(24, 24, 24, 0.04);
  transition: background 0.12s ease, border-color 0.12s ease, box-shadow 0.12s ease, transform 0.12s ease;
}

#whQG .whQG-option-btn:hover {
  background: var(--whQG-choice-hover);
  border-color: #8f877b;
  transform: translateY(-1px);
}

#whQG .whQG-option-btn:focus {
  outline: none;
}

#whQG .whQG-option-btn:focus-visible {
  box-shadow: inset 0 0 0 2px var(--whQG-black), 0 0 0 3px #ffffff, 0 0 0 5px var(--whQG-black);
}

#whQG .whQG-option-btn.whQG-selected {
  background: var(--whQG-accent-soft);
  border-color: var(--whQG-accent);
  box-shadow: inset 0 0 0 1px var(--whQG-accent), 0 6px 20px rgba(79, 99, 244, 0.08);
}

#whQG .whQG-square-question .whQG-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 560px);
}

#whQG .whQG-square-question .whQG-option-btn {
  min-height: 0;
  padding: 10px 12px;
  grid-template-columns: 18px minmax(0, 1fr);
  align-content: start;
  align-items: start;
}

#whQG .whQG-square-question .whQG-option-check {
  display: none;
}

#whQG .whQG-option-key {
  width: 18px;
  height: 18px;
  margin-top: 0;
  border: 2px solid #c8c3ba;
  border-radius: 999px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  font-weight: 700;
  color: transparent;
}

#whQG .whQG-selected .whQG-option-key {
  background: radial-gradient(circle, var(--whQG-accent) 0 36%, transparent 39%);
  border-color: var(--whQG-accent);
  color: transparent;
}

#whQG .whQG-option-label {
  min-width: 0;
}

#whQG .whQG-option-check {
  color: var(--whQG-accent);
  font-size: 18px;
  line-height: 1;
  justify-self: end;
  opacity: 0;
}

#whQG .whQG-selected .whQG-option-check {
  opacity: 1;
}

#whQG .whQG-multi-hint {
  margin: -4px 0 14px 28px;
  color: var(--whQG-muted);
  font-size: 14px;
  line-height: 1.45;
}

#whQG .whQG-multi-meta {
  margin: 12px 0 0 28px;
  color: var(--whQG-muted);
  font-size: 13px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

#whQG .whQG-multi-meta-ready {
  color: var(--whQG-accent);
  font-weight: 600;
}

#whQG .whQG-multi-question .whQG-option-key {
  border-radius: 5px;
  font-size: 11px;
  font-weight: 700;
  color: transparent;
}

#whQG .whQG-multi-question .whQG-option-btn.whQG-selected .whQG-option-key {
  background: var(--whQG-accent);
  border-color: var(--whQG-accent);
  color: #fff;
}

#whQG .whQG-multi-question .whQG-option-check {
  display: none;
}

#whQG .whQG-sub-input-wrap {
  grid-column: 1 / -1;
}

#whQG .whQG-sub-input {
  width: min(100%, 520px);
  margin-top: 0;
  margin-left: 28px;
  border: 1px solid #d3cec4;
  border-radius: 18px;
  background: var(--whQG-white);
  color: var(--whQG-text);
  padding: 12px 14px;
  font: inherit;
  font-size: 15px;
  outline: none;
}

#whQG .whQG-square-question .whQG-sub-input {
  width: 100%;
  margin-left: 0;
}

#whQG .whQG-pricing-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
}

#whQG .whQG-pricing-stepper {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  width: min(100%, 620px);
}

#whQG .whQG-pricing-step {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--whQG-muted);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

#whQG .whQG-pricing-step-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid #c8c3ba;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

#whQG .whQG-pricing-step-active .whQG-pricing-step-dot {
  border-color: var(--whQG-accent);
  color: var(--whQG-accent);
  transform: scale(1.05);
}

#whQG .whQG-pricing-step-done .whQG-pricing-step-dot {
  border-color: var(--whQG-accent);
  background: var(--whQG-accent);
  color: #fff;
}

#whQG .whQG-pricing-step-skipped .whQG-pricing-step-dot {
  border-color: #d3cec4;
  color: var(--whQG-muted);
}

#whQG .whQG-pricing-step-pending {
  opacity: 0.45;
}

#whQG .whQG-pricing-step-active .whQG-pricing-step-label {
  color: var(--whQG-text);
}

#whQG .whQG-pricing-step-line {
  flex: 1 1 auto;
  height: 2px;
  border-radius: 999px;
  background: #e4dfd4;
  transition: background 0.35s ease;
}

#whQG .whQG-pricing-step-line-done {
  background: linear-gradient(90deg, var(--whQG-accent) 0%, #b8c8f5 100%);
}

#whQG .whQG-pricing-hint {
  margin: -8px 0 16px;
  color: var(--whQG-muted);
  font-size: 14px;
  line-height: 1.45;
  text-align: center;
  width: min(100%, 620px);
}

#whQG .whQG-pricing-followup {
  margin-top: 4px;
  padding-top: 20px;
  border-top: 1px solid var(--whQG-border);
  width: min(100%, 620px);
}

#whQG .whQG-pricing-followup-eyebrow {
  margin: 0 0 12px;
  color: var(--whQG-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#whQG .whQG-pricing-summary {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #c8d8f5;
  background: #edf4ff;
}

#whQG .whQG-pricing-summary-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--whQG-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  flex: 0 0 auto;
}

#whQG .whQG-pricing-summary-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

#whQG .whQG-pricing-summary-body strong {
  color: var(--whQG-text);
  font-size: 16px;
  line-height: 1.2;
}

#whQG .whQG-pricing-summary-range {
  color: #2f4f8a;
  font-size: 14px;
  line-height: 1.35;
}

#whQG .whQG-pricing-followup-text {
  margin: 0 0 16px;
  color: var(--whQG-muted);
  font-size: 15px;
  line-height: 1.45;
}

#whQG .whQG-pricing-continue-wrap {
  margin-bottom: 8px;
}

#whQG .whQG-pricing-continue-reveal {
  animation: whQG-pricing-btn-pulse 0.55s ease 0.35s 1 both;
}

#whQG .whQG-tier-selected-msg {
  margin: -8px 0 20px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #edf4ff;
  border: 1px solid #c8d8f5;
  color: #2f4f8a;
  font-size: 14px;
  line-height: 1.45;
}

#whQG .whQG-pricing-alt-toggle {
  display: block;
  width: 100%;
  margin: 0 0 8px;
  padding: 10px 0;
  border: 0;
  background: none;
  color: var(--whQG-muted);
  font: inherit;
  font-size: 14px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

#whQG .whQG-pricing-alt-toggle-early {
  margin-top: 4px;
}

#whQG .whQG-pricing-alt-toggle:hover,
#whQG .whQG-pricing-back-toggle:hover {
  color: var(--whQG-accent);
}

#whQG .whQG-pricing-back-toggle {
  display: block;
  width: 100%;
  margin: 14px 0 0;
  padding: 8px 0;
  border: 0;
  background: none;
  color: var(--whQG-muted);
  font: inherit;
  font-size: 14px;
  text-align: center;
  cursor: pointer;
}

#whQG .whQG-pricing-alt {
  margin-top: 8px;
  padding-top: 18px;
  border-top: 1px solid var(--whQG-border);
  width: min(100%, 620px);
}

#whQG .whQG-pricing-alt-label {
  margin: 0 0 12px;
  color: var(--whQG-muted);
  font-size: 14px;
  line-height: 1.45;
}

#whQG .whQG-pricing-options {
  margin-top: 0;
}

#whQG .whQG-tiers-has-selection .whQG-tier-card:not(.whQG-selected-tier) {
  opacity: 0.42;
  transform: scale(0.985);
  filter: saturate(0.75);
}

#whQG .whQG-tiers-dimmed .whQG-tier-card {
  opacity: 0.28;
  transform: scale(0.98);
  pointer-events: none;
}

#whQG .whQG-pricing-animate-in {
  animation: whQG-pricing-panel-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#whQG .whQG-pricing-animate-in [data-stagger] {
  opacity: 0;
  animation: whQG-pricing-stagger-in 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes whQG-pricing-panel-in {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whQG-pricing-stagger-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes whQG-pricing-btn-pulse {
  0% {
    transform: scale(0.98);
    box-shadow: 0 0 0 0 rgba(79, 99, 244, 0.35);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(79, 99, 244, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(79, 99, 244, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  #whQG .whQG-pricing-animate-in,
  #whQG .whQG-pricing-animate-in [data-stagger],
  #whQG .whQG-pricing-continue-reveal,
  #whQG .whQG-tier-card,
  #whQG .whQG-pricing-step-dot,
  #whQG .whQG-pricing-step-line {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }

  #whQG .whQG-tiers-has-selection .whQG-tier-card:not(.whQG-selected-tier),
  #whQG .whQG-tiers-dimmed .whQG-tier-card {
    opacity: 0.65 !important;
  }
}

#whQG .whQG-pricing-options .whQG-option-btn {
  min-height: 48px;
}

#whQG .whQG-sub-input:focus,
#whQG .whQG-input:focus {
  border-color: var(--whQG-accent);
  box-shadow: inset 0 0 0 1px var(--whQG-accent), 0 0 0 3px rgba(78, 99, 244, 0.1);
}

#whQG .whQG-tier-intro {
  color: var(--whQG-muted);
  font-size: 15px;
  line-height: 1.45;
  margin-bottom: 16px;
}

#whQG .whQG-tiers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
  width: min(100%, 620px);
}

#whQG .whQG-tier-card {
  position: relative;
  min-width: 0;
  min-height: auto;
  border: 1px solid #d3cec4;
  border-radius: 18px;
  background: var(--whQG-panel-soft);
  padding: 20px 56px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, filter 0.35s ease;
}

#whQG .whQG-tier-card.whQG-featured {
  border-color: #bfc9ec;
  background: #f5f8ff;
}

#whQG .whQG-tier-card.whQG-selected-tier {
  border-color: var(--whQG-accent);
  background: #eaf2ff;
  box-shadow: inset 0 0 0 1px var(--whQG-accent), 0 8px 26px rgba(79, 99, 244, 0.1);
}

#whQG .whQG-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

#whQG .whQG-tier-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-width: 0;
}

#whQG .whQG-tier-radio {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 18px;
  height: 18px;
  border: 2px solid #c8c3ba;
  border-radius: 999px;
  flex: 0 0 auto;
  margin-top: 1px;
}

#whQG .whQG-selected-tier .whQG-tier-radio {
  border-color: var(--whQG-accent);
  background: radial-gradient(circle, var(--whQG-accent) 0 36%, transparent 39%);
}

#whQG .whQG-tier-label,
#whQG .whQG-result-label,
#whQG .whQG-label {
  color: var(--whQG-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#whQG .whQG-result-heading {
  color: var(--whQG-text);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 12px;
}

#whQG .whQG-tier-name,
#whQG .whQG-tier-price {
  color: var(--whQG-text);
  font-weight: 700;
}

#whQG .whQG-tier-name {
  font-size: 19px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

#whQG .whQG-tier-price {
  font-size: 20px;
  letter-spacing: -0.02em;
}

#whQG .whQG-tier-price-row {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

#whQG .whQG-tier-desc,
#whQG .whQG-tier-time,
#whQG .whQG-result-note,
#whQG .whQG-step-text,
#whQG .whQG-suggestion,
#whQG .whQG-closing,
#whQG .whQG-cal-note {
  color: var(--whQG-muted);
}

#whQG .whQG-tier-time {
  display: block;
  color: var(--whQG-muted);
  font-size: 12px;
  margin-top: 4px;
}

#whQG .whQG-tier-features {
  list-style: none;
  display: grid;
  gap: 7px;
  margin-top: 0;
  color: var(--whQG-text);
  font-size: 13px;
  line-height: 1.35;
}

#whQG .whQG-tier-features li::before {
  content: '✓';
  margin-right: 7px;
  color: var(--whQG-green);
  font-weight: 700;
}

/* --- Tier card: deliverables list --- */
#whQG .whQG-tier-deliverables {
  list-style: none;
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--whQG-line-soft);
}

#whQG .whQG-tier-del-item {
  position: relative;
  padding: 3px 0 3px 16px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--whQG-muted);
}

#whQG .whQG-tier-del-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--whQG-faint);
}

#whQG .whQG-featured .whQG-tier-del-item {
  color: var(--whQG-text);
}

#whQG .whQG-featured .whQG-tier-del-item::before {
  background: var(--whQG-muted);
}

/* --- Tier card: audience line --- */
#whQG .whQG-tier-audience {
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px solid var(--whQG-line-soft);
  font-size: 12px;
  font-style: italic;
  line-height: 1.5;
  color: var(--whQG-faint);
}

#whQG .whQG-featured .whQG-tier-audience {
  color: var(--whQG-muted);
}

/* Defensive wrapping — labels/text must never clip or overflow their card.
   white-space: normal beats page-builder nowrap (e.g. Elementor kit globals). */
#whQG .whQG-option-label,
#whQG .whQG-question-text,
#whQG .whQG-tier-name,
#whQG .whQG-tier-desc,
#whQG .whQG-tier-audience,
#whQG .whQG-tier-del-item {
  min-width: 0;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

#whQG .whQG-tier-desc {
  margin: 0;
}

#whQG .whQG-btn-wrap {
  margin-top: 22px;
  padding-left: 34px;
}

#whQG .whQG-btn-primary,
#whQG .whQG-btn-secondary {
  border: 1px solid var(--whQG-black);
  border-radius: 16px;
  cursor: pointer;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  padding: 13px 20px;
  transition: opacity 0.12s ease, transform 0.12s ease, box-shadow 0.12s ease;
}

#whQG .whQG-btn-primary {
  background: var(--whQG-accent);
  color: var(--whQG-white);
  border-color: var(--whQG-accent);
  box-shadow: 0 3px 12px rgba(78, 99, 244, 0.22);
}

#whQG .whQG-btn-primary:hover:not(:disabled),
#whQG .whQG-btn-secondary:hover {
  transform: translateY(-1px);
}

#whQG .whQG-btn-primary:active,
#whQG .whQG-btn-secondary:active {
  transform: translateY(0);
}

#whQG .whQG-btn-primary:disabled {
  background: #c9c9c5;
  border-color: #c9c9c5;
  color: #74746f;
  box-shadow: none;
}

#whQG .whQG-result-btn-wrap {
  margin-top: 4px;
  padding-left: 0;
}

#whQG .whQG-btn-secondary {
  background: transparent;
  color: var(--whQG-black);
}

#whQG .whQG-details {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

#whQG .whQG-details > .whQG-form-section-title:first-child {
  margin-bottom: 8px;
}

#whQG .whQG-form-section {
  margin-bottom: 24px;
}

#whQG .whQG-form-section-title {
  margin-bottom: 14px;
  color: var(--whQG-text);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

#whQG .whQG-static-label {
  display: block;
  margin-bottom: 6px;
  color: var(--whQG-muted);
  font-size: 13px;
  font-weight: 500;
}

#whQG .whQG-field {
  position: relative;
  margin-bottom: 12px;
}

#whQG .whQG-field:last-child {
  margin-bottom: 0;
}

#whQG .whQG-details .whQG-btn-wrap {
  padding-left: 0;
  margin-top: 4px;
}

#whQG .whQG-label {
  display: block;
  margin-bottom: 8px;
}

#whQG .whQG-input {
  width: 100%;
  border: 1px solid #d3cec4;
  border-radius: 18px;
  background: var(--whQG-white);
  color: var(--whQG-text);
  padding: 13px 15px;
  font: inherit;
  font-size: 14px;
  outline: none;
  box-shadow: 0 1px 2px rgba(24, 24, 24, 0.03);
  transition: border-color 0.12s ease, box-shadow 0.12s ease;
}

#whQG select.whQG-input {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #8f877b 50%),
    linear-gradient(135deg, #8f877b 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 34px;
}

#whQG .whQG-textarea {
  resize: vertical;
  min-height: 96px;
  padding-top: 12px;
}

#whQG .whQG-field-textarea .whQG-textarea {
  padding-top: 12px;
}

#whQG .whQG-result-card {
  background: var(--whQG-white);
  border: 1px solid var(--whQG-line-soft);
  border-radius: 18px;
  padding: 22px 24px;
  margin-bottom: 18px;
}

#whQG .whQG-result-price {
  color: var(--whQG-text);
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 6px;
}

#whQG .whQG-steps,
#whQG .whQG-suggestions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 34px;
}

#whQG .whQG-step {
  display: flex;
  gap: 12px;
  align-items: baseline;
}

#whQG .whQG-step-num {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--whQG-black);
  color: var(--whQG-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 700;
}

#whQG .whQG-step-text,
#whQG .whQG-suggestion {
  font-size: 15px;
  line-height: 1.45;
}

#whQG .whQG-suggestion::before {
  content: '→ ';
  color: var(--whQG-text);
}

#whQG .whQG-closing {
  margin-top: 28px;
  font-size: 17px;
  line-height: 1.5;
}

#whQG .whQG-cal-note {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
}

#whQG .whQG-check-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: #dff4e8;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}

#whQG .whQG-nav-controls {
  position: fixed;
  right: 34px;
  bottom: 30px;
  z-index: 30;
  display: inline-flex;
  overflow: hidden;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(17, 17, 17, 0.18);
}

#whQG .whQG-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-right: 1px solid #343434;
  background: var(--whQG-black);
  color: var(--whQG-white);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition: background 0.12s ease;
}

#whQG .whQG-nav-btn:hover:not(:disabled) {
  background: #000000;
}

#whQG .whQG-nav-ico {
  display: inline-flex;
  align-items: center;
}

#whQG .whQG-nav-btn:last-child {
  border-right: 0;
}

#whQG .whQG-nav-btn:disabled {
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
}

@media (max-width: 900px) {
  #whQG .whQG-progress-header {
    grid-template-columns: 1fr;
  }

  #whQG .whQG-progress-steps {
    display: none;
  }

  #whQG .whQG-tiers {
    grid-template-columns: 1fr;
  }

  #whQG .whQG-tier-card {
    padding: 20px 48px 20px 20px;
  }
}

@media (max-width: 640px) {
  #whQG .whQG-progress-header {
    min-height: 56px;
    padding: 12px 18px;
  }

  #whQG .whQG-content {
    width: 100%;
    min-height: calc(100vh - 112px);
    margin-bottom: 0;
    padding: 36px 20px 66px;
    border-radius: 0;
  }

  #whQG .whQG-logo-link-header {
    left: 18px;
  }

  #whQG .whQG-logo {
    max-width: 104px;
    height: 24px;
  }

  #whQG .whQG-built-by {
    width: 100%;
    margin-bottom: 0;
    padding-bottom: 76px; /* clear the fixed Back/Next nav */
  }

  #whQG .whQG-content > *,
  #whQG .whQG-question-group {
    width: 100%;
  }

  #whQG .whQG-question-prompt {
    gap: 8px;
  }

  #whQG .whQG-question-number {
    font-size: 14px;
  }

  #whQG .whQG-question-text {
    font-size: 21px;
  }

  #whQG .whQG-options,
  #whQG .whQG-sub-input {
    width: 100%;
    margin-left: 0;
  }

  #whQG .whQG-square-question .whQG-options {
    grid-template-columns: 1fr;
  }

  #whQG .whQG-option-btn {
    min-height: 46px;
    padding: 9px 12px;
    font-size: 15px;
  }

  #whQG .whQG-square-question .whQG-option-btn {
    min-height: 0;
    padding: 10px 12px;
  }

  #whQG .whQG-btn-wrap {
    padding-left: 0;
  }

  #whQG .whQG-tier-header,
  #whQG .whQG-tier-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  #whQG .whQG-nav-controls {
    right: 22px;
    bottom: 18px;
  }
}

/* =========================================================
   PAGE-BUILDER HARDENING (inherited font + native chrome)
   Every gate rule above is #id-scoped, so its own values beat
   page-builder globals (e.g. Elementor's `.elementor-kit-N button`,
   specificity 0,1,1). These two rules additionally neutralise the
   things the gate never declares itself but builders inject:
   inherited font-family on text, and native button text-transform /
   appearance. No design values change.
   ========================================================= */
#whQG :where(*) {
  font-family: inherit;
}

#whQG :where(button, input, textarea, select, a) {
  text-transform: none;
  letter-spacing: normal;
  border-radius: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

#whQG :where(button) {
  white-space: normal;
}
