.pek-quiz {
  --pek-pink: #f56ac4;
  --pek-pink-soft: #ffa7de;
  --pek-cyan: #37c3c7;
  --pek-lime: #91d63b;
  --pek-text: #333333;
  --pek-text-soft: #6d6d6d;
  --pek-border: #f7a6dd;
  --pek-surface: #ffffff;
  --pek-surface-soft: #fff9fd;
  --pek-shadow: 0 18px 40px rgba(245, 106, 196, 0.08);
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 20px 40px;
  overflow: hidden;
  background: #ffffff;
}

.pek-quiz__shape {
  display: none;
}

.pek-quiz__shape--star-left {
  top: 138px;
  left: 6px;
  width: 56px;
  height: 56px;
  background: var(--pek-cyan);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 34%);
  opacity: 0.88;
}

.pek-quiz__shape--ring-top,
.pek-quiz__shape--ring-bottom {
  border: 18px solid;
  border-radius: 999px;
  opacity: 0.9;
}

.pek-quiz__shape--ring-top {
  top: 6px;
  right: -20px;
  width: 110px;
  height: 110px;
  border-color: var(--pek-lime);
}

.pek-quiz__shape--ring-bottom {
  bottom: -26px;
  left: 48px;
  width: 94px;
  height: 94px;
  border-color: rgba(145, 214, 59, 0.92);
}

.pek-quiz__shape--spark-bottom {
  right: 58px;
  bottom: 18px;
  width: 90px;
  height: 90px;
  border: 18px solid rgba(245, 106, 196, 0.55);
  border-radius: 999px;
}

.pek-quiz__shape--spark-bottom::after {
  content: "";
  position: absolute;
  top: -18px;
  right: -4px;
  width: 22px;
  height: 22px;
  background: var(--pek-cyan);
  clip-path: polygon(50% 0%, 61% 34%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 34%);
}

.pek-quiz__intro,
.pek-quiz__main {
  position: relative;
  z-index: 1;
}

.pek-quiz__intro {
  display: none;
  min-height: 560px;
  align-items: center;
  justify-content: center;
}

.pek-quiz__intro.is-active {
  display: flex;
}

.pek-quiz__intro-card,
.pek-quiz__panel {
  position: relative;
  background: var(--pek-surface);
  border: 4px solid var(--pek-border);
  border-radius: 28px;
  box-shadow: var(--pek-shadow);
}

.pek-quiz__intro-card {
  width: min(760px, 100%);
  padding: 64px 38px;
  text-align: center;
}

.pek-quiz__intro-inner {
  max-width: 560px;
  margin: 0 auto;
}

.pek-quiz__intro-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(245, 106, 196, 0.12);
  color: var(--pek-pink);
  font-family: "poligon", sans-serif;
  font-size: 14px;
  letter-spacing: 0.04em;
}

.pek-quiz__intro-title,
.pek-quiz__title,
.pek-quiz__question,
.pek-quiz__results-header h3,
.pek-result-card__title,
.pek-bottom-cta__title,
.pek-quiz__modal-title {
  font-family: "poligon", sans-serif;
}

.pek-quiz__intro-title {
  margin: 0 0 16px;
  font-size: clamp(34px, 5vw, 48px);
  line-height: 1.08;
  color: var(--pek-pink);
}

.pek-quiz__intro-text {
  margin: 0 auto 28px;
  max-width: 520px;
  color: var(--pek-text-soft);
  font-size: 17px;
  line-height: 1.7;
}

.pek-quiz__start-btn,
.pek-quiz__nav,
.pek-quiz__restart,
.pek-result-card__button,
.pek-bottom-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border: none;
  border-radius: 18px;
  text-decoration: none;
  font-family: "poligon", sans-serif;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease, opacity 0.22s ease;
}

