.configurator-page {
  overflow: hidden;
  background: #f7f7f8;
  color: #111;
}

.configurator-nav-active::before {
  width: 100% !important;
}

.configurator-hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: #f5f5f6;
}

.configurator-hero-inner {
  min-height: 610px;
  position: relative;
}

.configurator-hero-copy {
  width: 61%;
  position: relative;
  z-index: 2;
  padding: 58px 0 54px 28px;
}

.configurator-hero h1 {
  max-width: 620px;
  margin: 0 0 30px;
  font-size: clamp(44px, 4.4vw, 73px);
  font-weight: 900;
  line-height: .98;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.configurator-hero-intro {
  max-width: 620px;
  margin: 0 0 42px;
}

.configurator-hero-intro p {
  margin: 0;
}

.configurator-hero-question {
  max-width: 610px;
  color: #2f2f33;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.42;
  letter-spacing: -.018em;
}

.configurator-hero-intro .configurator-hero-answer {
  max-width: 580px;
  margin-top: 10px;
  color: #5f5f64;
  font-size: 15px;
  line-height: 1.65;
}

.hero-benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 32px;
  max-width: 820px;
  margin-bottom: 42px;
}

.hero-benefit {
  min-width: 0;
  min-height: 68px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.hero-benefit-icon {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid #cfcfd3;
  border-radius: 50%;
}

.hero-benefit-icon svg {
  width: 21px;
  height: 21px;
  stroke: #111;
}

.hero-benefit strong,
.hero-benefit small {
  display: block;
}

.hero-benefit strong {
  margin: 2px 0 7px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.hero-benefit small {
  color: #55555a;
  font-size: 11px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.configurator-primary-btn {
  min-width: 265px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  border: 0;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  font: 800 12px/1 'Montserrat', sans-serif;
  letter-spacing: .015em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.configurator-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}

.hero-actions > span {
  color: #737378;
  font-size: 11px;
  line-height: 1.55;
}

.configurator-hero-visual {
  position: absolute;
  z-index: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  overflow: hidden;
}

.configurator-hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(247, 247, 248, .98) 0%, rgba(247, 247, 248, .91) 34%, rgba(247, 247, 248, .34) 51%, rgba(247, 247, 248, 0) 68%);
  pointer-events: none;
}

.configurator-hero-visual picture { display: block; width: 100%; height: 100%; }

.configurator-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.configurator-flow {
  padding: 0 0 70px;
  background: linear-gradient(180deg, #f7f7f8 0%, #fff 100%);
}

.configurator-work-card {
  position: relative;
  z-index: 4;
  margin-top: -18px;
  padding: 40px 28px 28px;
  border: 1px solid #ececef;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .025);
}

.configurator-work-card > h2 {
  margin: 0 0 35px 4px;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.work-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-bottom: 45px;
}

.work-step {
  position: relative;
  min-width: 0;
  display: grid;
  justify-items: center;
  text-align: center;
}

.work-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 17px;
  left: calc(50% + 27px);
  width: calc(100% - 54px);
  border-top: 2px dashed #dedee1;
}

.work-step > span {
  width: 34px;
  height: 34px;
  z-index: 1;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 50%;
  background: #f0f0f2;
  font-size: 11px;
  font-weight: 700;
}

.work-step:first-child > span {
  background: #111;
  color: #fff;
}

.work-step strong {
  font-size: 10px;
  line-height: 1.5;
  font-weight: 400;
}

.work-step small {
  font-size: inherit;
  font-weight: 400;
}

.quiz-card {
  min-height: 565px;
  padding: 32px 38px 24px;
  border: 1px solid #e2e2e5;
  border-radius: 12px;
  background: #fff;
}

#configuratorQuiz {
  min-height: 505px;
  display: flex;
  flex-direction: column;
}

#configuratorQuiz[hidden] {
  display: none;
}

.quiz-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 29px;
}

.quiz-counter {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 11px;
  border: 1px solid #e2e2e5;
  border-radius: 999px;
  color: #55555a;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
}

