@media screen and (max-width: 767px) {
  header[tog="header"] nav[tog="nav__cta"] {
    display: flex;
  }
  header[tog="header"] .header__left {
    position: static;
    left: auto;
    top: auto;
    transform: none;
  }
}
html.is_embed {
  background: transparent;
}
html.is_embed body {
  background: transparent;
  min-height: 0;
  display: block;
}
html.is_embed header[tog="header"],
html.is_embed footer[tog="footer"],
html.is_embed [tog="consent__banner"],
html.is_embed .nav__drawer,
html.is_embed .nav__overlay,
html.is_embed .section_skip {
  display: none !important;
}
html.is_embed main[tog="survey__main"] {
  flex: none;
  padding: 0;
  background: none;
}
html.is_embed main[tog="survey__main"] .content_wrapper {
  max-width: none;
}
html.is_embed .survey__shell,
html.is_embed .survey__state {
  border-radius: 0;
  border: none;
  box-shadow: none;
}
html.is_embed .survey__state {
  padding: 2.5rem 1.75rem;
}
@media screen and (max-width: 767px) {
  html.is_embed .survey__state {
    padding: 1.75rem 1.25rem;
  }
}
html.is_embed [tog="done__home"],
html.is_embed [tog="done__support"],
html.is_embed [tog="unavailable__home"],
html.is_embed [tog="missing__home"] {
  display: none !important;
}
html.is_embed .survey__done_actions {
  margin: 0;
}
html.is_embed .survey__progress {
  position: static;
}
html.is_embed .survey__welcome .survey__title,
html.is_embed .survey__welcome .survey__subtitle,
html.is_embed .survey__welcome .survey__lede {
  display: none;
}
main[tog="survey__main"] {
  flex: 1;
  width: 100%;
  padding: 3rem 1.5rem 5rem;
  background: linear-gradient(180deg, #84bfff 0%, #f4f7fb 40%, #f4f7fb 100%);
}
@media screen and (max-width: 767px) {
  main[tog="survey__main"] {
    padding: 1.5rem 1rem 3rem;
  }
}
main[tog="survey__main"] .content_wrapper {
  max-width: 780px;
  margin: 0 auto;
}
.survey__state {
  background: #fff;
  border: 1px solid rgba(26,34,56,0.1);
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(26,34,56,0.08);
  padding: 3rem 2.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .survey__state {
    padding: 2rem 1.25rem;
  }
}
.survey__state_title {
  font-size: 1.75rem;
  margin: 0 0 0.75rem;
}
.survey__state_text {
  color: #4a556b;
  margin: 0 0 1.5rem;
  line-height: 1.6;
}
.survey__shell {
  background: #fff;
  border: 1px solid rgba(26,34,56,0.1);
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(26,34,56,0.1);
  overflow: hidden;
}
main[tog="survey__main"] [hidden] {
  display: none !important;
}
.survey__progress {
  padding: 1.25rem 2.5rem 1rem;
  border-bottom: 1px solid rgba(26,34,56,0.1);
  background: linear-gradient(180deg, rgba(58,134,255,0.05), rgba(58,134,255,0));
  position: sticky;
  top: 0;
  z-index: 2;
  backdrop-filter: blur(6px);
}
@media screen and (max-width: 767px) {
  .survey__progress {
    padding: 1rem 1.25rem 0.75rem;
  }
}
.survey__progress_head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.6rem;
}
.survey__progress_label {
  margin: 0;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #1a2238;
}
.survey__progress_count {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #4a556b;
  white-space: nowrap;
}
.survey__progress_track {
  height: 8px;
  border-radius: 999px;
  background: rgba(26,34,56,0.09);
  overflow: hidden;
}
.survey__progress_bar {
  display: block;
  height: 100%;
  width: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #3a86ff, #00c2a8);
  transition: width 0.35s ease;
}
.survey__steps_nav {
  margin: 0.75rem 0 0;
}
@media screen and (max-width: 767px) {
  .survey__steps_nav {
    margin: 0.6rem -1.25rem 0;
    padding: 0 1.25rem;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .survey__steps_nav::-webkit-scrollbar {
    display: none;
  }
}
.survey__steps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .survey__steps {
    flex-wrap: nowrap;
  }
}
.survey__step_item {
  display: flex;
}
.survey__step {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  padding: 0.25rem 0.65rem;
  border-radius: 24px;
  border: 1px solid transparent;
  background: rgba(26,34,56,0.05);
  color: #4a556b;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.survey__step:hover {
  border-color: rgba(37,99,235,0.45);
  color: #1a2238;
}
.survey__step:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.survey__step.is_todo {
  background: transparent;
  border-color: rgba(26,34,56,0.1);
}
.survey__step.is_incomplete {
  background: rgba(251,191,36,0.18);
  color: #8a6100;
}
.survey__step.is_done {
  background: rgba(0,194,168,0.14);
  color: #00705f;
}
.survey__step.is_missing {
  background: rgba(200,60,60,0.12);
  color: #a03030;
  border-color: rgba(200,60,60,0.35);
}
.survey__step.is_active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}
.survey__step.is_active:hover {
  color: #fff;
}
.survey__step_mark {
  font-size: 0.8em;
  line-height: 1;
}
.survey__intro {
  padding: 2.5rem 2.5rem 1.6rem;
  border-bottom: 1px solid rgba(26,34,56,0.1);
}
@media screen and (max-width: 767px) {
  .survey__intro {
    padding: 1.5rem 1.25rem 1.15rem;
  }
}
.survey__intro_title {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.2px;
  line-height: 1.3;
  color: #1a2238;
  margin: 0 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .survey__intro_title {
    font-size: 1.12rem;
  }
}
.survey__intro_text {
  color: #4a556b;
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0 0 0.65rem;
}
.survey__intro_text:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .survey__intro_text {
    font-size: 0.93rem;
    line-height: 1.6;
  }
}
.survey__form {
  padding: 0;
}
.survey__stage {
  padding: 2.5rem;
  outline: none;
}
@media screen and (max-width: 767px) {
  .survey__stage {
    padding: 1.5rem 1.25rem;
  }
}
.survey__eyebrow {
  display: inline-block;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #2563eb;
  background: rgba(58,134,255,0.1);
  padding: 0.35rem 0.8rem;
  border-radius: 24px;
  margin: 0 0 1rem;
}
.survey__title {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  margin: 0 0 1rem;
}
@media screen and (max-width: 767px) {
  .survey__title {
    font-size: 1.5rem;
  }
}
.survey__subtitle {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 600;
  font-size: 1.05rem;
  color: #1a2238;
  margin: 0 0 1.25rem;
}
.survey__lede {
  color: #4a556b;
  line-height: 1.7;
  margin: 0 0 1rem;
  font-size: 1.02rem;
}
.survey__facts {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.survey__fact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: #1a2238;
}
.survey__fact_mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(0,194,168,0.16);
  color: #00705f;
  font-size: 0.8rem;
  font-weight: 700;
}
.survey__resume_note {
  margin: 1.5rem 0 0;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(251,191,36,0.14);
  border: 1px solid rgba(251,191,36,0.4);
  font-size: 0.9rem;
}
.survey__questions {
  display: grid;
  gap: 1.75rem;
  margin-top: 2rem;
}
.survey__question {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.survey__question.is_invalid {
  border-left: 3px solid #cd5c5c;
  padding-left: 1rem;
  margin-left: -1rem;
}
.survey__question--statement {
  background: #fff8ee;
  border: 1px solid rgba(251,191,36,0.35);
  border-radius: 10px;
  padding: 1.25rem 1.4rem;
}
.survey__statement_title {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}
.survey__statement_body {
  margin: 0;
  color: #4a556b;
  line-height: 1.7;
}
.survey__legend {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.4;
  padding: 0;
  margin-bottom: 0.35rem;
  color: #1a2238;
}
.survey__required {
  color: #ff8a65;
}
.survey__help {
  margin: 0 0 0.75rem;
  font-size: 0.87rem;
  color: #4a556b;
  line-height: 1.5;
}
.survey__field_error {
  margin: 0.5rem 0 0;
  font-size: 0.85rem;
  color: #a03030;
}
.survey__error {
  margin: 0 2.5rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(200,60,60,0.1);
  border: 1px solid rgba(200,60,60,0.35);
  color: #a03030;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .survey__error {
    margin: 0 1.25rem;
  }
}
.survey__review {
  margin: 0 2.5rem 1rem;
  padding: 1rem 1.1rem;
  border-radius: 10px;
  background: rgba(200,60,60,0.07);
  border: 1px solid rgba(200,60,60,0.3);
}
@media screen and (max-width: 767px) {
  .survey__review {
    margin: 0 1.25rem 1rem;
  }
}
.survey__review_title {
  margin: 0 0 0.6rem;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #a03030;
}
.survey__review_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.survey__review_link {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  width: 100%;
  text-align: left;
  font-family: inherit;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  border: 1px solid rgba(200,60,60,0.25);
  background: rgba(255,255,255,0.65);
  cursor: pointer;
}
.survey__review_link:hover {
  border-color: rgba(200,60,60,0.55);
}
.survey__review_link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 2px;
}
.survey__review_section {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #a03030;
}
.survey__review_prompt {
  font-size: 0.9rem;
  color: #1a2238;
  line-height: 1.4;
}
.survey__input,
.survey__textarea,
.survey__select {
  width: 100%;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  color: #1a2238;
  background: #fff;
  border: 1px solid rgba(26,34,56,0.18);
  border-radius: 10px;
  padding: 0.8rem 0.9rem;
  min-height: 48px;
}
.survey__input:focus,
.survey__textarea:focus,
.survey__select:focus {
  outline: none;
  border-color: #3a86ff;
  box-shadow: 0 0 0 3px rgba(58,134,255,0.18);
}
.survey__textarea {
  resize: vertical;
  line-height: 1.6;
}
.survey__input--other {
  margin-top: 0.6rem;
}
.survey__options {
  display: grid;
  gap: 0.5rem;
}
.survey__option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  min-height: 48px;
  border: 1px solid rgba(26,34,56,0.14);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  line-height: 1.45;
}
.survey__option:hover {
  border-color: rgba(58,134,255,0.5);
  background: rgba(58,134,255,0.04);
}
.survey__option.is_selected {
  border-color: #3a86ff;
  background: rgba(58,134,255,0.08);
  box-shadow: inset 0 0 0 1px #3a86ff;
}
.survey__option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.survey__option input:focus-visible ~ .survey__option_mark {
  box-shadow: 0 0 0 3px rgba(58,134,255,0.35);
}
.survey__option input:disabled ~ .survey__option_label {
  opacity: 0.45;
}
.survey__scale_point input:focus-visible ~ .survey__scale_number {
  text-decoration: underline;
}
.survey__option_mark {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  border: 2px solid rgba(26,34,56,0.25);
  background: #fff;
  position: relative;
}
.survey__options--multi .survey__option_mark {
  border-radius: 6px;
}
.survey__option.is_selected .survey__option_mark {
  border-color: #3a86ff;
  background: #3a86ff;
}
.survey__option.is_selected .survey__option_mark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.survey__option_label {
  flex: 1;
}
.survey__limit {
  margin: 0.5rem 0 0;
  font-size: 0.8rem;
  color: #4a556b;
}
.survey__limit.is_full {
  color: #8a4406;
  font-weight: 600;
}
.survey__scale {
  display: flex;
  gap: 0.5rem;
}
@media screen and (max-width: 767px) {
  .survey__scale {
    gap: 0.35rem;
  }
}
.survey__scale_point {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid rgba(26,34,56,0.14);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #4a556b;
}
.survey__scale_point:hover {
  border-color: rgba(58,134,255,0.5);
}
.survey__scale_point.is_selected {
  background: #3a86ff;
  border-color: #3a86ff;
  color: #fff;
}
.survey__scale_point input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.survey__scale_labels {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  color: #4a556b;
}
.survey__scale_labels span:last-child {
  text-align: right;
}
.survey__rank_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.survey__rank_item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.75rem;
  border: 1px solid #3a86ff;
  border-radius: 10px;
  background: rgba(58,134,255,0.07);
}
.survey__rank_number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #3a86ff;
  color: #fff;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}