.pek-quiz__start-btn,
.pek-quiz__nav--primary,
.pek-result-card__button,
.pek-bottom-cta__button {
  position: relative;
  gap: 12px;
  padding: 0 30px;
  background: linear-gradient(135deg, #6c54ef 0%, #4f3ddb 100%);
  color: #ffffff;
  box-shadow: 0 14px 24px rgba(79, 61, 219, 0.24);
}

.pek-quiz__start-btn::before,
.pek-quiz__nav--primary::before,
.pek-result-card__button::before,
.pek-bottom-cta__button::before {
  content: "";
  width: 12px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  order: 2;
}

.pek-quiz__start-btn::after,
.pek-quiz__nav--primary::after,
.pek-result-card__button::after,
.pek-bottom-cta__button::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: -16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
  order: 3;
}

.pek-quiz__nav--secondary,
.pek-quiz__restart {
  background: #ffffff;
  color: var(--pek-text);
  border: 2px solid rgba(245, 106, 196, 0.16);
  box-shadow: 0 10px 22px rgba(51, 51, 51, 0.06);
}

.pek-quiz__start-btn:hover,
.pek-quiz__nav:hover,
.pek-quiz__restart:hover,
.pek-result-card__button:hover,
.pek-bottom-cta__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(79, 61, 219, 0.28);
  filter: brightness(1.02);
}

.pek-quiz__nav:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pek-quiz__panel {
  padding: 34px 30px 28px;
}

.pek-quiz__header {
  margin-bottom: 18px;
  text-align: center;
}

.pek-quiz__title {
  margin: 0 0 6px;
  font-size: clamp(28px, 3.7vw, 38px);
  line-height: 1.12;
  color: var(--pek-pink);
}

.pek-quiz__subtitle {
  max-width: 560px;
  margin: 0 auto;
  color: var(--pek-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.pek-quiz__progress {
  --pek-progress: 0%;
  max-width: 360px;
  margin: 0 auto 26px;
  padding-top: 48px;
  text-align: center;
  position: relative;
}

.pek-quiz__progress-icon {
  position: absolute;
  top: 0;
  left: clamp(22px, var(--pek-progress), calc(100% - 22px));
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0;
  transform: translateX(-50%);
  transition: left 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.3s ease;
  will-change: left, transform;
}

.pek-quiz__progress-icon img {
  width: 100%;
  height: auto;
  display: block;
  animation: pekProgressFloat 2.2s ease-in-out infinite;
}

.pek-quiz__progress-bar {
  width: 100%;
  height: 10px;
  border: 1px solid rgba(245, 106, 196, 0.25);
  border-radius: 999px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
}

.pek-quiz__progress.is-complete {
  max-width: 120px;
  padding-top: 44px;
}

.pek-quiz__progress.is-complete .pek-quiz__progress-icon {
  left: 50%;
}

.pek-quiz__progress.is-complete .pek-quiz__progress-bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: scaleX(0.75);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.pek-quiz__progress-fill {
  display: block;
  width: var(--pek-progress);
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff6dbf 0%, var(--pek-pink) 48%, #ff9fcb 100%);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}

.pek-quiz__progress-fill::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    rgba(255, 255, 255, 0) 0,
    rgba(255, 255, 255, 0) 10px,
    rgba(255, 255, 255, 0.22) 10px,
    rgba(255, 255, 255, 0.22) 18px
  );
  background-size: 32px 32px;
  animation: pekProgressStripes 1.2s linear infinite;
}

.pek-quiz__progress-fill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.18) 35%, rgba(255, 255, 255, 0.55) 50%, rgba(255, 255, 255, 0.18) 65%, transparent 100%);
  transform: translateX(-100%);
  animation: pekProgressShine 1.9s ease-in-out infinite;
}

.pek-quiz__progress-text {
  margin-top: 10px;
  color: var(--pek-pink);
  font-family: "poligon", sans-serif;
  font-size: 14px;
}

.pek-quiz__body {
  position: relative;
}

.pek-quiz__steps-wrap {
  max-width: 820px;
  min-height: 390px;
  margin: 0 auto;
}

.pek-quiz__step {
  display: none;
  opacity: 0;
  transform: translateX(24px);
}

.pek-quiz__step.is-active {
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.pek-quiz__step.is-entering {
  animation: pekFadeInRight 0.32s ease;
}

.pek-quiz__step.is-leaving-left {
  animation: pekFadeOutLeft 0.22s ease forwards;
}

.pek-quiz__step.is-leaving-right {
  animation: pekFadeOutRight 0.22s ease forwards;
}

@keyframes pekFadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pekFadeOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(-24px);
  }
}

