.newglow-quiz-scope {
  --font-family-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
  --font-family-display: 'DM Serif Display', Georgia, serif;
  --color-text-main: #2a2520;
  --color-text-light: #ffffff;
  --color-text-grey: #7a7066;
  --color-text-darkgrey: #7a7066;
  --color-accent: #c2876f;
  --color-accent-dark: #8b5a44;
  --color-link-hover: #a96f58;
  --color-accent-soft: #f2e8e0;
  --color-bg-dark: #faf7f3;
  --color-bg-main: #faf7f3;
  --color-bg-card: #ffffff;
  --color-border: #e8ddd1;
  --color-shadow: 0 4px 24px rgba(54, 40, 28, 0.07);
  --color-shadow-soft: 0 4px 18px rgba(54, 40, 28, 0.07);
  --color-btn-bg: linear-gradient(90deg, #E8A4C1 0%, #A98FE3 100%);
  --color-btn-bg-hover: linear-gradient(90deg, #E8A4C1 0%, #A98FE3 100%);
  --color-btn-text: #2a2520;
  --progress-bg: #efe7dd;
  --progress-fill: linear-gradient(90deg, #E6D6DD 0%, #D4B8C4 100%);
}

.newglow-quiz-scope * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.newglow-quiz-scope {
  scrollbar-gutter: stable;
  background: var(--color-bg-main);
}

.newglow-quiz-scope {
  font-family: var(--font-family-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-main);
  background: #faf7f3;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.newglow-quiz-scope img {
  max-width: 100%;
  height: auto;
  display: block;
}

.newglow-quiz-scope button, .newglow-quiz-scope input, .newglow-quiz-scope textarea, .newglow-quiz-scope select {
  font: inherit;
}

.newglow-quiz-scope button {
  border: none;
  background: none;
  cursor: pointer;
}

.newglow-quiz-scope a {
  color: var(--color-accent);
}

.newglow-quiz-scope .container {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

@media (min-width: 576px)   { .newglow-quiz-scope .container { max-width: 540px; } }
@media (min-width: 768px)   { .newglow-quiz-scope .container { max-width: 720px; } }
@media (min-width: 992px)   { .newglow-quiz-scope .container { max-width: 960px; } }
@media (min-width: 1200px)  { .newglow-quiz-scope .container { max-width: 1140px; } }
@media (min-width: 1400px)  { .newglow-quiz-scope .container { max-width: 1320px; } }
@media (min-width: 1800px)  { .newglow-quiz-scope .container { max-width: 1700px; } }

.newglow-quiz-scope .bg-black {
  background: transparent;
}

.newglow-quiz-scope .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 12px;
}

.newglow-quiz-scope .navbar__logo {
  height: 30px;
}

.newglow-quiz-scope .navbar__support {
  display: flex;
  align-items: center;
}

.newglow-quiz-scope .support-tooltip {
  position: relative;
  display: inline-block;
}

.newglow-quiz-scope .support-tooltip__trigger {
  padding: 0;
  display: flex;
  align-items: center;
}

.newglow-quiz-scope .support-tooltip__trigger img {
  width: 40px;
  height: 40px;
}

.newglow-quiz-scope .support-tooltip__content {
  position: absolute;
  top: 0;
  right: 50px;
  min-width: unset;
  background: var(--color-bg-card);
  color: var(--color-text-main);
  padding: 11px 32px;
  border-radius: 10px;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
  white-space: nowrap;
}

.newglow-quiz-scope .support-tooltip:hover .support-tooltip__content, .newglow-quiz-scope .support-tooltip__trigger:focus + .support-tooltip__content {
  opacity: 1;
  visibility: visible;
}

.newglow-quiz-scope .support-tooltip__text {
  margin-bottom: 0;
  font-size: 14px;
}

.newglow-quiz-scope .support-tooltip__link {
  display: inline;
  font-size: 14px;
  word-break: break-all;
  color: var(--color-accent);
  text-decoration: underline;
  font-weight: 700;
}

.newglow-quiz-scope .ng-main {
  flex: 1 0 auto;
  padding: 12px 0 40px;
}

.newglow-quiz-scope .ng-shell {
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}

.newglow-quiz-scope .ng-progress-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 auto 32px;
}

.newglow-quiz-scope .ng-progress-wrap[hidden] {
  display: none !important;
}

.newglow-quiz-scope .progress {
  height: 4px;
  background: var(--progress-bg);
  border-radius: 999px;
  overflow: hidden;
  flex: 1;
}

.newglow-quiz-scope .progress-bar {
  width: 0;
  height: 100%;
  background: var(--progress-fill);
  transition: width 0.35s cubic-bezier(.4, 0, .2, 1);
}

.newglow-quiz-scope .progress-meta {
  display: none;
}

.newglow-quiz-scope .card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--color-shadow);
}

