/* IQSTAT landing quest — shared with blog quiz markup */
.pen-quest-wrap {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.iqstat-quiz {
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 16px 40px rgba(37, 99, 235, 0.25);
}

.iqstat-quiz__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.iqstat-quiz__top--xp-only {
  justify-content: flex-end;
  margin-bottom: 8px;
}

.iqstat-quiz__badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.iqstat-quiz__xp {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.9;
}

.iqstat-quiz__eyebrow {
  margin: 0 0 6px;
  font-size: 13px;
  opacity: 0.9;
}

.iqstat-quiz__title {
  margin: 0 0 8px;
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 800;
  line-height: 1.2;
}

.iqstat-quiz__lead {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.92;
}

.iqstat-quiz__step {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  opacity: 0.85;
}

.iqstat-quiz__question {
  margin: 0 0 14px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.35;
}

.iqstat-quiz__options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.iqstat-quiz__option {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: none;
  border-radius: 12px;
  background: #fff;
  color: #1d4ed8;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.iqstat-quiz__option:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.iqstat-quiz__result-label {
  margin: 0 0 6px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.85;
}

.iqstat-quiz__result h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.iqstat-quiz__result p {
  margin: 0 0 16px;
  line-height: 1.5;
  opacity: 0.95;
}

.iqstat-quiz__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 100px;
  background: #22c55e;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(34, 197, 94, 0.35);
}

.iqstat-quiz__cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  animation: pen-icon-arrow 1.4s ease-in-out infinite;
}

@keyframes pen-icon-arrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(3px); }
}

.iqstat-quiz__cta:hover {
  filter: brightness(1.05);
}

@media (max-width: 768px) {
  .iqstat-quiz {
    padding: 20px 18px;
  }

  .iqstat-quiz__option {
    padding: 12px 14px;
    font-size: 13px;
  }

  .iqstat-quiz__option-icon {
    width: 24px;
    height: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .iqstat-quiz__cta svg {
    animation: none;
  }
}