@keyframes pekFadeOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }

  to {
    opacity: 0;
    transform: translateX(24px);
  }
}

@keyframes pekFadeInUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pekProgressShine {
  0% {
    transform: translateX(-100%);
  }

  55% {
    transform: translateX(130%);
  }

  100% {
    transform: translateX(130%);
  }
}

@keyframes pekProgressStripes {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: 32px 0;
  }
}

@keyframes pekProgressFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-2px);
  }

  100% {
    transform: translateY(0);
  }
}

.pek-quiz__question-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.pek-quiz__question {
  margin: 0;
  text-align: center;
  color: var(--pek-pink);
  font-size: clamp(24px, 3vw, 31px);
  line-height: 1.18;
}

.pek-quiz__helper {
  margin: 0 0 18px;
  text-align: center;
  color: var(--pek-text-soft);
  font-size: 14px;
}

.pek-quiz__mini-help {
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(245, 106, 196, 0.26);
  border-radius: 999px;
  background: rgba(245, 106, 196, 0.1);
  color: var(--pek-pink);
  font-family: "poligon", sans-serif;
  font-size: 12px;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pek-quiz__mini-help:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(245, 106, 196, 0.14);
}

.pek-quiz__options {
  display: grid;
  gap: 16px;
}

.pek-quiz__options--single {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pek-quiz__options--usage {
  max-width: 560px;
  margin: 0 auto;
}

.pek-quiz__options--targets {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pek-quiz__option,
.pek-quiz__target-card {
  --pek-tone: var(--pek-pink);
  --pek-tone-soft: rgba(245, 106, 196, 0.1);
  position: relative;
  border: 2px solid rgba(245, 106, 196, 0.14);
  background: #ffffff;
  border-radius: 24px;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease, background 0.22s ease, opacity 0.22s ease;
}

.pek-quiz__option--tone-cyan,
.pek-quiz__target-card--tone-cyan {
  --pek-tone: var(--pek-cyan);
  --pek-tone-soft: rgba(55, 195, 199, 0.12);
}

.pek-quiz__option--tone-pink,
.pek-quiz__target-card--tone-pink {
  --pek-tone: var(--pek-pink);
  --pek-tone-soft: rgba(245, 106, 196, 0.12);
}

.pek-quiz__option--tone-lime,
.pek-quiz__target-card--tone-lime {
  --pek-tone: var(--pek-lime);
  --pek-tone-soft: rgba(145, 214, 59, 0.14);
}

.pek-quiz__option--tone-sun,
.pek-quiz__target-card--tone-sun {
  --pek-tone: #ffb647;
  --pek-tone-soft: rgba(255, 182, 71, 0.14);
}

.pek-quiz__option:hover,
.pek-quiz__target-card:hover {
  transform: translateY(-3px);
  border-color: var(--pek-tone);
  box-shadow: 0 18px 28px rgba(51, 51, 51, 0.08);
}

.pek-quiz__option.is-selected,
.pek-quiz__target-card.is-selected {
  border-color: var(--pek-tone);
  background: linear-gradient(180deg, var(--pek-tone-soft) 0%, #ffffff 100%);
  box-shadow: 0 16px 28px rgba(51, 51, 51, 0.1);
}

.pek-quiz__option.is-selected::after,
.pek-quiz__target-card.is-selected::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--pek-tone);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.95);
}

.pek-quiz__option--visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 212px;
  padding: 22px 18px 20px;
  text-align: center;
}

.pek-quiz__option-media,
.pek-quiz__target-media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 104px;
  height: 104px;
  margin-bottom: 12px;
  border-radius: 0;
  background: transparent;
}

.pek-quiz__option-media img,
.pek-quiz__target-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.pek-quiz__option-title,
.pek-quiz__target-label {
  display: block;
  color: var(--pek-text);
  font-family: "poligon", sans-serif;
  font-size: 18px;
  line-height: 1.15;
}