.newglow-quiz-scope .result-offer-section {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: var(--color-shadow);
}

.newglow-quiz-scope .ng-card--registration {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.newglow-quiz-scope .ng-intro-eyebrow, .newglow-quiz-scope .result-eyebrow, .newglow-quiz-scope .payment-timer-title {
  font-size: 12px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-grey);
  font-weight: 600;
}

.newglow-quiz-scope .result-section-eyebrow, .newglow-quiz-scope .result-cat-label, .newglow-quiz-scope .result-finale-label {
  font-size: 11px;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-accent);
  font-weight: 700;
}

.newglow-quiz-scope .ng-intro-title, .newglow-quiz-scope .result-title, .newglow-quiz-scope h1.q, .newglow-quiz-scope .result-section-h, .newglow-quiz-scope .payment-offer-title {
  font-family: var(--font-family-main);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.newglow-quiz-scope .result-eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-grey);
  margin-bottom: 12px;
  text-align: center;
  font-weight: 400;
}

.newglow-quiz-scope .ng-intro-title, .newglow-quiz-scope .result-title {
  font-size: 26px;
}

.newglow-quiz-scope .ng-intro-copy, .newglow-quiz-scope .qnote, .newglow-quiz-scope .result-intro, .newglow-quiz-scope .result-detail-intro, .newglow-quiz-scope .result-cat-text, .newglow-quiz-scope .result-finale-copy, .newglow-quiz-scope .countdown, .newglow-quiz-scope .ng-offer-copy, .newglow-quiz-scope .payment-tax-info, .newglow-quiz-scope .payment-secure-info {
  color: var(--color-text-darkgrey);
  font-size: 17px;
  line-height: 1.65;
}

.newglow-quiz-scope .ng-intro-list {
  list-style: none;
  display: grid;
  gap: 12px;
}

.newglow-quiz-scope .ng-intro-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-text-main);
  font-size: 16px;
  line-height: 1.55;
}

.newglow-quiz-scope .ng-intro-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
}

.newglow-quiz-scope .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: auto;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: all 0.15s;
}

.newglow-quiz-scope .btn-primary {
  background: var(--color-btn-bg);
  color: var(--color-btn-text);
  font-weight: 600;
  padding: 18px 32px;
  box-shadow: 0 6px 18px rgba(180, 140, 200, 0.3), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.newglow-quiz-scope .btn-primary:hover, .newglow-quiz-scope .btn-primary:focus, .newglow-quiz-scope .btn-primary:active {
  background: var(--color-btn-bg-hover);
  color: var(--color-btn-text);
  box-shadow: 0 6px 18px rgba(180, 140, 200, 0.3), 0 2px 6px rgba(0, 0, 0, 0.06);
  transform: none;
  filter: none;
  opacity: 1;
}

.newglow-quiz-scope .btn-primary:hover {
  background: var(--color-accent);
}

.newglow-quiz-scope .btn-secondary {
  background: transparent;
  color: var(--color-text-grey);
  border: 1.5px solid var(--color-border);
}

.newglow-quiz-scope .btn-secondary:hover {
  border-color: #cfc2b4;
}

.newglow-quiz-scope .btn:disabled {
  background: #f1ece7;
  color: #999;
  box-shadow: none;
  cursor: not-allowed;
}

.newglow-quiz-scope .question-head {
  margin-bottom: 24px;
}

.newglow-quiz-scope .question-topline {
  display: none;
}

.newglow-quiz-scope .question-section {
  display: none;
}

.newglow-quiz-scope .question-index {
  display: none;
}

.newglow-quiz-scope h1.q {
  font-size: 20px;
  margin: 0 0 12px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--color-text-main);
}