.quiz-hint {
  color: #8a8a90;
  font-size: 10px;
}

.quiz-stage {
  flex: 1;
  animation: quizReveal .28s ease;
}

@keyframes quizReveal {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.quiz-question h2 {
  margin: 0 0 10px;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
}

.quiz-question > p {
  margin: 0 0 29px;
  color: #77777c;
  font-size: 11px;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.quiz-option {
  min-height: 132px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  padding: 18px 14px;
  border: 1px solid #dedee2;
  border-radius: 10px;
  background: #fff;
  color: #111;
  text-align: center;
  cursor: pointer;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.quiz-option:hover {
  border-color: #9c9ca1;
  background: #fdfdfd;
}

.quiz-option.is-selected {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.quiz-option-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #111;
}

.quiz-option-icon svg {
  width: 29px;
  height: 29px;
  stroke: currentColor;
}

.quiz-option strong {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.35;
}

.quiz-option small {
  max-width: 210px;
  color: #737378;
  font-size: 9px;
  line-height: 1.4;
}

.quiz-compact-grid .quiz-option {
  min-height: 105px;
}

.quiz-extra-note {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 0 14px;
  margin-top: 28px;
  padding: 20px 22px;
  border: 1px solid #dedee2;
  border-radius: 10px;
  background: #fafafa;
}

.quiz-extra-note-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #d8d8dc;
  border-radius: 50%;
  background: #fff;
}

.quiz-extra-note-icon svg {
  width: 18px;
  height: 18px;
  stroke: #111;
}

.quiz-extra-note-copy {
  display: grid;
  gap: 4px;
}

.quiz-extra-note-copy strong {
  font-size: 11px;
  font-weight: 700;
}

.quiz-extra-note-copy small {
  color: #828287;
  font-size: 9px;
  line-height: 1.45;
}

.quiz-extra-note textarea,
.quiz-contact-grid input,
.quiz-contact-grid textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #dedee2;
  border-radius: 11px;
  background: #fafafa;
  color: #111;
  font: 500 12px/1.5 'Montserrat', sans-serif;
  outline: none;
  transition: border-color .2s ease, background .2s ease;
}

.quiz-extra-note textarea {
  grid-column: 1 / -1;
  min-height: 90px;
  margin-top: 16px;
  padding: 14px 16px;
  background: #fff;
  resize: vertical;
}

.quiz-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(285px, .65fr);
  gap: 18px;
}

.quiz-contact-main {
  min-width: 0;
  padding: 28px 30px;
  border: 1px solid #e2e2e5;
  border-radius: 13px;
  background: #fff;
}

.quiz-contact-heading {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 25px;
}

.quiz-contact-heading-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
}

.quiz-contact-heading-icon svg {
  width: 17px;
  height: 17px;
}

.quiz-contact-heading h2 {
  margin: 1px 0 8px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.025em;
  text-transform: uppercase;
}

.quiz-contact-heading p {
  max-width: 630px;
  margin: 0;
  color: #77777c;
  font-size: 10.5px;
  line-height: 1.55;
}

.quiz-contact-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.quiz-contact-field {
  min-width: 0;
  display: grid;
  gap: 7px;
}

.quiz-contact-field span {
  color: #5f5f65;
  font-size: 9.5px;
  font-weight: 700;
}

.quiz-contact-field > span:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quiz-contact-field > span:first-child small {
  color: #a0a0a5;
  font-size: 8px;
  font-weight: 600;
}

.quiz-contact-control {
  min-width: 0;
  min-height: 52px;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border: 1px solid #dedee2;
  border-radius: 10px;
  background: #fafafa;
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.quiz-contact-control:focus-within {
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .045);
}

.quiz-contact-control > svg {
  width: 17px;
  height: 17px;
  color: #8a8a90;
}

.quiz-contact-control input,
.quiz-contact-control textarea {
  min-width: 0;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #111;
  font-size: 11px;
  outline: 0;
}