.pek-quiz__option-meta {
  display: block;
  margin-top: 6px;
  color: var(--pek-text-soft);
  font-size: 14px;
  line-height: 1.4;
}

.pek-quiz__target-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 206px;
  padding: 18px 14px;
  text-align: center;
}

.pek-quiz__target-media--empty {
  background: rgba(51, 51, 51, 0.05);
}

.pek-quiz__target-card.is-disabled,
.pek-quiz__target-card:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
  border-color: rgba(51, 51, 51, 0.08);
}

.pek-quiz__selection-box {
  max-width: 820px;
  margin: 18px auto 0;
  padding: 16px 18px;
  border: 2px dashed rgba(245, 106, 196, 0.26);
  border-radius: 18px;
  background: #fff9fd;
  color: var(--pek-text);
  text-align: center;
  line-height: 1.6;
}

.pek-quiz__error {
  margin: 12px auto 0;
  color: #d63b7a;
  text-align: center;
  font-size: 14px;
}

.pek-quiz__shortcut-wrap {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}

.pek-quiz__shortcut-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ff83c8 0%, #f56ac4 52%, #ff83c8 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: "poligon", sans-serif;
  font-size: 15px;
  box-shadow: 0 14px 24px rgba(245, 106, 196, 0.24);
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.pek-quiz__shortcut-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 28px rgba(245, 106, 196, 0.3);
  filter: brightness(1.02);
}

.pek-quiz__footer {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.pek-quiz__results {
  animation: pekFadeInUp 0.32s ease;
}

.pek-quiz__results-header {
  margin-bottom: 22px;
  text-align: center;
}

.pek-quiz__results-header h3 {
  margin: 0 0 8px;
  font-size: clamp(28px, 3.4vw, 34px);
  color: var(--pek-pink);
}

.pek-quiz__results-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--pek-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.pek-quiz__results-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 20px;
  align-items: start;
}

.pek-quiz__results-grid--one,
.pek-quiz__results-grid--two,
.pek-quiz__results-grid--three {
  justify-content: center;
}

.pek-quiz__results-grid--one .pek-result-card {
  grid-column: 2;
}

.pek-quiz__results-grid--two .pek-result-card.is-featured {
  grid-column: 2;
}

.pek-quiz__results-grid--two .pek-result-card:not(.is-featured) {
  grid-column: 1;
}

.pek-result-card {
  position: relative;
  padding: 22px;
  border: 2px solid rgba(245, 106, 196, 0.14);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(51, 51, 51, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.pek-result-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(51, 51, 51, 0.09);
}

.pek-result-card.is-featured {
  border-color: var(--pek-pink);
  box-shadow: 0 22px 38px rgba(245, 106, 196, 0.16);
}

.pek-result-card__label,
.pek-result-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "poligon", sans-serif;
  font-size: 12px;
}

.pek-result-card__label {
  margin-bottom: 12px;
  background: rgba(55, 195, 199, 0.16);
  color: #18858a;
}

.pek-result-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 182, 71, 0.2);
  color: #8f5a05;
}

.pek-result-card__image {
  margin-bottom: 14px;
}

.pek-result-card__image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 22px;
}

.pek-result-card__title {
  margin: 0 0 10px;
  color: var(--pek-text);
  font-size: 26px;
  line-height: 1.08;
}

.pek-result-card__price {
  margin-bottom: 12px;
  color: var(--pek-text);
  font-family: "poligon", sans-serif;
  font-size: 22px;
}

.pek-result-card__ideal,
.pek-result-card__includes,
.pek-result-card__benefit {
  margin: 0 0 10px;
  color: var(--pek-text-soft);
  font-size: 15px;
  line-height: 1.62;
}

.pek-result-card__button {
  margin-top: 8px;
}

.pek-result-card--fallback {
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(55, 195, 199, 0.14) 0, rgba(55, 195, 199, 0.14) 90px, transparent 91px),
    radial-gradient(circle at 86% 14%, rgba(145, 214, 59, 0.18) 0, rgba(145, 214, 59, 0.18) 92px, transparent 93px),
    linear-gradient(180deg, #ffffff 0%, #fffafd 100%);
}