.newglow-quiz-scope .q-paren {
  display: inline;
  font-size: 0.65em;
  opacity: 0.65;
  font-weight: 400;
}

.newglow-quiz-scope .options, .newglow-quiz-scope .pa-options, .newglow-quiz-scope .wrist-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.newglow-quiz-scope .opt, .newglow-quiz-scope .pa-opt, .newglow-quiz-scope .visual-opt-text, .newglow-quiz-scope .wrist-opt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 14px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg-main);
  color: var(--color-text-main);
  font-size: 15px;
  text-align: left;
  font-family: inherit;
  transition: all 0.15s;
}

.newglow-quiz-scope .opt:hover, .newglow-quiz-scope .pa-opt:hover, .newglow-quiz-scope .visual-opt-text:hover, .newglow-quiz-scope .wrist-opt:hover, .newglow-quiz-scope .visual-opt:hover {
  border-color: var(--color-accent);
  background: #fff;
}

.newglow-quiz-scope .opt.selected, .newglow-quiz-scope .pa-opt.selected, .newglow-quiz-scope .visual-opt-text.selected, .newglow-quiz-scope .wrist-opt.selected, .newglow-quiz-scope .visual-opt.selected {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(194, 135, 111, 0.18);
  background: #fff;
}

.newglow-quiz-scope .opt-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  flex-shrink: 0;
  margin-right: 14px;
  position: relative;
  transition: all 0.15s;
}

.newglow-quiz-scope .opt.selected .opt-dot {
  background: var(--color-accent);
  border-color: var(--color-accent);
}

.newglow-quiz-scope .opt.selected .opt-dot::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #fff;
}

.newglow-quiz-scope .visual-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.newglow-quiz-scope .visual-options + .visual-opt-text, .newglow-quiz-scope .wrist-options + .visual-opt-text, .newglow-quiz-scope .visual-opt-text + .visual-opt-text {
  margin-top: 8px;
}

.newglow-quiz-scope .visual-opt {
  width: 100%;
  padding: 12px 4px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  background: var(--color-bg-main);
  text-align: center;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.newglow-quiz-scope .visual-opt .visual-img {
  width: 100%;
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto 8px;
  border-radius: 6px;
}

.newglow-quiz-scope .visual-opt-label {
  font-size: 11px;
  font-weight: 500;
  color: var(--color-text-grey);
}

.newglow-quiz-scope .visual-opt-text {
  color: var(--color-text-grey);
  text-align: center;
  justify-content: center;
  font-weight: 500;
}

.newglow-quiz-scope .wrist-opt .wrist-img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
  border-radius: 6px;
}

.newglow-quiz-scope .wrist-opt {
  gap: 12px;
  padding: 12px 8px;
}

.newglow-quiz-scope .wrist-opt-title {
  font-weight: 600;
  font-size: 15px;
  line-height: 1.3;
  color: var(--color-text-main);
}

.newglow-quiz-scope .wrist-opt-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.newglow-quiz-scope .wrist-opt-sub {
  font-size: 13px;
  color: var(--color-text-grey);
  line-height: 1.4;
}

.newglow-quiz-scope .pa-opt {
  gap: 12px;
  padding: 12px 8px;
  font-size: 14.5px;
}

.newglow-quiz-scope .reminder__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.newglow-quiz-scope .reminder__field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.newglow-quiz-scope .reminder__label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text-main);
}