.survey__rank_label {
  flex: 1;
  line-height: 1.4;
}
.survey__rank_controls {
  display: flex;
  gap: 0.3rem;
  flex-shrink: 0;
}
.survey__rank_btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(26,34,56,0.16);
  border-radius: 8px;
  background: #fff;
  color: #1a2238;
  font-size: 1rem;
  cursor: pointer;
  line-height: 1;
}
.survey__rank_btn:hover:not(:disabled) {
  border-color: #3a86ff;
  color: #2563eb;
}
.survey__rank_btn:disabled {
  opacity: 0.35;
  cursor: default;
}
.survey__rank_btn--remove {
  color: #4a556b;
}
.survey__rank_hint {
  margin: 0.15rem 0 0;
  font-size: 0.85rem;
  color: #4a556b;
}
.survey__rank_pool {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.survey__rank_add {
  min-height: 44px;
  padding: 0.6rem 1rem;
  border: 1px dashed rgba(26,34,56,0.28);
  border-radius: 24px;
  background: #fff;
  color: #1a2238;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.92rem;
  cursor: pointer;
  text-align: left;
}
.survey__rank_add:hover {
  border-color: #3a86ff;
  border-style: solid;
  background: rgba(58,134,255,0.06);
}
.survey__actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 1.5rem 2.5rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .survey__actions {
    padding: 1.25rem 1.25rem 0.5rem;
    flex-direction: column-reverse;
  }
  .survey__actions .tog__btn {
    width: 100%;
    justify-content: center;
    min-height: 50px;
  }
}
.survey__actions .tog__btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
}
.survey__actions button[tog="survey__next"] {
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .survey__actions button[tog="survey__next"] {
    margin-left: 0;
  }
}
.survey__note {
  margin: 0;
  padding: 0.25rem 2.5rem 2rem;
  font-size: 0.8rem;
  color: #4a556b;
}
@media screen and (max-width: 767px) {
  .survey__note {
    padding: 0.5rem 1.25rem 1.5rem;
    text-align: center;
  }
}
.survey__index_list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  text-align: left;
}
.survey__index_link {
  display: block;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(26,34,56,0.1);
  border-radius: 10px;
  background: #f4f7fb;
}
.survey__index_link:hover {
  border-color: #3a86ff;
}
.survey__index_title {
  display: block;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-weight: 700;
  color: #1a2238;
}
.survey__index_meta {
  display: block;
  font-size: 0.85rem;
  color: #4a556b;
  margin-top: 0.2rem;
}
.survey__done_mark {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,194,168,0.15);
  color: #00c2a8;
}
.survey__done_mark svg {
  width: 32px;
  height: 32px;
}
.survey__done_body {
  color: #4a556b;
  line-height: 1.7;
  text-align: left;
  max-width: 560px;
  margin: 0 auto;
}
.survey__done_body p {
  margin: 0 0 1rem;
}
.survey__reference {
  margin: 1.25rem 0;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  color: #4a556b;
}
.survey__done_actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .survey__done_actions {
    flex-direction: column;
  }
  .survey__done_actions .tog__btn {
    width: 100%;
    justify-content: center;
  }
}
