.stq-quiz,
.stq-result-shell {
  --stq-ink: #18273d;
  --stq-gold: #f4b52b;
  --stq-gold-dark: #d99016;
  --stq-card: #ffffff;
  --stq-muted: #526177;
  --stq-line: #d6dde7;
  --stq-danger: #a83d34;
  --stq-shadow: 0 18px 50px rgba(11, 26, 49, .14);
  --stq-radius: 22px;
  box-sizing: border-box;
  color: var(--stq-ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
}

.stq-quiz *,
.stq-quiz *::before,
.stq-quiz *::after,
.stq-result-shell *,
.stq-result-shell *::before,
.stq-result-shell *::after {
  box-sizing: border-box;
}

.stq-quiz {
  container: stqquiz / inline-size;
  position: relative;
  width: 100%;
  max-width: 590px;
  margin-inline: auto;
}

.stq-quiz button,
.stq-quiz input {
  font: inherit;
}

.stq-quiz :focus-visible,
.stq-result-shell :focus-visible {
  outline: 3px solid #0a6ebd;
  outline-offset: 3px;
}

.stq-widget {
  width: 100%;
  padding: 24px;
  border-radius: var(--stq-radius);
  background: var(--stq-card);
  box-shadow: var(--stq-shadow);
}

.stq-title {
  margin: 0;
  color: var(--stq-gold-dark);
  font-size: clamp(1.6rem, 5.5cqw, 2rem);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.stq-subtitle {
  margin: 7px 0 20px;
  color: #40516a;
  font-size: 1rem;
  font-weight: 600;
}

.stq-progress-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
  color: var(--stq-muted);
  font-size: .9rem;
  font-weight: 700;
}

.stq-progress-track {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: #e9edf2;
}

.stq-progress-bar {
  width: 12.5%;
  height: 100%;
  border-radius: inherit;
  background: var(--stq-gold);
  transition: width .25s ease;
}

.stq-screen {
  min-height: 380px;
  padding-top: 22px;
}

.stq-question {
  margin: 0 0 18px;
  color: var(--stq-gold-dark);
  font-size: clamp(1.15rem, 3.8cqw, 1.4rem);
  line-height: 1.18;
  letter-spacing: -.02em;
}

.stq-question-note {
  margin: -10px 0 16px;
  color: #40516a;
  font-size: 1rem;
  font-weight: 600;
}

.stq-choice-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.stq-choice,
.stq-checkbox-choice {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--stq-line);
  border-radius: 14px;
  background: #fff;
  color: var(--stq-ink);
  text-align: left;
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.stq-choice {
  padding: 14px 16px;
  cursor: pointer;
  font-weight: 700;
}

.stq-choice:hover,
.stq-choice[aria-pressed="true"],
.stq-checkbox-choice:has(input:checked) {
  border-color: var(--stq-gold-dark);
  background: #fff7df;
}

.stq-choice:active {
  transform: translateY(1px);
}

.stq-checkbox-choice {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  cursor: pointer;
  font-weight: 700;
}

.stq-checkbox-choice input,
.stq-acceptance input {
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  accent-color: var(--stq-gold-dark);
}

.stq-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.stq-back {
  padding: 11px 0;
  border: 0;
  background: transparent;
  color: var(--stq-muted);
  cursor: pointer;
  font-weight: 800;
}

.stq-next,
.stq-submit,
.stq-result-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 49px;
  padding: 12px 19px;
  border: 0;
  border-radius: 999px;
  background: var(--stq-gold);
  box-shadow: 0 5px 12px rgba(217, 144, 22, .24);
  color: var(--stq-ink);
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
}

.stq-next {
  margin-left: auto;
}

.stq-submit:disabled {
  cursor: wait;
  opacity: .78;
}

.stq-spinner {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(24, 39, 61, .3);
  border-top-color: var(--stq-ink);
  border-radius: 50%;
  animation: stq-spin .75s linear infinite;
}

@keyframes stq-spin {
  to { transform: rotate(360deg); }
}

.stq-contact-form,
.stq-contact-grid {
  display: grid;
  gap: 14px;
}

.stq-field {
  display: grid;
  gap: 6px;
  color: var(--stq-ink);
  font-size: .95rem;
  font-weight: 800;
}

.stq-field input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--stq-line);
  border-radius: 11px;
  background: #fff;
  color: var(--stq-ink);
  font-size: 16px;
}

.stq-field input[aria-invalid="true"] {
  border-color: var(--stq-danger);
}

