#archetypentest-quiz {
  width: 100%;
  margin: 0 auto;
  font-family: sans-serif;
}
#quiz-question-container h1 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 1.5rem;
}
.quiz-answers {
  list-style: none;
  padding: 0;
  margin: 0;
}
.quiz-answers li {
  margin-bottom: 0.75rem;
}
.quiz-answer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  border: 1px solid #e5e9f2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.quiz-answer:hover {
  border-color: #fadff1;
  background: #fef5fb;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.quiz-answer.selected {
  border-color: #f5c7e9;
  background: #fdeaf6;
  box-shadow: 0 0 0 2px #f5c7e9;

}
.quiz-answer input[type="radio"] {
  width: 20px;
  height: 20px;
  margin-left: 1rem;
}

#quiz-navigation {
  margin-top: 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
#quiz-navigation button {
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, box-shadow 0.2s;
}
#quiz-navigation button:hover:not([disabled]) {
  background: #b83292;
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
#quiz-navigation button[disabled] {
  opacity: 0.5;
  cursor: default;
  box-shadow: none;
}

/* Lead form styles */
#archetypentest-form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  font-family: sans-serif;
}

.at-lead-card {
  background: #fff;
  padding: 2rem;
  box-shadow: 5px 5px 8px 2px rgb(0 0 0 / 5%);
  text-align: center;
}

.at-lead-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid #e5e9f2;
  border-radius: 8px;
}

.at-lead-form button {
  width: 100%;
  transition: background-color 0.2s, box-shadow 0.2s;
}

/* Result step */
#archetypentest-result {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  font-family: sans-serif;
}

.at-result-card {
  background: #fff;
  padding: 3rem 3.5rem;
  border-radius: 18px;
  box-shadow: 5px 5px 8px 2px rgb(0 0 0 / 5%);
  text-align: center;
}

.at-result-congrats {
  font-size: 1.25rem;
  margin-bottom: 0rem !important;
}

.at-result-lead {
  font-size: 1.1rem;
  color: #6c6f76;
  margin-bottom: 1.5rem;
}

#result-close {
  margin-top: 15px;
  font-weight: bold;
  font-size: 1.1rem;
}

.at-result-title {
  color: #e11985;
  margin-top: 1rem !important;
}

.at-result-description {
  text-align: left;
  color: #2f3037;
  line-height: 1.6;
}

.at-result-description p {
  margin-bottom: 1.25rem;
}

.at-result-image {
  max-width: 200px;
  margin: 2rem auto 0;
  display: none;
}

