/* PFA Firm Quiz — frontend styles */
.pfa-fq-wrap {
  max-width: 680px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
}

/* Progress bar */
.pfa-fq-progress {
  height: 4px;
  background: rgba(232,236,244,.12);
  border-radius: 4px;
  margin-bottom: 32px;
  overflow: hidden;
}
.pfa-fq-progress-fill {
  height: 100%;
  width: 0;
  background: #F4B400;
  border-radius: 4px;
  transition: width .4s ease;
}

/* Question counter */
.pfa-fq-q-count {
  font-size: .8rem;
  font-weight: 600;
  color: #8A9BB8;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 10px;
}

/* Question text */
.pfa-fq-question {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8ECF4;
  margin-bottom: 24px;
  line-height: 1.3;
}

/* Options */
.pfa-fq-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pfa-fq-opt {
  display: block;
  width: 100%;
  text-align: left;
  padding: 16px 20px;
  background: rgba(232,236,244,.06);
  border: 1px solid rgba(232,236,244,.12);
  border-radius: 10px;
  color: #E8ECF4;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s ease;
}
.pfa-fq-opt:hover {
  background: rgba(244,180,0,.1);
  border-color: rgba(244,180,0,.4);
  color: #F4B400;
  transform: translateY(-1px);
}
.pfa-fq-opt:active {
  transform: translateY(0);
}

/* Navigation */
.pfa-fq-nav {
  margin-top: 20px;
}
.pfa-fq-restart {
  background: none;
  border: 1px solid rgba(232,236,244,.2);
  color: #8A9BB8;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.pfa-fq-restart:hover {
  border-color: #F4B400;
  color: #F4B400;
}

/* Result */
.pfa-fq-result-head {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E8ECF4;
  margin-bottom: 24px;
  line-height: 1.3;
}
.pfa-fq-result-head .pfa-fq-pct {
  color: #F4B400;
}

/* Recommendation card */
.pfa-fq-reco {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(232,236,244,.06);
  border: 1px solid rgba(244,180,0,.25);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 20px;
}
.pfa-fq-big-logo {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: #0A1628;
  flex-shrink: 0;
}
/* Image logo variant: contain the firm logo within the rounded chip */
.pfa-fq-big-logo--img {
  overflow: hidden;
  padding: 6px;
}
.pfa-fq-big-logo--img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.pfa-fq-reco h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #E8ECF4;
  margin: 0 0 6px;
}
.pfa-fq-verdict {
  font-size: .9rem;
  color: #8A9BB8;
  line-height: 1.5;
  margin: 0;
}

/* Second-place */
.pfa-fq-match {
  font-size: .9rem;
  color: #8A9BB8;
  margin-bottom: 16px;
}