.quiz-contact-control input {
  min-height: 50px;
}

.quiz-contact-control.is-textarea {
  align-items: flex-start;
  padding-top: 14px;
}

.quiz-contact-control textarea {
  min-height: 74px;
  resize: vertical;
}

.quiz-contact-field.is-wide {
  grid-column: 1 / -1;
}

.quiz-contact-privacy {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 17px;
  color: #88888d;
  font-size: 8.5px;
  line-height: 1.5;
}

.quiz-contact-privacy svg {
  width: 15px;
  height: 15px;
  flex: 0 0 15px;
}

.quiz-contact-aside {
  min-width: 0;
  padding: 30px 28px;
  border-radius: 13px;
  background: #111;
  color: #fff;
}

.quiz-contact-aside-label {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  margin-bottom: 22px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 999px;
  color: rgba(255, 255, 255, .66);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.quiz-contact-aside h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.025em;
}

.quiz-contact-aside > p {
  margin: 0 0 25px;
  color: rgba(255, 255, 255, .62);
  font-size: 9.5px;
  line-height: 1.65;
}

.quiz-contact-next-steps {
  display: grid;
}

.quiz-contact-next-steps > div {
  min-width: 0;
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.quiz-contact-next-steps > div > span {
  color: rgba(255, 255, 255, .42);
  font-size: 8px;
  font-weight: 700;
}

.quiz-contact-next-steps p,
.quiz-contact-next-steps strong,
.quiz-contact-next-steps small {
  min-width: 0;
  display: block;
  margin: 0;
}

.quiz-contact-next-steps strong {
  margin-bottom: 5px;
  color: #fff;
  font-size: 10px;
  line-height: 1.35;
}

.quiz-contact-next-steps small {
  color: rgba(255, 255, 255, .53);
  font-size: 8.5px;
  line-height: 1.45;
}

.quiz-account-benefit {
  min-width: 0;
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  margin-top: 12px;
  padding-top: 19px;
  border-top: 1px solid rgba(255, 255, 255, .13);
}

.quiz-account-benefit:empty {
  display: none;
}

.quiz-account-benefit-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 50%;
}

.quiz-account-benefit.is-authenticated .quiz-account-benefit-icon {
  border-color: rgba(101, 214, 145, .45);
  color: #65d691;
}

.quiz-account-benefit-icon svg {
  width: 16px;
  height: 16px;
}

.quiz-account-benefit strong,
.quiz-account-benefit small,
.quiz-account-benefit a {
  display: block;
}

.quiz-account-benefit strong {
  margin: 1px 0 6px;
  color: #fff;
  font-size: 10px;
  line-height: 1.35;
}

.quiz-account-benefit small {
  color: rgba(255, 255, 255, .57);
  font-size: 8.5px;
  line-height: 1.55;
}

.quiz-account-benefit a {
  width: fit-content;
  margin-top: 10px;
  color: #fff;
  font-size: 8.5px;
  font-weight: 700;
  text-decoration: none;
}

.quiz-account-benefit a:hover {
  text-decoration: underline;
}

.quiz-extra-note textarea:focus,
.quiz-contact-grid input:focus,
.quiz-contact-grid textarea:focus {
  background: transparent;
}

.quiz-error {
  min-height: 18px;
  padding-top: 8px;
  color: #ff3b30;
  font-size: 10px;
}

.quiz-footer {
  display: grid;
  grid-template-columns: 110px minmax(220px, 1fr) 175px;
  align-items: center;
  gap: 26px;
  margin-top: 13px;
  padding-top: 21px;
  border-top: 1px solid #eeeeef;
}

.quiz-back,
.quiz-next {
  min-height: 48px;
  border: 0;
  font-family: inherit;
  font-size: 10px;
  font-weight: 800;
  cursor: pointer;
}

.is-contact-step .quiz-next {
  min-height: 52px;
  border-radius: 9px;
  background: #111;
  letter-spacing: .025em;
  box-shadow: 0 9px 24px rgba(0, 0, 0, .13);
}