.newglow-quiz-scope .reminder__input {
  width: 100%;
  border: 1.5px solid #d6cdc3;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 16px;
  background: #fff;
  outline: none;
}

.newglow-quiz-scope .reminder__input:focus {
  border-color: var(--color-accent);
}

.newglow-quiz-scope .reminder__input.error {
  border-color: var(--color-accent-dark);
}

.newglow-quiz-scope .reminder__hint {
  display: none;
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.45;
}

.newglow-quiz-scope .reminder__hint--suggestion {
  color: #8a4a00;
  background: #fff5eb;
  border: 1px solid #f4d2b8;
  border-radius: 10px;
  padding: 10px 12px;
}

.newglow-quiz-scope .reminder__hint--suggestion a {
  color: #8b3200;
  font-weight: 600;
}

.newglow-quiz-scope .is-hidden {
  display: none !important;
}

.newglow-quiz-scope .result-card {
  display: grid;
  gap: 20px;
  padding: 36px 24px 28px;
}

.newglow-quiz-scope .phase-card {
  text-align: center;
  padding: 40px 18px 28px;
}

.newglow-quiz-scope .phase-card-top {
  text-align: left;
  padding: 24px 18px 28px;
}

.newglow-quiz-scope .phase-card--loading {
  text-align: center;
}

.newglow-quiz-scope .phase-text {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--color-text-grey);
  line-height: 1.4;
  white-space: nowrap;
  text-align: center;
  animation: fadeIn 0.3s ease;
}

.newglow-quiz-scope .check-final {
  color: var(--color-text-main);
  font-weight: 600;
  font-size: 16px;
}

.newglow-quiz-scope .phase-title {
  font-family: var(--font-family-main);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-main);
  margin: 0 0 18px;
}

.newglow-quiz-scope .phase-title-big {
  font-size: 26px;
  text-align: center;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin-bottom: 18px;
}

.newglow-quiz-scope .phase-sub {
  text-align: center;
  color: var(--color-text-grey);
  font-size: 15px;
  margin: 0 0 20px;
}

.newglow-quiz-scope .phase-loading {
  width: 100%;
  max-width: 420px;
  margin: 8px auto 0;
}

.newglow-quiz-scope .phase-loading__bar {
  width: 100%;
  height: 14px;
  background: #efe7dd;
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 1px 2px rgba(54, 40, 28, 0.08);
}

.newglow-quiz-scope .phase-loading__fill {
  width: 0;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #ffbe6b 0%, #ff8e7d 32%, #f98fd0 68%, #b89dff 100%);
  transition: width 0.2s ease;
}

.newglow-quiz-scope .phase-list {
  padding-left: 22px;
  margin: 0 0 20px;
  color: var(--color-text-main);
  font-size: 15px;
  line-height: 1.55;
}

.newglow-quiz-scope .phase-list li {
  margin-bottom: 14px;
}

.newglow-quiz-scope .phase-note {
  color: var(--color-text-grey);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 20px;
}

.newglow-quiz-scope .phase-form > * {
  width: 100%;
}

.newglow-quiz-scope .phase-input {
  width: 100%;
  box-sizing: border-box;
  padding: 16px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  font-family: var(--font-family-main);
  font-size: 16px;
  color: var(--color-text-main);
  background: var(--color-bg-card);
  margin-bottom: 8px;
  outline: none;
  transition: border-color 0.15s;
}

.newglow-quiz-scope .phase-input:focus {
  border-color: var(--color-accent);
}

.newglow-quiz-scope .phase-error {
  display: block !important;
  min-height: 18px;
  visibility: hidden;
  color: #a83232;
  font-size: 13px;
  line-height: 1.45;
  margin-bottom: 8px;
}

.newglow-quiz-scope .phase-error:not(:empty) {
  visibility: visible;
}

.newglow-quiz-scope .phase-error.phase-error--warning {
  color: #8a4a00;
}