.stq-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #40516a;
  font-size: .92rem;
  font-weight: 500;
}

.stq-acceptance input {
  margin-top: 2px;
}

.stq-small-print {
  margin: 0;
  color: #40516a;
  font-size: .9rem;
  font-weight: 600;
}

.stq-small-print a {
  color: var(--stq-ink);
  font-weight: 700;
}

.stq-error,
.stq-setup-error {
  margin: 14px 0 0;
  color: var(--stq-danger);
  font-size: .94rem;
  font-weight: 700;
}

.stq-exit p {
  color: #40516a;
}

.stq-exit a {
  color: var(--stq-ink);
  font-weight: 700;
}

.stq-hidden-form {
  position: absolute !important;
  left: -9999px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.stq-result-shell {
  width: min(680px, calc(100% - 24px));
  margin-inline: auto;
  padding: 18px 0;
}

.stq-result-card {
  padding: clamp(24px, 4vw, 36px);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--stq-shadow);
}

.stq-result-kicker {
  margin: 0 0 10px;
  color: var(--stq-gold-dark);
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.stq-result-confirmation {
  margin: 0 0 10px !important;
  color: var(--stq-ink) !important;
  font-size: .95rem !important;
  font-weight: 800;
}

.stq-result-card h1 {
  margin: 0;
  color: var(--stq-ink);
  font-size: clamp(1.75rem, 4.5vw, 2.5rem);
  line-height: 1.04;
  letter-spacing: -.04em;
}

.stq-result-card p {
  color: #40516a;
  font-size: 1rem;
}

.stq-result-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 13px 22px;
  margin-top: 22px;
}

.stq-result-shell a.stq-result-cta {
  background: var(--stq-gold) !important;
  color: var(--stq-ink) !important;
  text-decoration: none !important;
}

.stq-result-shell a.stq-result-call {
  color: var(--stq-gold-dark) !important;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.stq-result-call {
  color: var(--stq-ink);
  font-weight: 800;
  text-decoration: none;
}

.stq-disclaimer {
  margin-top: 24px;
  color: var(--stq-muted) !important;
  font-size: .88rem !important;
}

.stq-lit-footer {
  margin-top: 22px;
  padding-top: 17px;
  border-top: 1px solid rgba(24, 39, 61, .16);
  color: #526177 !important;
  font-size: .9rem;
  font-weight: 800;
  text-align: center;
}

.stq-generic h1 {
  max-width: 620px;
  margin-inline: auto;
  font-size: clamp(1.75rem, 4vw, 2.15rem);
  line-height: 1.1;
}

.stq-generic h1 + p {
  margin: 10px auto 0;
}

.stq-generic {
  text-align: center;
}

@container stqquiz (min-width: 520px) {
  .stq-widget {
    padding: 30px;
  }

  .stq-choice-list,
  .stq-contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@container stqquiz (max-width: 430px) {
  .stq-widget {
    padding: 21px 17px;
  }

  .stq-screen {
    min-height: 0;
  }

  .stq-progress-row {
    align-items: flex-start;
    font-size: .82rem;
  }
}
/* Elementor global-style isolation. */
.stq-quiz .stq-title,
.stq-quiz .stq-question {
  color: var(--stq-gold-dark) !important;
  font-weight: 700 !important;
  text-transform: none !important;
}

.stq-quiz button.stq-choice {
  min-height: 54px !important;
  padding: 14px 16px !important;
  border: 1px solid var(--stq-line) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--stq-ink) !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  text-align: left !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.stq-quiz button.stq-choice:hover,
.stq-quiz button.stq-choice:focus,
.stq-quiz button.stq-choice[aria-pressed="true"] {
  border-color: var(--stq-gold-dark) !important;
  background: #fff7df !important;
  color: var(--stq-ink) !important;
}

.stq-quiz .stq-checkbox-choice {
  border-color: var(--stq-line) !important;
  background: #fff !important;
  color: var(--stq-ink) !important;
  text-transform: none !important;
}

.stq-quiz .stq-checkbox-choice:has(input:checked) {
  border-color: var(--stq-gold-dark) !important;
  background: #fff7df !important;
}

.stq-quiz button.stq-back {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--stq-muted) !important;
  text-decoration: none !important;
  text-transform: none !important;
}

.stq-quiz button.stq-next,
.stq-quiz button.stq-submit {
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--stq-gold) !important;
  color: var(--stq-ink) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  text-transform: none !important;
}