.pek-result-card__fallback-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 132px;
  height: 132px;
  margin: 4px auto 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(245, 106, 196, 0.16), rgba(55, 195, 199, 0.2));
  color: var(--pek-pink);
  font-family: "poligon", sans-serif;
  font-size: 60px;
  line-height: 1;
}

.pek-result-card__fallback-note {
  margin: 6px 0 14px;
  color: var(--pek-text);
  font-family: "poligon", sans-serif;
  font-size: 16px;
}

.pek-quiz__bottom-ctas {
  display: grid;
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
}

.pek-bottom-cta {
  padding: 22px;
  border: 2px dashed rgba(245, 106, 196, 0.22);
  border-radius: 24px;
  background: var(--pek-surface-soft);
  box-shadow: 0 12px 24px rgba(51, 51, 51, 0.05);
  text-align: center;
}

.pek-bottom-cta__title {
  margin: 0 0 10px;
  color: var(--pek-text);
  font-size: 22px;
  line-height: 1.1;
}

.pek-bottom-cta__text {
  margin: 0 0 14px;
  color: var(--pek-text-soft);
  font-size: 15px;
  line-height: 1.6;
}

.pek-quiz__restart-wrap {
  margin-top: 24px;
  text-align: center;
}

.pek-quiz__modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: none;
}

.pek-quiz__modal.is-open {
  display: block;
}

.pek-quiz__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 28, 0.42);
}

.pek-quiz__modal-dialog {
  position: relative;
  z-index: 2;
  max-width: 560px;
  margin: 10vh auto 0;
  padding: 28px 24px 24px;
  border: 4px solid var(--pek-border);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 28px 48px rgba(30, 20, 28, 0.18);
  animation: pekFadeInUp 0.25s ease;
}

.pek-quiz__modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  border: none;
  background: transparent;
  color: var(--pek-text-soft);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.pek-quiz__modal-title {
  margin: 0 0 14px;
  color: var(--pek-pink);
  font-size: 28px;
}

.pek-quiz__modal-content p {
  margin: 0;
  color: var(--pek-text-soft);
  line-height: 1.7;
}

body.pek-quiz-modal-open {
  overflow: hidden;
}

@media (max-width: 991px) {
  .pek-quiz {
    padding: 22px 14px 32px;
  }

  .pek-quiz__panel,
  .pek-quiz__intro-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .pek-quiz__intro-card {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .pek-quiz__options--targets {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pek-quiz__results-grid,
  .pek-quiz__bottom-ctas {
    grid-template-columns: 1fr;
  }

  .pek-quiz__results-grid--one .pek-result-card,
  .pek-quiz__results-grid--two .pek-result-card,
  .pek-quiz__results-grid--two .pek-result-card.is-featured,
  .pek-quiz__results-grid--two .pek-result-card:not(.is-featured) {
    grid-column: auto;
  }

  .pek-quiz__shape--spark-bottom,
  .pek-quiz__shape--ring-bottom {
    display: none;
  }

  .pek-quiz__modal-dialog {
    margin: 8vh 16px 0;
  }
}

@media (max-width: 640px) {
  .pek-quiz__options--single,
  .pek-quiz__options--targets {
    grid-template-columns: 1fr;
  }

  .pek-quiz__panel {
    padding-top: 28px;
    padding-bottom: 22px;
  }

  .pek-quiz__progress {
    margin-bottom: 22px;
  }

  .pek-quiz__option--visual,
  .pek-quiz__target-card {
    min-height: 184px;
  }

  .pek-quiz__option-media,
  .pek-quiz__target-media {
    width: 92px;
    height: 92px;
  }

  .pek-quiz__footer {
    flex-direction: column-reverse;
  }

  .pek-quiz__nav,
  .pek-quiz__restart,
  .pek-quiz__start-btn {
    width: 100%;
  }
	.pek-bottom-cta__button,
	.pek-result-card__button{
		width: 75%;
	}

  .pek-quiz__shape--star-left,
  .pek-quiz__shape--ring-top {
    opacity: 0.5;
    transform: scale(0.84);
  }
}