.newglow-quiz-scope .phase-error.phase-error--warning a {
  color: #8b3200;
  font-weight: 600;
  text-decoration: underline;
}

.newglow-quiz-scope .phase-error.phase-error--error {
  color: #a83232;
}

.newglow-quiz-scope .options .opt {
  font-size: 15px;
  font-family: inherit;
  color: var(--color-text-main);
  font-weight: 400;
}

.newglow-quiz-scope .ng-checking-card, .newglow-quiz-scope .ng-rules-card {
  display: grid;
  gap: 18px;
}

.newglow-quiz-scope .ng-checking-copy {
  color: var(--color-text-grey);
  font-size: 13px;
}

.newglow-quiz-scope .ng-checking-loader {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 3px solid rgba(194, 135, 111, 0.18);
  border-top-color: var(--color-accent);
  animation: ng-spin 0.8s linear infinite;
}

.newglow-quiz-scope .ng-checking-stack {
  display: grid;
  gap: 8px;
}

.newglow-quiz-scope .ng-checking-line {
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--color-bg-main);
  color: var(--color-text-grey);
  font-size: 15px;
  line-height: 1.5;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.newglow-quiz-scope .ng-checking-line.is-active {
  opacity: 1;
  color: var(--color-text-main);
  border-color: var(--color-accent);
  background: #fff;
}

.newglow-quiz-scope .ng-checking-line.is-complete {
  opacity: 1;
  color: var(--color-text-main);
}

.newglow-quiz-scope .ng-rules-list {
  display: grid;
  gap: 12px;
  padding-left: 20px;
  color: var(--color-text-main);
  font-size: 16px;
  line-height: 1.6;
}

.newglow-quiz-scope .ng-rules-note {
  color: var(--color-text-grey);
  font-size: 14px;
}

.newglow-quiz-scope .ng-rules-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.newglow-quiz-scope .result-cat {
  display: grid;
  gap: 8px;
}

.newglow-quiz-scope .result-card {
  padding: 36px 24px 28px;
}

.newglow-quiz-scope .result-title {
  font-size: 32px;
}

.newglow-quiz-scope .result-intro {
  display: none;
}

.newglow-quiz-scope .result-portraits {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 6px 0 18px;
  flex-wrap: nowrap;
}

.newglow-quiz-scope .result-portraits img {
  width: 140px;
  max-width: 140px;
  height: 220px;
  object-fit: contain;
  border-radius: 10px;
  background: var(--color-bg-main);
}

.newglow-quiz-scope .result-observations {
  list-style: none;
  display: grid;
  gap: 0;
  margin: 0 0 18px;
}

.newglow-quiz-scope .obs-item {
  position: relative;
  padding: 10px 4px 10px 30px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--color-text-main);
  border-bottom: 1px solid var(--color-border);
}

.newglow-quiz-scope .obs-item:first-child {
  border-top: 1px solid var(--color-border);
}

.newglow-quiz-scope .obs-item::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 10px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--color-accent-soft);
  color: var(--color-text-main);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}

.newglow-quiz-scope .result-offer-section {
  display: grid;
  gap: 26px;
  margin-top: 18px;
  background: #fff;
}

.newglow-quiz-scope .plan-title {
  font-family: var(--font-family-main);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text-main);
  text-align: center;
  margin: 24px 0 16px;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.newglow-quiz-scope .plan-items-stacked {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  margin-bottom: 22px;
}

.newglow-quiz-scope .plan-item {
  text-align: center;
}

.newglow-quiz-scope .plan-item-img {
  width: 100%;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px;
  font-family: var(--font-family-main);
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 10px;
  text-align: center;
  line-height: 1.2;
  box-sizing: border-box;
}

.newglow-quiz-scope .plan-item-cover {
  padding: 0;
  object-fit: cover;
  height: auto;
  aspect-ratio: 16 / 9;
}

.newglow-quiz-scope .plan-item-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.3;
  margin-bottom: 2px;
}