.is-contact-step .quiz-next:hover {
  background: #242424;
}

.quiz-back {
  visibility: hidden;
  background: transparent;
  color: #77777c;
  text-align: left;
}

.quiz-back.is-visible {
  visibility: visible;
}

.quiz-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-radius: 999px;
  background: #050505;
  color: #fff;
  text-transform: uppercase;
}

.quiz-next:disabled {
  opacity: .5;
  cursor: wait;
}

.quiz-progress {
  display: flex;
  align-items: center;
  gap: 14px;
}

#quizProgressLabel {
  width: 31px;
  flex: 0 0 31px;
  font-size: 10px;
  font-weight: 700;
}

.quiz-progress-track {
  min-width: 0;
  height: 5px;
  flex: 1 1 auto;
  display: block;
  overflow: hidden;
  border-radius: 999px;
  background: #e9e9eb;
}

.quiz-progress-fill {
  width: 12.5%;
  height: 100%;
  display: block;
  border-radius: inherit;
  background: #111;
  transition: width .25s ease;
}

.quiz-success {
  min-height: 500px;
  display: grid;
  align-content: center;
  width: min(100%, 900px);
  margin: 0 auto;
  padding: 46px;
  border: 1px solid #e4e4e7;
  border-radius: 18px;
  background: linear-gradient(145deg, #fff 0%, #fafafa 100%);
  box-shadow: 0 20px 60px rgba(17, 17, 17, .06);
}

.quiz-success[hidden] {
  display: none;
}

.quiz-success-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e8e8eb;
}

.quiz-success-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #111;
  color: #fff;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.quiz-success-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.2;
}

.quiz-success-kicker {
  display: block;
  margin-bottom: 7px;
  color: #737378;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.quiz-success h2 {
  margin: 0;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -.025em;
}

.quiz-success-lead {
  max-width: 760px;
  margin: 25px 0 28px;
  color: #59595f;
  font-size: 13px;
  line-height: 1.7;
}

.quiz-success-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.quiz-success-steps article {
  min-width: 0;
  display: flex;
  gap: 13px;
  padding: 18px;
  border: 1px solid #e8e8eb;
  border-radius: 12px;
  background: #fff;
}

.quiz-success-steps article > span {
  flex: 0 0 auto;
  color: #9a9a9f;
  font-size: 10px;
  font-weight: 800;
}

.quiz-success-steps strong,
.quiz-success-steps small {
  display: block;
}

.quiz-success-steps strong {
  margin-bottom: 7px;
  font-size: 11px;
  line-height: 1.35;
}

.quiz-success-steps small {
  color: #77777c;
  font-size: 9px;
  line-height: 1.55;
}

.quiz-success-account {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-top: 18px;
  padding: 15px 16px;
  border: 1px solid #dedee2;
  border-radius: 12px;
  background: #fff;
}

.quiz-success-account:empty { display: none; }
.quiz-success-account.is-authenticated { border-color: #d9eadf; background: #f8fcf9; }
.quiz-success-account-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; background: #111; color: #fff; }
.quiz-success-account.is-authenticated .quiz-success-account-icon { background: #e5f5ea; color: #248a3d; }
.quiz-success-account-icon svg { width: 18px; height: 18px; }
.quiz-success-account-copy { min-width: 0; }
.quiz-success-account-copy strong, .quiz-success-account-copy small { display: block; }
.quiz-success-account-copy strong { margin-bottom: 5px; font-size: 11px; line-height: 1.35; }
.quiz-success-account-copy small { color: #74747a; font-size: 9px; line-height: 1.5; }
.quiz-success-account-action { display: inline-flex; align-items: center; justify-content: center; gap: 13px; min-height: 40px; padding: 0 16px; border-radius: 8px; background: #111; color: #fff; font-size: 9px; font-weight: 600; text-decoration: none; white-space: nowrap; }
.quiz-success-account.is-authenticated .quiz-success-account-action { background: #fff; color: #111; border: 1px solid #cfd9d2; }
.quiz-success-account-action:hover { transform: translateY(-1px); }

.quiz-success-footer {
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #e8e8eb;
}

.quiz-success-contact {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-success-contact > span {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border: 1px solid #dedee2;
  border-radius: 50%;
  background: #fff;
}

.quiz-success-contact svg {
  width: 16px;
  height: 16px;
}

.quiz-success-contact div {
  min-width: 0;
}

.quiz-success-contact small,
.quiz-success-contact a {
  display: block;
}

.quiz-success-contact small {
  margin-bottom: 3px;
  color: #85858a;
  font-size: 9px;
}

.quiz-success-contact a {
  max-width: 100%;
  color: #111;
  font-size: 11px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.quiz-success-home {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  min-height: 44px;
  padding: 0 20px;
  border: 1px solid #cfcfd3;
  border-radius: 999px;
  color: #111;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.quiz-success-home:hover {
  border-color: #111;
  background: #111;
  color: #fff;
}

@media (max-width: 1180px) {
  .configurator-hero-copy { width: 64%; padding-left: 0; }
  .hero-benefits { grid-template-columns: 1fr; gap: 13px; max-width: 440px; }
}

@media (max-width: 900px) {
  .configurator-hero,
  .configurator-hero-inner { min-height: 650px; }
  .configurator-hero-copy { width: 72%; padding: 55px 0 45px; }
  .configurator-hero-intro { max-width: 560px; }
  .configurator-hero-visual img { object-position: 65% center; }
  .work-steps { overflow-x: auto; grid-template-columns: repeat(5, minmax(170px, 1fr)); padding-bottom: 10px; }
  .quiz-options { grid-template-columns: repeat(2, 1fr); }
  .quiz-footer { grid-template-columns: 90px 1fr 150px; }
  .quiz-contact-layout { grid-template-columns: 1fr; }
  .quiz-contact-aside { display: grid; grid-template-columns: 180px 1fr; gap: 0 28px; }
  .quiz-contact-aside-label,
  .quiz-contact-aside h3,
  .quiz-contact-aside > p { grid-column: 1; }
  .quiz-contact-next-steps { grid-column: 2; grid-row: 1 / span 3; }
  .quiz-account-benefit { grid-column: 1 / -1; }
  .quiz-success { padding: 34px; }
  .quiz-success-steps { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  .configurator-hero,
  .configurator-hero-inner { min-height: 690px; }
  .configurator-hero-copy { width: 100%; }
  .configurator-hero-visual img { object-position: 64% center; opacity: .38; }
  .configurator-hero-visual::after { background: rgba(247, 247, 248, .38); }
  .configurator-hero h1 { font-size: 42px; }
  .configurator-hero-question { font-size: 16px; line-height: 1.45; }
  .configurator-hero-intro .configurator-hero-answer { margin-top: 8px; font-size: 13px; line-height: 1.55; }
  .hero-benefit { min-height: 0; }
  .hero-benefit-icon { width: 40px; height: 40px; flex-basis: 40px; }
  .hero-benefit strong { font-size: 11.5px; }
  .hero-benefit small { font-size: 10px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 16px; }
  .configurator-primary-btn { width: 100%; min-width: 0; }
  .configurator-work-card { margin: 0 -10px; padding: 30px 14px 16px; border-radius: 0; }
  .quiz-card { min-height: 0; padding: 23px 15px 17px; }
  #configuratorQuiz { min-height: 0; }
  .quiz-topline { align-items: flex-start; flex-direction: column; gap: 9px; }
  .quiz-question h2 { font-size: 19px; }
  .quiz-options { grid-template-columns: 1fr 1fr; gap: 9px; }
  .quiz-option { min-height: 118px; padding: 13px 8px; }
  .quiz-option-icon svg { width: 25px; height: 25px; }
  .quiz-option small { display: none; }
  .quiz-extra-note { grid-template-columns: 34px 1fr; padding: 16px; }
  .quiz-extra-note-icon { width: 34px; height: 34px; }
  .quiz-footer { grid-template-columns: 1fr 1fr; gap: 10px; }
  .quiz-progress { grid-column: 1 / -1; grid-row: 1; }
  .quiz-back, .quiz-next { grid-row: 2; }
  .quiz-success { min-height: 0; padding: 25px 18px; border-radius: 13px; }
  .quiz-success-heading { align-items: flex-start; gap: 14px; padding-bottom: 20px; }
  .quiz-success-icon { width: 46px; height: 46px; flex-basis: 46px; }
  .quiz-success-icon svg { width: 20px; height: 20px; }
  .quiz-success h2 { font-size: 23px; }
  .quiz-success-lead { margin: 20px 0; font-size: 11px; }
  .quiz-success-steps article { padding: 15px; }
  .quiz-success-account { grid-template-columns: 38px minmax(0, 1fr); padding: 14px; }
  .quiz-success-account-icon { width: 38px; height: 38px; }
  .quiz-success-account-action { grid-column: 1 / -1; width: 100%; }
  .quiz-success-footer { align-items: stretch; flex-direction: column; }
  .quiz-success-home { justify-content: space-between; width: 100%; }
  .quiz-contact-main { padding: 22px 18px; }
  .quiz-contact-heading { gap: 12px; }
  .quiz-contact-heading-icon { width: 38px; height: 38px; flex-basis: 38px; }
  .quiz-contact-heading h2 { font-size: 19px; }
  .quiz-contact-aside { display: block; padding: 24px 20px; }
  .quiz-contact-grid { grid-template-columns: 1fr; }
  .quiz-contact-field.is-wide { grid-column: auto; }
}

.main-nav button.icon-btn {
  padding: 0;
  border: 0;
  color: inherit;
  font: inherit;
}

.quiz-option:focus-visible,
.quiz-back:focus-visible,
.quiz-next:focus-visible,
.configurator-primary-btn:focus-visible,
.main-nav button.icon-btn:focus-visible,
.mc-clear-btn:focus-visible,
.social-icon-btn:focus-visible,
.quiz-success-home:focus-visible,
.quiz-success-account-action:focus-visible {
  outline: 3px solid #111;
  outline-offset: 3px;
}

.quiz-question > h2:focus {
  outline: none;
}

.quiz-extra-note:focus-within {
  border-color: #111;
  box-shadow: 0 0 0 3px rgba(17, 17, 17, .045);
}

.quiz-trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

@media (prefers-reduced-motion: reduce) {
  .quiz-stage,
  .configurator-primary-btn,
  .quiz-option,
  .quiz-progress-fill,
  .nav-icon-img {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
/* Same centered, fixed-height banner behavior as the About page. */
@media (min-width: 901px) {
  .configurator-hero {
    --configurator-banner-width: 1815px;
    --configurator-banner-height: 610px;
    height: var(--configurator-banner-height);
    min-height: var(--configurator-banner-height);
    background: var(--configurator-banner-bg);
  }
  .configurator-hero-inner {
    height: 100%;
    min-height: 0;
  }
  .configurator-hero-visual {
    top: 0;
    bottom: auto;
    width: min(100vw, var(--configurator-banner-width));
    height: var(--configurator-banner-height);
    transform: translateX(-50%);
  }
  .configurator-hero-visual::after {
    background: linear-gradient(90deg,
      color-mix(in srgb, var(--configurator-banner-bg) 98%, transparent) 0%,
      color-mix(in srgb, var(--configurator-banner-bg) 91%, transparent) 48%,
      color-mix(in srgb, var(--configurator-banner-bg) 65%, transparent) 62%,
      transparent 80%);
  }
}
@media (min-width: 901px) {
  .configurator-hero-copy {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 28px;
    padding-bottom: 28px;
  }
  .configurator-hero h1 { font-size: clamp(40px, 4vw, 64px); margin-bottom: 20px; }
  .configurator-hero-intro { margin-bottom: 24px; }
  .configurator-hero-question { font-size: clamp(16px, 1.3vw, 20px); }
  .hero-benefits { gap: 16px; margin-bottom: 24px; }
}
/* Mobile individual PC selection. Shared header and bottom navigation live in storefront.css. */
@media (max-width: 767px) {
  .configurator-body .configurator-page { background: #fff; overflow: clip; }
  .configurator-body .configurator-hero { min-height: calc(100svh - 68px - var(--bottom-nav-height) - 1px); background: #f5f5f6; }
  .configurator-body .configurator-hero-inner { min-height: inherit; }
  .configurator-body .configurator-hero-copy {
    display: flex; flex-direction: column; width: 100%;
    min-height: max(650px, calc(100svh - 68px - var(--bottom-nav-height) - 1px));
    padding: 26px 0 20px;
  }
  .configurator-body .configurator-hero h1 { font-size: clamp(32px, 8.9vw, 48px); line-height: 1.02; letter-spacing: -.055em; max-width: 520px; margin: 0 0 16px; }
  .configurator-body .configurator-hero-intro { max-width: 430px; margin: 0; }
  .configurator-body .configurator-hero-question { font-size: 16px; line-height: 1.5; max-width: 430px; }
  .configurator-body .configurator-hero-intro .configurator-hero-answer { font-size: 14px; line-height: 1.55; margin-top: 12px; max-width: 430px; color: #65656b; }
  .configurator-body .configurator-hero-visual { inset: 0; width: 100%; transform: none; }
  .configurator-body .configurator-hero-visual img { width: 100%; height: 100%; object-fit: contain; object-position: center; opacity: 1; }
  .configurator-body .configurator-hero-visual::after { background: linear-gradient(180deg, #f5f5f6 0%, #f5f5f6ed 23%, #f5f5f620 43%, #f5f5f600 61%, #f5f5f6e8 78%, #f5f5f6 92%); }
  .configurator-body .hero-benefits { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; max-width: none; margin: auto 0 18px; padding-top: 190px; }
  .configurator-body .hero-benefit { min-height: 0; flex-direction: column; align-items: center; gap: 6px; text-align: center; }
  .configurator-body .hero-benefit-icon { width: 30px; height: 30px; flex-basis: 30px; border: 0; }
  .configurator-body .hero-benefit-icon svg { width: 23px; height: 23px; }
  .configurator-body .hero-benefit strong { font-size: 11px; line-height: 1.4; }
  .configurator-body .hero-benefit small { display: none; }
  .configurator-body .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .configurator-body .configurator-primary-btn { width: 100%; min-width: 0; min-height: 48px; padding: 12px; border-radius: 10px; font-size: 14px; }
  .configurator-body .hero-actions > span { font-size: 11px; line-height: 1.4; text-align: center; }
  .configurator-body .hero-actions > span br { display: none; }
  .configurator-flow { background: #fff; padding: 0 0 28px; }
  .configurator-work-card { margin: 0; padding: 28px 0 0; border: 0; border-radius: 0; box-shadow: none; }
  .configurator-work-card > h2 { margin: 0 0 20px; font-size: 17px; letter-spacing: -.03em; }
  .work-steps { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; overflow: visible; margin-bottom: 30px; padding: 0 0 24px; border-bottom: 1px solid #ededf0; }
  .work-step > span { width: 28px; height: 28px; margin-bottom: 9px; font-size: 10px; }
  .work-step:not(:last-child)::after { top: 14px; left: calc(50% + 19px); width: calc(100% - 32px); border-top: 1px solid #dedee1; }
  .work-step strong { font-size: 8px; line-height: 1.5; overflow-wrap: anywhere; }
  .quiz-card { min-height: 0; padding: 0; border: 0; border-radius: 0; scroll-margin-top: 84px; }
  #pcSelectionQuiz { scroll-margin-top: 84px; }
  #configuratorQuiz { min-height: calc(100svh - 68px - var(--bottom-nav-height) - 42px); }
  .quiz-topline { flex-direction: column; align-items: flex-start; gap: 9px; margin-bottom: 18px; }
  .quiz-counter { padding: 0; border: 0; font-size: 10px; color: #68686e; }
  .quiz-hint { font-size: 10px; line-height: 1.5; }
  .quiz-question h2 { font-size: 21px; line-height: 1.22; letter-spacing: -.035em; scroll-margin-top: 84px; }
  .quiz-question > p { font-size: 12px; line-height: 1.5; margin-bottom: 20px; }
  .quiz-options { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .quiz-option { min-width: 0; min-height: 116px; padding: 16px 10px; gap: 10px; border-radius: 10px; touch-action: manipulation; }
  .quiz-option-icon svg { width: 26px; height: 26px; }
  .quiz-option strong { font-size: 11px; line-height: 1.45; overflow-wrap: anywhere; }
  .quiz-option small { display: block; font-size: 9px; line-height: 1.4; }
  .quiz-compact-grid { grid-template-columns: 1fr; }
  .quiz-compact-grid .quiz-option { min-height: 74px; flex-direction: row; flex-wrap: wrap; justify-content: flex-start; text-align: left; gap: 5px 12px; padding: 14px 16px; }
  .quiz-compact-grid .quiz-option-icon { flex: 0 0 26px; }
  .quiz-compact-grid .quiz-option strong { flex: 1; }
  .quiz-compact-grid .quiz-option small { flex: 0 0 calc(100% - 38px); margin-left: 38px; max-width: none; }
  .quiz-footer { position: sticky; bottom: calc(var(--bottom-nav-height) + 1px); z-index: 20; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 10px; background: #fff; padding: 12px 0; margin-top: 20px; border-top: 1px solid #ededf0; }
  .quiz-progress { grid-column: 1 / -1; grid-row: 1; }
  .quiz-back, .quiz-next { grid-row: 2; min-width: 0; min-height: 46px; border-radius: 9px; padding: 10px; font-size: 11px; }
  .quiz-error { font-size: 12px; line-height: 1.5; }
  .quiz-extra-note { grid-template-columns: 30px minmax(0, 1fr); padding: 16px 12px; gap: 10px; }
  .quiz-extra-note textarea, .quiz-contact-field input, .quiz-contact-field textarea { font-size: 16px; }
  .quiz-contact-layout { grid-template-columns: minmax(0, 1fr); }
  .quiz-contact-main { padding: 20px 14px; }
  .quiz-contact-heading { gap: 12px; }
  .quiz-contact-heading h2 { font-size: 20px; }
  .quiz-contact-grid { grid-template-columns: minmax(0, 1fr); }
  .quiz-contact-field.is-wide { grid-column: auto; }
  .quiz-contact-aside { display: block; padding: 20px 16px; }
  .quiz-contact-aside h3 { font-size: 20px; }
  .quiz-success { min-height: 0; padding: 22px 16px; }
  .quiz-success-steps { grid-template-columns: minmax(0, 1fr); }
  .quiz-success-footer { flex-direction: column; align-items: stretch; }
  .configurator-body :is(button, a, input, textarea):focus-visible { outline: 2px solid #777; outline-offset: 3px; }
}

@media (max-width: 767px) {
  .configurator-body .epc-chat-widget { bottom: calc(var(--bottom-nav-height) + 14px); }
  .configurator-body .epc-chat-window { max-height: calc(100dvh - var(--bottom-nav-height) - 105px); }
}
@media (max-width: 767px) {
  .configurator-body .epc-chat-tooltip { display: none; }
}
@media (max-width: 767px) and (prefers-reduced-motion: no-preference) {
  .configurator-body .configurator-hero h1 { animation: quizReveal .45s ease-out; }
  .configurator-body .configurator-hero-intro { animation: quizReveal .45s .08s ease-out backwards; }
}
@media (min-width: 768px) {
  .configurator-hero-visual img { object-position: right center; }
}