.newglow-quiz-scope .plan-item-sub {
  font-size: 12px;
  color: var(--color-text-grey);
  line-height: 1.3;
}

.newglow-quiz-scope .plan-plus {
  text-align: center;
  font-size: 22px;
  font-weight: 300;
  color: var(--color-text-grey);
  line-height: 1;
  padding: 2px 0;
}

.newglow-quiz-scope .offer-box {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  padding: 20px 18px 20px;
  margin: 0 0 6px;
  text-align: center;
}

.newglow-quiz-scope .offer-title {
  font-family: var(--font-family-main);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-main);
  margin-bottom: 10px;
  letter-spacing: -0.02em;
}

.newglow-quiz-scope .offer-divider {
  height: 1px;
  background: var(--color-border);
  margin: 0 auto 14px;
  width: 80%;
}

.newglow-quiz-scope .offer-price-old {
  font-size: 16px;
  color: var(--color-text-grey);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.newglow-quiz-scope .offer-price-new {
  font-family: var(--font-family-main);
  font-size: 34px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.1;
  margin-bottom: 14px;
  letter-spacing: -0.03em;
}

.newglow-quiz-scope .offer-btn {
  margin-top: 4px;
}

.newglow-quiz-scope .offer-installment {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  color: var(--color-text-grey);
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.newglow-quiz-scope .offer-installment:hover {
  color: var(--color-text-main);
}

.newglow-quiz-scope .trust-section {
  margin-top: 14px;
  text-align: center;
}

.newglow-quiz-scope .trust-icons {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 4px;
  margin-bottom: 10px;
}

.newglow-quiz-scope .pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 20px;
  padding: 0 5px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 3px;
  font-family: var(--font-family-main);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--color-text-main);
  white-space: nowrap;
}

.newglow-quiz-scope .pay-mc {
  color: #cc5b3d;
  font-weight: 600;
  font-style: italic;
  letter-spacing: 0;
}

.newglow-quiz-scope .pay-amex {
  background: #1c5db8;
  color: #fff;
  border-color: #1c5db8;
}

.newglow-quiz-scope .pay-disc {
  font-size: 7px;
  letter-spacing: 0.02em;
}

.newglow-quiz-scope .pay-apple, .newglow-quiz-scope .pay-gp {
  font-size: 9px;
}

.newglow-quiz-scope .trust-line {
  font-size: 10px;
  color: var(--color-text-grey);
  line-height: 1.5;
  margin-top: 4px;
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.newglow-quiz-scope .cd-section {
  margin-top: 18px;
  text-align: center;
}

.newglow-quiz-scope .cd-eyebrow {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text-grey);
  font-weight: 600;
  margin-bottom: 8px;
}

.newglow-quiz-scope .cd-blocks {
  display: flex;
  gap: 6px;
  margin-top: 16px;
  justify-content: stretch;
}

.newglow-quiz-scope .cd-block {
  flex: 1;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 10px 4px 8px;
  text-align: center;
}

.newglow-quiz-scope .cd-num {
  font-family: var(--font-family-main);
  font-size: 24px;
  font-weight: 700;
  color: var(--color-text-main);
  line-height: 1.1;
}

.newglow-quiz-scope .cd-lbl {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-grey);
  margin-top: 2px;
}

.newglow-quiz-scope a.btn-primary {
  display: block;
  text-align: center;
  text-decoration: none;
}

.newglow-quiz-scope .payment-timer-block {
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.newglow-quiz-scope .timer-clock {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--color-border);
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--color-bg-main);
}

.newglow-quiz-scope .timer-clock .cd {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-main);
}

.newglow-quiz-scope .timer-clock .cd-label {
  font-size: 13px;
  color: var(--color-text-grey);
  margin-right: 6px;
}

.newglow-quiz-scope .ng-offer-copy {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newglow-quiz-scope .payment-box-row {
  display: flex;
  gap: 24px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.newglow-quiz-scope .payment-offer-box {
  width: 340px;
  padding: 36px 26px 24px;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid var(--color-border);
  box-shadow: var(--color-shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  gap: 12px;
}

.newglow-quiz-scope .payment-offer-box--light {
  border-color: var(--color-accent);
  box-shadow: 0 8px 24px rgba(180, 156, 198, 0.12);
}

.newglow-quiz-scope .payment-offer-title {
  font-size: 26px;
  margin: 0;
}

.newglow-quiz-scope .payment-offer-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-darkgrey);
  margin-bottom: 22px;
}

.newglow-quiz-scope .payment-offer-divider {
  width: 80%;
  height: 1px;
  background: #ddd1c4;
}

.newglow-quiz-scope .payment-offer-price-block {
  width: 100%;
  display: grid;
  gap: 12px;
}

.newglow-quiz-scope .payment-offer-oldprice-row, .newglow-quiz-scope .payment-offer-newprice-row {
  display: flex;
  justify-content: center;
}

.newglow-quiz-scope .payment-offer-oldprice {
  position: relative;
  color: var(--color-text-grey);
  font-size: 22px;
  font-weight: 400;
  padding: 0 4px;
}

.newglow-quiz-scope .payment-offer-oldprice::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 53%;
  width: 90%;
  height: 2px;
  margin: 0 auto;
  background: var(--color-text-grey);
}

.newglow-quiz-scope .payment-offer-newprice {
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.newglow-quiz-scope .payment-offer-newprice-unit {
  font-size: 24px;
  font-weight: 700;
  margin-left: 2px;
}

.newglow-quiz-scope .payment-offer-aftertrial {
  font-size: 14px;
  color: var(--color-text-darkgrey);
}

.newglow-quiz-scope .payment-btn {
  max-width: 260px;
}

.newglow-quiz-scope .payment-methods-row {
  display: grid;
  justify-items: center;
  gap: 14px;
}

.newglow-quiz-scope .payment-methods-img {
  max-width: 300px;
}

.newglow-quiz-scope .payment-tax-info {
  text-align: center;
  max-width: 640px;
}

.newglow-quiz-scope .payment-secure-info {
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: center;
}

.newglow-quiz-scope .payment-secure-lock {
  width: 18px;
  height: 18px;
}

.newglow-quiz-scope .footer {
  background: var(--color-bg-main);
  padding: 10px 0;
  border-top: 1.5px solid var(--color-border);
  margin-top: auto;
  font-size: 16px;
  color: var(--color-text-grey);
}

.newglow-quiz-scope .footer__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.newglow-quiz-scope .footer__brand {
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 12px;
}

.newglow-quiz-scope .footer__logo {
  margin-bottom: -2px;
  height: 20px;
  display: block;
}

.newglow-quiz-scope .footer__year {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1;
}

.newglow-quiz-scope .footer__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.newglow-quiz-scope .footer__link {
  color: var(--color-text-grey);
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.newglow-quiz-scope .footer__link--highlight {
  color: var(--color-btn-text);
  background: var(--color-btn-bg);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(180, 140, 200, 0.24);
  transition: background 0.2s, box-shadow 0.2s;
}

.newglow-quiz-scope .footer__link:hover {
  color: var(--color-link-hover);
}

.newglow-quiz-scope .footer__link--highlight:hover {
  color: var(--color-text-light);
  background: var(--color-btn-bg-hover);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .newglow-quiz-scope {
    background: var(--color-bg-main);
    display: block;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .newglow-quiz-scope .ng-main {
    min-height: 100vh;
    min-height: 100dvh;
    padding: max(env(safe-area-inset-top, 20px), 20px) 0 max(env(safe-area-inset-bottom, 24px), 24px);
  }

  .newglow-quiz-scope .navbar__logo {
    height: 22px;
  }

  .newglow-quiz-scope .support-tooltip__trigger img {
    width: 22px;
    height: 22px;
  }

  .newglow-quiz-scope .support-tooltip__content {
    right: 30px;
  }

  .newglow-quiz-scope .card, .newglow-quiz-scope .result-offer-section {
    padding: 24px 20px;
    border-radius: 14px;
    max-width: 560px;
    margin: 0 auto;
  }

  .newglow-quiz-scope .ng-intro-title, .newglow-quiz-scope .result-title {
    font-size: 26px;
  }

  .newglow-quiz-scope h1.q {
    font-size: 20px;
  }

  .newglow-quiz-scope .visual-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .newglow-quiz-scope .visual-opt {
    padding: 12px 4px 8px;
  }

  .newglow-quiz-scope .visual-opt .visual-img {
    max-width: 140px;
  }

  .newglow-quiz-scope .visual-opt-label {
    font-size: 11px;
  }

  .newglow-quiz-scope .opt, .newglow-quiz-scope .pa-opt, .newglow-quiz-scope .visual-opt-text, .newglow-quiz-scope .wrist-opt {
    padding: 14px 8px;
    font-size: 15px;
  }

  .newglow-quiz-scope .payment-offer-box {
    width: 100%;
  }

  .newglow-quiz-scope .wrist-opt {
    padding: 12px 8px;
  }

  .newglow-quiz-scope .result-portraits {
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
  }

  .newglow-quiz-scope .result-portraits img {
    width: 130px;
    max-width: 130px;
    height: 200px;
  }

  .newglow-quiz-scope .pay-badge {
    font-size: 8px;
    padding: 0 5px;
  }

  .newglow-quiz-scope .trust-line {
    font-size: 10.5px;
  }

  .newglow-quiz-scope .cd-num {
    font-size: 22px;
  }

  .newglow-quiz-scope .footer__container {
    gap: 10px;
  }

  .newglow-quiz-scope .footer__logo {
    height: 14px;
    display: block;
  }

  .newglow-quiz-scope .footer__year {
    font-size: 10px;
    display: block;
  }

  .newglow-quiz-scope .footer__links {
    gap: 20px;
    margin-left: 0;
  }

  .newglow-quiz-scope .footer__link {
    font-size: 10px;
  }

  .newglow-quiz-scope .footer__link--highlight {
    padding: 4px 12px;
  }
}

@media (max-width: 576px) {
  .newglow-quiz-scope .container {
    padding-right: 12px;
    padding-left: 12px;
  }

  .newglow-quiz-scope .card, .newglow-quiz-scope .result-offer-section {
    padding: 24px 20px;
  }

  .newglow-quiz-scope .ng-intro-title, .newglow-quiz-scope .result-title {
    font-size: 26px;
  }

  .newglow-quiz-scope .footer__links {
    gap: 12px;
  }

  .newglow-quiz-scope h1.q {
    font-size: 20px;
  }

  .newglow-quiz-scope .timer-clock {
    padding: 10px 14px;
  }

  .newglow-quiz-scope .timer-clock .cd {
    font-size: 24px;
  }
}

@media (max-width: 360px) {
  .newglow-quiz-scope .card, .newglow-quiz-scope .result-offer-section {
    padding: 22px 10px;
  }

  .newglow-quiz-scope .result-portraits {
    gap: 6px;
  }

  .newglow-quiz-scope .result-portraits img {
    width: 46%;
    max-width: 130px;
    height: auto;
    aspect-ratio: 7 / 11;
  }

  .newglow-quiz-scope .pay-badge {
    font-size: 7.5px;
    padding: 0 4px;
  }

  .newglow-quiz-scope .trust-line {
    font-size: 10px;
    line-height: 1.4;
    white-space: normal;
  }

  .newglow-quiz-scope .cd-num {
    font-size: 20px;
  }

  .newglow-quiz-scope .offer-title {
    font-size: 17px;
  }

  .newglow-quiz-scope .offer-price-new {
    font-size: 30px;
  }

  .newglow-quiz-scope .plan-item-name {
    font-size: 13px;
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(2px);
  }

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

