﻿.navrh-page-shell {
  position: relative;
  z-index: 10;
  padding-top: 0;
}

.mz-section {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  background: #050508;
  font-family: var(--font-body);
  color: #f5f5ef;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
}

.mz-section *,
.mz-section *::before,
.mz-section *::after {
  box-sizing: border-box;
}

.mz-toast {
  position: fixed;
  top: auto;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(24px);
  background: linear-gradient(135deg, rgba(var(--accent-rgb),  0.96), rgba(var(--accent-deep-rgb),  0.92));
  backdrop-filter: blur(20px);
  border-radius: 12px;
  padding: 13px 26px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1px;
  color: #111303;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease,
    transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.mz-toast.mz-toast--show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

@media (max-width: 600px) {
  .mz-toast {
    width: calc(100vw - 32px);
    bottom: 16px;
    text-align: center;
  }
}

.mz-overlay {
  position: fixed;
  inset: 0;
  z-index: 15000;
  background:
    radial-gradient(circle at 50% 20%, rgba(var(--accent-deep-rgb),  0.12), transparent 24%),
    radial-gradient(circle at 50% 80%, rgba(var(--accent-rgb),  0.16), transparent 28%),
    rgba(5, 5, 8, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.5s;
}

.mz-overlay.mz-overlay--active {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body.mz-overlay-open {
  overflow: hidden;
}

.mz-overlay__panel {
  width: min(460px, calc(100vw - 32px));
  max-width: calc(100vw - 32px);
  box-sizing: border-box;
  padding: 32px 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    linear-gradient(180deg, rgba(16, 18, 28, 0.98), rgba(6, 8, 14, 0.98));
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  text-align: center;
  transform: scale(0.96);
  transition: transform 0.35s ease;
}

.mz-overlay.mz-overlay--active .mz-overlay__panel {
  transform: scale(1);
}

.mz-overlay__brand {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: 0.18em;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(var(--accent-rgb),  0.24);
  overflow-wrap: anywhere;
}

.mz-overlay__text {
  margin-top: 12px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #d8dcc4;
}

.mz-overlay__pulse {
  position: relative;
  margin-top: 18px;
  width: 100%;
  height: 5px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.mz-overlay__pulse::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),  0.9), rgba(236,255,131,  0.92), rgba(var(--accent-deep-rgb),  0.92));
  transform: translateX(-100%);
  animation: mz-overlay-progress 1.3s ease-in-out infinite;
}

@keyframes mz-overlay-progress {
  0% {
    transform: translateX(-100%);
  }

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

.mz-orbit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
}

.mz-orbit-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 38px);
  font-weight: 900;
  background: linear-gradient(135deg, #ffffff 40%, #a3a68f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 6px;
  text-align: center;
}

.mz-orbit-sub {
  font-family: var(--font-ui);
  font-size: 10px;
  letter-spacing: 4px;
  color: #c7ff2e;
  text-transform: uppercase;
  margin-bottom: 44px;
  text-align: center;
}

.mz-orbit {
  width: 540px;
  height: 540px;
  border-radius: 50%;
  position: relative;
  margin: 0 auto;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(var(--accent-rgb),  0.06) 0%, transparent 70%);
  z-index: 2;
}

.mz-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(var(--accent-rgb),  0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.mz-energy-layer {
  position: absolute;
  inset: 0;
  z-index: 9;
  overflow: visible;
  border-radius: 50%;
  pointer-events: none;
}

.mz-energy-ray {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--ray-length, 180px);
  height: 30px;
  transform-origin: 0 50%;
  opacity: 0.9;
  mix-blend-mode: screen;
}

.mz-energy-ray::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  height: 2px;
  transform: translateY(-50%);
  border-radius: 999px;
  background: linear-gradient(90deg, transparent 0%, rgba(236, 255, 131, 0.2) 22%, rgba(245, 255, 197, 0.34) 58%, transparent 100%);
  filter: blur(1.8px);
  opacity: 0.28;
  animation: mz-energy-ray-breathe 4.8s ease-in-out infinite;
  animation-delay: var(--ray-delay, 0s);
}

.mz-energy-ray__base,
.mz-energy-ray__drop {
  position: absolute;
  inset: 0;
  display: block;
  transform-origin: 0 50%;
  border-radius: 999px;
}

.mz-energy-ray__base {
  background:
    linear-gradient(90deg, transparent 0%, rgba(var(--accent-rgb), 0.08) 18%, rgba(236, 255, 131, 0.28) 48%, rgba(var(--accent-rgb), 0.07) 74%, transparent 100%);
  filter: blur(8px);
  opacity: 0.56;
  animation: mz-energy-ray-breathe 4.8s ease-in-out infinite;
  animation-delay: var(--ray-delay, 0s);
}

.mz-energy-ray__drop {
  width: 36%;
  background:
    radial-gradient(ellipse at 82% 50%, rgba(245, 255, 197, 0.52), transparent 42%),
    linear-gradient(90deg, transparent 0%, rgba(236, 255, 131, 0.08) 10%, rgba(236, 255, 131, 0.34) 58%, transparent 100%);
  filter: blur(5px);
  opacity: 0;
  animation: mz-energy-ray-drop 3.4s ease-in-out infinite;
  animation-delay: var(--ray-delay, 0s);
}

@keyframes mz-energy-ray-breathe {
  0% {
    opacity: 0.3;
  }

  46% {
    opacity: 0.62;
  }

  100% {
    opacity: 0.34;
  }
}

@keyframes mz-energy-ray-drop {
  0% {
    opacity: 0;
    transform: translateX(0) scaleX(0.58);
  }

  18% {
    opacity: 0.34;
  }

  64% {
    opacity: 0.48;
    transform: translateX(calc(var(--ray-length, 180px) * 0.64)) scaleX(0.95);
  }

  100% {
    opacity: 0;
    transform: translateX(calc(var(--ray-length, 180px) * 0.84)) scaleX(0.72);
  }
}

.mz-ring--1 {
  width: 230px;
  height: 230px;
}

.mz-ring--2 {
  width: 375px;
  height: 375px;
  animation: mz-ring-pulse 4s ease infinite;
}

.mz-ring--3 {
  width: 510px;
  height: 510px;
  border-style: dashed;
  border-color: rgba(var(--accent-rgb),  0.07);
}

@keyframes mz-ring-pulse {
  0%,
  100% {
    opacity: 0.3;
  }

  50% {
    opacity: 0.8;
    border-color: rgba(var(--accent-rgb),  0.3);
  }
}

.mz-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),  0.3) 0%, rgba(var(--accent-deep-rgb),  0.15) 50%, transparent 70%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.4s ease;
}

.mz-core::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(45deg, #c7ff2e, #9edb1f, #ecff83) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  animation: mz-rotate 4s linear infinite;
}

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

.mz-core__glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb),  0.4) 0%, transparent 70%);
  animation: mz-breathe 3s ease infinite;
  pointer-events: none;
}

@keyframes mz-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }
}

.mz-core__logo {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #efff97, #9edb1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  z-index: 1;
  transition: all 0.4s;
}

.mz-core__desc {
  font-size: 8px;
  letter-spacing: 1.2px;
  color: #a3a68f;
  text-transform: uppercase;
  line-height: 1.4;
  text-align: center;
  padding: 0 6px;
  opacity: 0;
  display: none;
  z-index: 1;
  transition: opacity 0.3s;
}

.mz-orbit.mz-orbit--active .mz-core {
  width: 152px;
  height: 152px;
}

.mz-orbit.mz-orbit--active .mz-core__logo {
  font-size: 15px;
}

.mz-orbit.mz-orbit--active .mz-core__desc {
  display: block;
  opacity: 1;
}

/* Navrhni si akciu orbit layout */
.mz-orbit-stage {
  position: relative;
  width: min(1320px, 100%);
  max-width: 100%;
  overflow: hidden;
  margin: 0 auto;
}

.mz-orbit-stage::before,
.mz-orbit-stage::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.mz-orbit-stage::before {
  z-index: 0;
  width: min(740px, 76vw);
  height: min(740px, 76vw);
  background:
    radial-gradient(circle at 50% 50%, rgba(199, 255, 46, 0.12), rgba(158, 219, 31, 0.055) 34%, transparent 68%);
  filter: blur(22px);
  opacity: 0.78;
}

.mz-orbit-stage::after {
  z-index: 0;
  width: min(940px, 92vw);
  height: min(520px, 58vw);
  background:
    radial-gradient(ellipse at 38% 48%, rgba(199, 255, 46, 0.09), transparent 48%),
    radial-gradient(ellipse at 66% 52%, rgba(239, 255, 151, 0.055), transparent 52%);
  filter: blur(44px);
  opacity: 0.6;
}

.mz-orbit-sideword {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: clamp(84px, 10vw, 130px);
  font-weight: 900;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.mz-orbit-sideword--left {
  left: 0;
}

.mz-orbit-sideword--right {
  right: 0;
}

.mz-orbit::before,
.mz-orbit::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

@media (max-width: 1279px) {
  .mz-orbit-stage {
    width: 100%;
  }

  .mz-orbit-sideword {
    display: none;
  }
}

@media (max-width: 860px) {
  .mz-orbit-stage {
    overflow: clip;
  }

  .mz-orbit {
    left: 50%;
    margin: 0;
    transform: translateX(-50%);
  }
}

@keyframes mz-blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.mz-planets {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
}

.mz-planet {
  position: absolute;
  border-radius: 50%;
  background: rgba(10, 10, 18, 0.95);
  border: 1px solid rgba(var(--accent-rgb),  0.3);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.mz-planet__icon {
  line-height: 1;
}

.mz-planet__label {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: uppercase;
  color: #a3a68f;
  text-align: center;
  line-height: 1.2;
  padding: 0 3px;
}

.mz-divider {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(660px, 100%);
  min-height: 118px;
  align-items: center;
  justify-content: center;
  margin: 48px auto 40px;
  gap: 12px;
  text-align: center;
}

.mz-divider::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.24), rgba(var(--accent-rgb), 0.06), transparent);
}

.mz-divider::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(560px, 90vw);
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.12), rgba(245, 245, 239, 0.12), rgba(var(--accent-rgb), 0.12), transparent);
}

.mz-divider__label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 9px;
  padding: 8px 16px;
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.12), transparent 62%),
    rgba(8, 10, 15, 0.94);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.28),
    0 0 0 6px rgba(5, 5, 8, 0.72),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #d8ff5a;
  text-transform: uppercase;
  white-space: nowrap;
}

.mz-divider__label::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--brand-primary);
  box-shadow: none;
}

.mz-card-wrap {
  width: 100%;
  max-width: 660px;
  margin: 0 auto;
}

.mz-card-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding: 0 4px;
}

.mz-card-badge__dot {
  width: 7px;
  height: 7px;
  background: #efff97;
  border-radius: 50%;
  box-shadow: 0 0 10px #efff97;
  animation: mz-blink 2s ease-in-out infinite;
}

.mz-card-badge__text {
  font-family: var(--font-ui);
  font-size: 10px;
  color: #efff97;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0.8;
}

.mz-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 40px rgba(var(--accent-rgb),  0.08);
}

.mz-card__border {
  padding: 2px;
  border-radius: 22px;
  background: linear-gradient(135deg, #c7ff2e, #9edb1f, #efff97, #c7ff2e);
  background-size: 300% 300%;
  animation: mz-grad 4s linear infinite;
}

.mz-card.mz-card--premium .mz-card__border {
  background: linear-gradient(135deg, #d8ff5a, #c7ff2e, #9edb1f, #d8ff5a);
  animation: mz-grad 1.5s linear infinite;
  box-shadow: 0 0 40px rgba(239,255,151,  0.2);
}

@keyframes mz-grad {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.mz-card__inner {
  background: #0a0a14;
  border-radius: 20px;
  overflow: hidden;
}

.mz-card__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px 14px;
  border-bottom: 1px solid rgba(var(--accent-rgb),  0.12);
  background: linear-gradient(180deg, rgba(var(--accent-rgb),  0.05) 0%, transparent 100%);
}

.mz-card__logo-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mz-card__brain {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  animation: mz-float 3s ease-in-out infinite;
  filter: drop-shadow(0 0 8px rgba(var(--accent-rgb),  0.6));
}

@keyframes mz-float {
  0%,
  100% {
    transform: translateY(0);
  }

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

.mz-card__name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, #fff 0%, #c7ff2e 50%, #9edb1f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.mz-card__sub {
  font-family: var(--font-ui);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 2px;
}

.mz-card__status {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(var(--accent-rgb),  0.06);
  border: 1px solid rgba(var(--accent-rgb),  0.25);
  border-radius: 20px;
  padding: 5px 12px;
}

.mz-card__status-dot {
  width: 5px;
  height: 5px;
  background: #efff97;
  border-radius: 50%;
  box-shadow: 0 0 6px #efff97;
  animation: mz-blink 1.5s ease-in-out infinite;
}

.mz-card__status-text {
  font-family: var(--font-ui);
  font-size: 9px;
  color: #efff97;
  letter-spacing: 1px;
}

.mz-card__intro {
  padding: 22px 24px 0;
}

.mz-card__tagline {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.mz-card__headline {
  font-size: clamp(18px, 3.5vw, 26px);
  font-weight: 900;
  line-height: 1.15;
  font-family: var(--font-display);
  margin-bottom: 6px;
}

.mz-card__headline span {
  background: linear-gradient(90deg, #c7ff2e, #9edb1f);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mz-planner {
  padding: 20px 24px;
}

.mz-label-line {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 3px;
  color: #c7ff2e;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mz-label-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),  0.5), transparent);
}

.mz-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.mz-form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mz-form-group--full {
  grid-column: 1 / -1;
}

.mz-need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.mz-need-btn {
  min-height: 50px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: #f5f5ef;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.mz-need-btn:hover {
  border-color: rgba(var(--accent-rgb),  0.45);
  background: rgba(var(--accent-rgb),  0.07);
  transform: translateY(-1px);
}

.mz-need-btn.is-active {
  border-color: rgba(var(--accent-rgb),  0.5);
  background: rgba(var(--accent-rgb),  0.12);
  box-shadow: 0 12px 24px rgba(7, 9, 16, 0.2);
}

.mz-form-label {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mz-select {
  background: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(var(--accent-rgb),  0.2);
  border-radius: 10px;
  padding: 11px 36px 11px 14px;
  color: #f5f5ef;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  outline: none;
  transition: all 0.25s;
  width: 100%;
  cursor: pointer;
  appearance: none;
  background-image: url("../assets/images/ui/select-chevron-bright.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
}

.mz-select:focus {
  border-color: rgba(var(--accent-rgb),  0.7);
  background-color: rgba(var(--accent-rgb),  0.06);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),  0.1);
}

.mz-select option {
  background: #0f0f1e;
  color: #f5f5ef;
}

.mz-budget {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mz-budget__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mz-budget__amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 20px;
  background: linear-gradient(90deg, #9edb1f, #c7ff2e, #d8ff5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s;
}

.mz-budget__pill {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid;
  transition: all 0.4s;
}

.mz-budget__pill.zone-micro {
  color: #d4b15f;
  border-color: rgba(212, 177, 95, 0.38);
  background: rgba(212, 177, 95, 0.08);
}

.mz-budget__pill.zone-low {
  color: #9edb1f;
  border-color: rgba(var(--accent-deep-rgb),  0.4);
  background: rgba(var(--accent-deep-rgb),  0.08);
}

.mz-budget__pill.zone-mid {
  color: #c7ff2e;
  border-color: rgba(var(--accent-rgb),  0.4);
  background: rgba(var(--accent-rgb),  0.08);
}

.mz-budget__pill.zone-high {
  color: #d8ff5a;
  border-color: rgba(239,255,151,  0.4);
  background: rgba(239,255,151,  0.08);
}

.mz-budget__slider {
  width: 100%;
  height: 6px;
  appearance: none;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  background: linear-gradient(90deg, #9edb1f 0%, #9edb1f 8.3%, #c7ff2e 8.3%, #c7ff2e 33.3%, #d8ff5a 33.3%, #d8ff5a 100%);
}

.mz-budget__slider::-webkit-slider-thumb {
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),  0.4), 0 4px 14px rgba(0, 0, 0, 0.4);
  transition: transform 0.2s;
}

.mz-budget__slider::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.mz-budget__slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  border: none;
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),  0.4), 0 4px 14px rgba(0, 0, 0, 0.4);
  cursor: pointer;
}

.mz-budget__bar {
  display: grid;
  grid-template-columns: 8.3fr 25fr 66.7fr;
  gap: 3px;
}

.mz-bz {
  font-family: var(--font-ui);
  font-size: 7.5px;
  letter-spacing: 0.5px;
  text-align: center;
  padding: 3px 0;
  border-radius: 3px;
  opacity: 0.4;
  transition: opacity 0.3s, transform 0.3s;
}

.mz-bz--active {
  opacity: 1;
  transform: scaleY(1.15);
}

.mz-bz--low {
  background: rgba(var(--accent-deep-rgb),  0.15);
  color: #9edb1f;
}

.mz-bz--mid {
  background: rgba(var(--accent-rgb),  0.15);
  color: #c7ff2e;
}

.mz-bz--high {
  background: rgba(239,255,151,  0.15);
  color: #d8ff5a;
}

.mz-budget__tip {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  letter-spacing: 1px;
  min-height: 14px;
  transition: all 0.3s;
  font-style: italic;
}

.mz-range-wrap {
  padding-top: 20px;
  position: relative;
}

.mz-range-val {
  position: absolute;
  right: 0;
  top: 0;
  font-family: var(--font-ui);
  font-size: 11px;
  color: #c7ff2e;
  font-weight: 700;
}

.mz-range {
  width: 100%;
  height: 5px;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  outline: none;
  cursor: pointer;
}

.mz-range::-webkit-slider-thumb {
  appearance: none;
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #c7ff2e, #9edb1f);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(var(--accent-rgb),  0.7);
  transition: transform 0.2s;
}

.mz-range::-webkit-slider-thumb:hover {
  transform: scale(1.25);
}

.mz-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, #c7ff2e, #9edb1f);
  border-radius: 50%;
  cursor: pointer;
  border: none;
  box-shadow: 0 0 10px rgba(var(--accent-rgb),  0.7);
}

.mz-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 6px;
}

.mz-range-labels span {
  font-family: var(--font-ui);
  font-size: 8px;
  color: var(--text-muted);
}

.mz-priority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.mz-priority-btn {
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 6px;
  cursor: pointer;
  text-align: center;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: #f5f5ef;
  font-family: inherit;
}

.mz-priority-btn:hover {
  border-color: rgba(var(--accent-rgb),  0.45);
  background: rgba(var(--accent-rgb),  0.07);
  transform: translateY(-2px);
}

.mz-priority-btn.mz-priority-btn--active {
  border-color: #c7ff2e;
  background: rgba(var(--accent-rgb),  0.13);
  box-shadow: 0 0 20px rgba(var(--accent-rgb),  0.2);
}

.mz-priority-btn__emoji {
  font-size: 22px;
  line-height: 1;
}

.mz-priority-btn__label {
  font-family: var(--font-ui);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  line-height: 1.3;
}

.mz-priority-btn.mz-priority-btn--active .mz-priority-btn__label {
  color: #c7ff2e;
}

.mz-generate-wrap {
  margin-top: 18px;
}

.mz-generate-btn {
  width: 100%;
  background: linear-gradient(135deg, #c7ff2e 0%, #9edb1f 100%);
  border: none;
  border-radius: 14px;
  padding: 16px 20px;
  color: #111303;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 8px 30px rgba(var(--accent-rgb),  0.35);
  position: relative;
  overflow: hidden;
}

.mz-generate-btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.mz-generate-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(var(--accent-rgb),  0.55);
}

.mz-generate-btn:hover::after {
  opacity: 1;
}

.mz-generate-btn__arrow {
  font-size: 16px;
  transition: transform 0.3s;
}

.mz-generate-btn:hover .mz-generate-btn__arrow {
  transform: translateX(5px);
}

.mz-error-hint {
  font-family: var(--font-ui);
  font-size: 9px;
  color: #d4b15f;
  margin-top: 7px;
  text-align: center;
  opacity: 0;
  transition: opacity 0.3s;
  letter-spacing: 1px;
}

.mz-error-hint.mz-error-hint--show {
  opacity: 1;
}

.mz-thinking {
  display: none;
  padding: 32px 24px;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.mz-thinking.mz-thinking--show {
  display: flex;
}

.mz-thinking__dots {
  display: flex;
  gap: 10px;
}

.mz-thinking__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c7ff2e, #9edb1f);
}

.mz-thinking__dot:nth-child(1) {
  animation: mz-bounce 1.2s ease-in-out infinite 0s;
}

.mz-thinking__dot:nth-child(2) {
  animation: mz-bounce 1.2s ease-in-out infinite 0.2s;
}

.mz-thinking__dot:nth-child(3) {
  animation: mz-bounce 1.2s ease-in-out infinite 0.4s;
}

@keyframes mz-bounce {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(-12px);
    opacity: 1;
    box-shadow: 0 0 14px rgba(var(--accent-rgb),  0.9);
  }
}

.mz-thinking__label {
  font-family: var(--font-ui);
  font-size: 11px;
  color: #c7ff2e;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: mz-blink 1s ease-in-out infinite;
}

.mz-thinking__bar {
  width: 200px;
  height: 2px;
  background: rgba(255, 255, 255, 0.07);
  border-radius: 2px;
  overflow: hidden;
}

.mz-thinking__fill {
  height: 100%;
  background: linear-gradient(90deg, #c7ff2e, #9edb1f, #efff97);
  border-radius: 2px;
  animation: mz-progress 1.5s ease-in-out infinite;
}

@keyframes mz-progress {
  0% {
    width: 0%;
    margin-left: 0%;
  }

  50% {
    width: 60%;
    margin-left: 20%;
  }

  100% {
    width: 0%;
    margin-left: 100%;
  }
}

.mz-result {
  display: none;
  padding: 0 24px 24px;
}

.mz-result.mz-result--show {
  display: block;
  animation: mz-slide-up 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mz-slide-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.mz-result__label {
  font-family: var(--font-ui);
  font-size: 9px;
  letter-spacing: 3px;
  color: #efff97;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mz-result__label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-rgb),  0.42), transparent);
}

.mz-result__msg {
  background: rgba(var(--accent-rgb),  0.05);
  border: 1px solid rgba(var(--accent-rgb),  0.18);
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 14px;
  font-family: var(--font-ui);
  font-size: 11px;
  line-height: 1.8;
  color: rgba(240, 240, 255, 0.85);
  min-height: 56px;
}

.mz-cursor {
  display: inline-block;
  width: 7px;
  height: 13px;
  background: #c7ff2e;
  margin-left: 2px;
  vertical-align: middle;
  animation: mz-cur 0.8s step-end infinite;
}

@keyframes mz-cur {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.mz-modules {
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.mz-module {
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 14px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(-10px);
  transition: border-color 0.3s, background 0.3s;
}

.mz-module.mz-module--in {
  animation: mz-mod-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mz-mod-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.mz-module:hover {
  border-color: rgba(var(--accent-rgb),  0.35);
  background: rgba(var(--accent-rgb),  0.05);
  transform: translateX(5px) !important;
}

.mz-module__icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(var(--accent-rgb),  0.18), rgba(var(--accent-deep-rgb),  0.1));
  border: 1px solid rgba(var(--accent-rgb),  0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.mz-module__name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 13px;
  margin-bottom: 3px;
}

.mz-module__desc {
  font-family: var(--font-ui);
  font-size: 9px;
  color: var(--text-muted);
  line-height: 1.5;
}

.mz-module__badge {
  background: linear-gradient(135deg, rgba(var(--accent-rgb),  0.18), rgba(var(--accent-deep-rgb),  0.1));
  border: 1px solid rgba(var(--accent-rgb),  0.35);
  border-radius: 8px;
  padding: 4px 8px;
  font-family: var(--font-ui);
  font-size: 8px;
  color: #c7ff2e;
  white-space: nowrap;
  flex-shrink: 0;
}

.mz-summary {
  background: rgba(var(--accent-rgb),  0.05);
  border: 1px solid rgba(var(--accent-rgb),  0.15);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.mz-sum-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mz-sum-key {
  font-family: var(--font-ui);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.mz-sum-val {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  color: #efff97;
}

.mz-cta-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
}

.mz-cta-approve {
  background: linear-gradient(135deg, #c7ff2e, #9edb1f);
  border: none;
  border-radius: 12px;
  padding: 14px 18px;
  color: #111303;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 8px 28px rgba(var(--accent-rgb),  0.3);
}

.mz-cta-approve:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(var(--accent-rgb),  0.5);
}

.mz-cta-reset {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--text-muted);
  font-family: var(--font-ui);
  font-size: 10px;
  cursor: pointer;
  transition: all 0.3s;
  white-space: nowrap;
}

.mz-cta-reset:hover {
  border-color: rgba(255, 255, 255, 0.2);
  color: #f5f5ef;
}

.mz-tier-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.mz-tier-badge--low {
  background: rgba(var(--accent-deep-rgb),  0.1);
  border: 1px solid rgba(var(--accent-deep-rgb),  0.35);
  color: #9edb1f;
}

.mz-tier-badge--mid {
  background: rgba(var(--accent-rgb),  0.12);
  border: 1px solid rgba(var(--accent-rgb),  0.4);
  color: #c7ff2e;
}

.mz-tier-badge--high {
  background: rgba(239,255,151,  0.1);
  border: 1px solid rgba(239,255,151,  0.4);
  color: #d8ff5a;
}

.mz-tier-note {
  background: rgba(var(--accent-deep-rgb),  0.05);
  border-left: 3px solid rgba(var(--accent-deep-rgb),  0.5);
  border-radius: 0 8px 8px 0;
  padding: 10px 12px;
  font-family: var(--font-ui);
  font-size: 10px;
  color: rgba(240, 240, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 14px;
}

.mz-tier-note--low {
  border-left-color: rgba(var(--accent-deep-rgb),  0.6);
  background: rgba(var(--accent-deep-rgb),  0.05);
}

.mz-tier-note--mid {
  border-left-color: rgba(var(--accent-rgb),  0.6);
  background: rgba(var(--accent-rgb),  0.05);
}

.mz-tier-note--high {
  border-left-color: rgba(239,255,151,  0.6);
  background: rgba(239,255,151,  0.05);
}

.mz-ebook {
  background: rgba(255, 107, 107, 0.04);
  border: 1px solid rgba(255, 107, 107, 0.2);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.mz-ebook__icon {
  font-size: 44px;
  line-height: 1;
}

.mz-ebook__title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 15px;
  color: var(--brand-highlight);
  letter-spacing: 1px;
}

.mz-ebook__desc {
  font-family: var(--font-ui);
  font-size: 10px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 360px;
}

.mz-ebook__btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.mz-ebook__btn {
  padding: 10px 18px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}

.mz-ebook__btn--primary {
  background: linear-gradient(135deg, #d8ff5a, #9edb1f);
  color: #111303;
  box-shadow: 0 8px 24px rgba(var(--accent-rgb),  0.24);
}

.mz-ebook__btn--primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.mz-ebook__btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mz-ebook__btn--secondary:hover {
  color: #f5f5ef;
  border-color: rgba(255, 255, 255, 0.25);
}

.mz-card__footer {
  padding: 12px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mz-card__footer-l {
  font-family: var(--font-ui);
  font-size: 8px;
  color: var(--text-muted);
  letter-spacing: 1px;
}

.mz-card__footer-r {
  font-family: var(--font-ui);
  font-size: 8px;
  color: rgba(var(--accent-rgb),  0.45);
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mz-card__footer-dot {
  width: 5px;
  height: 5px;
  background: rgba(var(--accent-rgb),  0.5);
  border-radius: 50%;
}

@media (max-width: 600px) {
  .mz-orbit {
    width: 300px !important;
    height: 300px !important;
  }

  .mz-orbit-stage::before {
    width: 340px;
    height: 340px;
    opacity: 0.54;
    filter: blur(20px);
  }

  .mz-orbit-stage::after {
    width: 420px;
    height: 280px;
    opacity: 0.34;
  }

  .mz-energy-ray {
    height: 24px;
  }

  .mz-energy-ray__base {
    filter: blur(6px);
    opacity: 0.52;
  }

  .mz-energy-ray__drop {
    filter: blur(4px);
  }

  .mz-ring--1 {
    width: 128px;
    height: 128px;
  }

  .mz-ring--2 {
    width: 208px;
    height: 208px;
  }

  .mz-ring--3 {
    width: 285px;
    height: 285px;
  }

  .mz-form-grid {
    grid-template-columns: 1fr;
  }

  .mz-need-grid {
    grid-template-columns: 1fr;
  }

  .mz-cta-row {
    grid-template-columns: 1fr;
  }

  .mz-card__topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .mz-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mz-energy-layer {
    display: none;
  }

}

@media (min-width: 601px) and (max-width: 860px) {
  .mz-orbit {
    width: 380px !important;
    height: 380px !important;
  }

  .mz-ring--1 {
    width: 162px;
    height: 162px;
  }

  .mz-ring--2 {
    width: 263px;
    height: 263px;
  }

  .mz-ring--3 {
    width: 358px;
    height: 358px;
  }
}

/* ===== CLEAN VISUAL RESET: menej farieb, viac prehladu a dovery ===== */
.mz-section {
  --mz-primary: #c7ff2e;
  --mz-primary-soft: #d8ff5a;
  --mz-secondary: #9edb1f;
  --mz-bg: #090b11;
  --mz-surface: #11141c;
  --mz-surface-soft: #171b25;
  --mz-border: rgba(255, 255, 255, 0.09);
  --mz-border-strong: rgba(var(--accent-rgb),  0.28);
  --mz-text: #f5f7ff;
  --mz-muted: #a9b1c5;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.035), transparent 13%),
    radial-gradient(ellipse at 50% 58%, rgba(var(--accent-rgb), 0.105), transparent 42%),
    radial-gradient(ellipse at 50% 12%, rgba(var(--accent-deep-rgb), 0.12), transparent 34%),
    linear-gradient(180deg, #090b10 0%, #10131a 42%, #08090e 100%);
  color: var(--mz-text);
  font-family: var(--font-body);
  padding: 100px 40px 88px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.045),
    inset 0 -1px 0 rgba(var(--accent-rgb), 0.08),
    0 -28px 70px rgba(0,0,0,0.34),
    0 32px 80px rgba(0,0,0,0.32);
}

.mz-section::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(rgba(199,255,46,0.032) 1px, transparent 1px),
    linear-gradient(90deg, rgba(199,255,46,0.024) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 52%, rgba(0,0,0,0.72), transparent 72%);
  opacity: 0.52;
}

.mz-section::after {
  content: '';
  position: absolute;
  inset: 84px 0 auto;
  z-index: -1;
  width: min(980px, 86vw);
  height: 520px;
  margin: 0 auto;
  border-radius: 999px;
  pointer-events: none;
  background:
    radial-gradient(ellipse at center, rgba(var(--accent-rgb), 0.13), rgba(var(--accent-rgb), 0.04) 36%, transparent 70%);
  filter: blur(18px);
  opacity: 0.72;
}

.mz-orbit-wrap,
.mz-divider,
.mz-wizard {
  position: relative;
  z-index: 1;
}

.mz-toast {
  background: linear-gradient(135deg, var(--mz-primary), var(--mz-secondary));
  color: #111303;
  border-radius: 14px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0.02em;
  box-shadow: 0 20px 60px rgba(9, 12, 24, 0.35);
}

.mz-overlay {
  background: rgba(8, 10, 16, 0.94);
}

.mz-overlay__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: #dde1f0;
  animation: none;
}

.mz-orbit-wrap {
  margin-bottom: 12px;
  padding-top: 4px;
}

.mz-orbit-title {
  background: none;
  -webkit-text-fill-color: initial;
  color: #ffffff;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin-bottom: 10px;
}

.mz-orbit-wrap .section-label-orbit {
  margin-bottom: 10px;
}

.mz-section-line {
  width: 96px;
  margin: 0 auto 14px;
}

.mz-orbit-sub {
  max-width: 560px;
  margin-bottom: 26px;
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mz-muted);
}

.mz-orbit {
  background:
    radial-gradient(circle at 50% 50%, rgba(20, 18, 14, 0.34) 0%, rgba(20, 18, 14, 0.12) 42%, transparent 72%),
    radial-gradient(circle at 52% 48%, rgba(var(--accent-rgb), 0.08) 0%, transparent 60%);
  box-shadow: 0 0 80px rgba(255, 244, 214, 0.03);
}

.mz-ring {
  border-color: rgba(var(--accent-rgb), 0.1);
  opacity: 0.42;
}

.mz-ring--1 {
  width: 236px;
  height: 236px;
}

.mz-ring--2 {
  width: 392px;
  height: 392px;
  border-color: rgba(var(--accent-rgb), 0.14);
  animation: none;
}

.mz-ring--3 {
  width: 510px;
  height: 510px;
  border-style: dashed;
  border-color: rgba(var(--accent-rgb), 0.06);
}

@media (max-width: 600px) {
  .mz-ring--1 {
    width: 128px;
    height: 128px;
  }

  .mz-ring--2 {
    width: 208px;
    height: 208px;
  }

  .mz-ring--3 {
    width: 285px;
    height: 285px;
  }
}

.mz-core {
  width: 136px;
  height: 136px;
  background: radial-gradient(circle at 50% 32%, rgba(34, 33, 26, 0.96), rgba(11, 10, 9, 0.98) 72%);
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  box-shadow: 0 22px 44px rgba(5, 7, 13, 0.46);
}

.mz-core::before {
  background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.9), rgba(var(--accent-deep-rgb), 0.5)) border-box;
  animation: none;
}

.mz-core__glow {
  inset: -20px;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.06) 0%, transparent 70%);
  animation: none;
  opacity: 0.42;
}

.mz-core::after {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 30%, rgba(18, 18, 14, 0.9), rgba(3, 4, 4, 0.98) 76%);
  z-index: 0;
}

.mz-core__logo {
  background: none;
  -webkit-text-fill-color: initial;
  color: #ffffff;
  font-size: 30px;
  font-weight: 800;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.24);
}

.mz-core__meta {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #d8ff5a;
  line-height: 1;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.mz-core__desc {
  display: block;
  opacity: 1;
  margin-top: 8px;
  max-width: 126px;
  padding: 0 6px;
  font-family: var(--font-body);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.38;
  letter-spacing: 0;
  color: rgba(245, 245, 239, 0.9);
  text-transform: none;
  position: relative;
  z-index: 1;
  text-shadow: none;
}

.mz-orbit.mz-orbit--active .mz-core {
  width: 176px;
  height: 176px;
  box-shadow:
    0 26px 56px rgba(5, 7, 13, 0.5),
    0 0 0 1px rgba(var(--accent-rgb), 0.1);
}

.mz-orbit.mz-orbit--active .mz-core__logo {
  font-size: 16px;
}

.mz-orbit.mz-orbit--active .mz-core__meta {
  font-size: 8px;
}

.mz-planet {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(18, 21, 30, 0.98), rgba(10, 12, 18, 0.96));
  border: 1px solid rgba(var(--accent-rgb), 0.3);
  box-shadow:
    0 18px 36px rgba(5, 7, 13, 0.32),
    inset 0 0 18px rgba(var(--accent-rgb), 0.08);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.mz-planet::before {
  content: '';
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--accent-rgb), 0.16) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mz-planet.is-active {
  border-color: var(--planet-color, var(--brand-primary));
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.08), transparent 62%),
    linear-gradient(180deg, rgba(18, 21, 30, 0.98), rgba(10, 12, 18, 0.96));
  box-shadow:
    0 0 26px var(--planet-color, var(--brand-primary)),
    0 0 54px rgba(var(--accent-rgb), 0.2),
    inset 0 0 22px rgba(var(--accent-rgb), 0.12);
}

.mz-planet.is-active::before {
  opacity: 1;
}

.mz-planet.is-active .mz-planet__label,
.mz-planet:hover .mz-planet__label {
  color: #ffffff;
}

.mz-planet__label {
  font-family: var(--font-body);
  font-weight: 700;
  color: rgba(240, 243, 255, 0.92);
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0 6px;
  max-width: 100%;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.mz-divider {
  margin: 52px auto 44px;
}

.mz-divider::before {
  background: linear-gradient(180deg, transparent, rgba(var(--accent-rgb), 0.22), rgba(var(--accent-rgb), 0.055), transparent);
}

.mz-divider::after {
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.1), rgba(245, 245, 239, 0.12), rgba(var(--accent-rgb), 0.1), transparent);
}

.mz-divider__label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #d8ff5a;
}

.mz-card-wrap {
  max-width: 720px;
}

.mz-card {
  border-radius: 28px;
  box-shadow: 0 30px 70px rgba(5, 7, 13, 0.42);
}

.mz-card__border,
.mz-card.mz-card--premium .mz-card__border {
  padding: 1px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(var(--accent-rgb),  0.42), rgba(var(--accent-deep-rgb),  0.16));
  animation: none;
  box-shadow: none;
}

.mz-card__inner {
  background: linear-gradient(180deg, rgba(17, 20, 28, 0.98), rgba(10, 12, 18, 0.98));
  border-radius: 27px;
}

.mz-card__topbar {
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(var(--accent-rgb),  0.05) 0%, transparent 100%);
}

.mz-card__brain {
  width: 42px;
  height: 42px;
  animation: none;
  filter: none;
}

.mz-card__name {
  background: none;
  -webkit-text-fill-color: initial;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.mz-card__sub {
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--mz-muted);
}

.mz-card__intro {
  padding: 24px 28px 0;
}

.mz-card__tagline {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #cdd3e2;
}

.mz-card__headline {
  margin-bottom: 4px;
  font-family: var(--font-body);
  font-size: clamp(28px, 4.3vw, 38px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.mz-card__headline span {
  background: none;
  -webkit-text-fill-color: initial;
  color: #d8ff5a;
}

.mz-planner {
  padding: 24px 28px 28px;
}

.mz-label-line {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #b2b8ca;
}

.mz-label-line::after {
  background: linear-gradient(90deg, rgba(var(--accent-rgb),  0.2), transparent);
}

.mz-form-grid {
  gap: 16px;
  margin-bottom: 16px;
}

.mz-form-group {
  gap: 8px;
}

.mz-form-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: #cfd5e4;
}

.mz-select {
  min-height: 54px;
  padding: 14px 44px 14px 16px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--mz-border);
  border-radius: 14px;
  color: #f5f7ff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  background-image: url("../assets/images/ui/select-chevron-bright.svg");
}

.mz-select:focus {
  border-color: rgba(var(--accent-rgb),  0.45);
  background-color: rgba(var(--accent-rgb),  0.04);
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb),  0.08);
}

.mz-budget__amount {
  background: none;
  -webkit-text-fill-color: initial;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 800;
}

.mz-budget__pill,
.mz-tier-badge,
.mz-module__badge {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.mz-budget__pill.zone-micro {
  color: #d4b15f;
  border-color: rgba(212, 177, 95, 0.32);
  background: rgba(212, 177, 95, 0.08);
}

.mz-budget__pill.zone-low,
.mz-tier-badge--low {
  color: var(--mz-secondary);
  border-color: rgba(var(--accent-deep-rgb),  0.34);
  background: rgba(var(--accent-deep-rgb),  0.08);
}

.mz-budget__pill.zone-mid,
.mz-tier-badge--mid {
  color: var(--mz-primary-soft);
  border-color: rgba(var(--accent-rgb),  0.36);
  background: rgba(var(--accent-rgb),  0.1);
}

.mz-budget__pill.zone-high,
.mz-tier-badge--high {
  color: #d4c8ff;
  border-color: rgba(var(--accent-rgb),  0.4);
  background: rgba(var(--accent-rgb),  0.15);
}

.mz-budget__slider {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--accent-deep-rgb),  0.95) 0%, rgba(var(--accent-deep-rgb),  0.95) 18%, rgba(var(--accent-rgb),  0.95) 18%, rgba(var(--accent-rgb),  0.95) 100%);
}

.mz-budget__slider::-webkit-slider-thumb,
.mz-budget__slider::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(var(--accent-rgb),  0.16), 0 8px 18px rgba(0, 0, 0, 0.25);
}

.mz-bz {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.mz-bz--low {
  background: rgba(var(--accent-deep-rgb),  0.1);
  color: var(--mz-secondary);
}

.mz-bz--mid {
  background: rgba(var(--accent-rgb),  0.14);
  color: var(--mz-primary-soft);
}

.mz-bz--high {
  background: rgba(var(--accent-rgb),  0.08);
  color: #d4c8ff;
}

.mz-budget__tip,
.mz-range-labels span,
.mz-module__desc,
.mz-tier-note,
.mz-ebook__desc,
.mz-sum-key,
.mz-card__footer-l,
.mz-card__footer-r {
  font-family: var(--font-body);
  letter-spacing: 0;
  color: var(--mz-muted);
}

.mz-range-wrap {
  padding-top: 24px;
}

.mz-range-val {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  color: #d9deee;
}

.mz-range {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.mz-range::-webkit-slider-thumb,
.mz-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(135deg, var(--mz-primary), var(--mz-secondary));
  box-shadow: 0 10px 18px rgba(var(--accent-deep-rgb),  0.22);
}

.mz-range-labels {
  margin-top: 8px;
}

.mz-range-labels span {
  font-size: 11px;
}

.mz-priority-grid {
  gap: 8px;
}

.mz-priority-btn {
  min-height: 82px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--mz-border);
  border-radius: 16px;
  justify-content: center;
  gap: 2px;
}

.mz-priority-btn:hover {
  border-color: rgba(var(--accent-rgb),  0.34);
  background: rgba(var(--accent-rgb),  0.06);
  transform: translateY(-1px);
}

.mz-priority-btn.mz-priority-btn--active {
  border-color: rgba(var(--accent-rgb),  0.5);
  background: rgba(var(--accent-rgb),  0.1);
  box-shadow: 0 12px 24px rgba(7, 9, 16, 0.2);
}

.mz-priority-btn__emoji {
  display: none !important;
  width: 0;
  height: 0;
  margin: 0;
}

.mz-priority-btn__label {
  font-family: var(--font-body);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: transparent;
  line-height: 0;
  min-height: 0;
}

.mz-priority-btn__label::before {
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0;
  background: linear-gradient(90deg, var(--mz-primary-soft), var(--mz-secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.mz-priority-btn[data-value="energia"] .mz-priority-btn__label::before { content: 'Show energia'; }
.mz-priority-btn[data-value="elegancia"] .mz-priority-btn__label::before { content: 'Pohoda'; }
.mz-priority-btn[data-value="pohoda"] .mz-priority-btn__label::before { content: 'Zabava'; }

.mz-priority-btn__desc {
  font-family: var(--font-body);
  font-size: 10px;
  line-height: 1.3;
  color: var(--mz-muted);
  margin: 0;
  max-width: 220px;
}

.mz-priority-btn.mz-priority-btn--active .mz-priority-btn__label {
  color: #ffffff;
}

.mz-priority-btn.mz-priority-btn--active .mz-priority-btn__desc {
  color: #dbe1f2;
}

.mz-generate-wrap {
  margin-top: 22px;
}

.mz-generate-btn,
.mz-cta-approve {
  background: linear-gradient(135deg, var(--mz-primary), var(--mz-secondary));
  border-radius: 16px;
  color: #111303;
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 22px 40px rgba(var(--accent-deep-rgb),  0.2);
}

.mz-generate-btn {
  min-height: 58px;
  padding: 18px 24px;
  font-size: 14px;
}

.mz-generate-btn::after {
  display: none;
}

.mz-generate-btn:hover,
.mz-cta-approve:hover {
  transform: translateY(-1px);
  box-shadow: 0 24px 44px rgba(var(--accent-deep-rgb),  0.26);
}

.mz-generate-btn__arrow {
  font-size: 18px;
}

.mz-error-hint {
  margin-top: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0;
  color: #d4b15f;
}

.mz-thinking {
  padding: 20px 0 0;
}

.mz-thinking__dot {
  background: linear-gradient(135deg, var(--mz-primary), var(--mz-secondary));
}

.mz-thinking__label,
.mz-result__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mz-thinking__label {
  color: #cfd5e4;
  animation: none;
}

.mz-thinking__fill {
  background: linear-gradient(90deg, var(--mz-primary), var(--mz-secondary));
}

.mz-result {
  padding: 20px 0 0;
}

.mz-quick-offer {
  margin-top: 14px;
  padding: 20px;
  border-top: 0;
  border-radius: 18px;
}

.mz-quick-offer[hidden] {
  display: none !important;
}

.mz-quick-offer__context {
  margin-top: 14px;
}

.mz-quick-offer__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.mz-quick-card {
  position: relative;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid var(--mz-border);
  background: rgba(255, 255, 255, 0.03);
}

.mz-quick-card.is-recommended {
  border-color: rgba(var(--accent-rgb),  0.36);
  background:
    radial-gradient(circle at top right, rgba(var(--accent-deep-rgb),  0.08), transparent 32%),
    linear-gradient(180deg, rgba(var(--accent-rgb),  0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.16);
}

.mz-quick-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.mz-quick-card__name {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 800;
  color: #ffffff;
}

.mz-quick-card__badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb),  0.14);
  border: 1px solid rgba(var(--accent-rgb),  0.28);
  color: #d8deff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mz-quick-card__price {
  margin-top: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
  color: #ffffff;
}

.mz-quick-card__desc {
  margin-top: 10px;
  min-height: 42px;
  color: #cbd3e8;
  font-size: 13px;
  line-height: 1.6;
}

.mz-quick-card__cta {
  width: 100%;
  margin-top: 14px;
}

.mz-result__label {
  color: #cfd5e4;
}

.mz-result__label::after {
  background: linear-gradient(90deg, rgba(var(--accent-rgb),  0.22), transparent);
}

.mz-result__msg,
.mz-summary,
.mz-module,
.mz-tier-note,
.mz-ebook {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--mz-border);
}

.mz-result__msg {
  border-radius: 14px;
  padding: 16px 18px;
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.7;
  color: rgba(245, 247, 255, 0.88);
}

.mz-cursor {
  background: var(--mz-primary-soft);
}

.mz-module {
  border-radius: 16px;
  padding: 16px;
}

.mz-module:hover {
  border-color: rgba(var(--accent-rgb),  0.28);
  background: rgba(var(--accent-rgb),  0.05);
  transform: translateX(4px) !important;
}

.mz-module__icon {
  background: linear-gradient(135deg, rgba(var(--accent-rgb),  0.14), rgba(var(--accent-deep-rgb),  0.08));
  border: 1px solid rgba(var(--accent-rgb),  0.18);
}

.mz-module__name,
.mz-sum-val,
.mz-ebook__title {
  font-family: var(--font-body);
  color: #ffffff;
}

.mz-module__name {
  font-size: 14px;
}

.mz-module__badge {
  border: 1px solid rgba(var(--accent-rgb),  0.28);
  color: #d8dcc4;
  background: rgba(var(--accent-rgb),  0.1);
}

.mz-ebook__title {
  color: var(--brand-highlight);
}

.mz-summary {
  border-radius: 14px;
  padding: 14px 16px;
}

.mz-sum-key {
  font-size: 10px;
  text-transform: uppercase;
}

.mz-sum-val {
  font-size: 13px;
  font-weight: 700;
}

.mz-cta-row {
  gap: 10px;
}

.mz-cta-approve {
  padding: 16px 20px;
  font-size: 12px;
}

.mz-cta-reset,
.mz-ebook__btn--secondary {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--mz-border);
  border-radius: 14px;
  color: #c5ccdd;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.mz-cta-reset:hover,
.mz-ebook__btn--secondary:hover {
  border-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.mz-tier-note {
  border-left: 3px solid rgba(var(--accent-rgb),  0.28);
  border-radius: 0 10px 10px 0;
  line-height: 1.65;
}

.mz-ebook {
  border-radius: 18px;
  padding: 22px 20px;
}

.mz-ebook__title {
  font-size: 18px;
}

.mz-ebook__btn {
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.mz-ebook__btn--primary {
  background: linear-gradient(135deg, var(--mz-primary), var(--mz-secondary));
  color: #111303;
  box-shadow: 0 18px 36px rgba(var(--accent-deep-rgb),  0.2);
}

.mz-card__footer {
  padding: 14px 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.mz-card__footer-l,
.mz-card__footer-r {
  font-size: 12px;
}

.mz-card__footer-dot {
  background: rgba(var(--accent-rgb),  0.7);
}

/* ===== KROKOVA KALKULACKA ===== */
.mz-wizard {
  position: relative;
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
  color: #f0f0f0;
}

.mz-wizard::before {
  content: '';
  position: absolute;
  inset: 106px -34px -34px;
  z-index: -1;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 14%, rgba(var(--accent-rgb), 0.34), transparent 38%),
    radial-gradient(ellipse at 50% 92%, rgba(var(--accent-deep-rgb), 0.18), transparent 46%),
    radial-gradient(ellipse at 50% 48%, rgba(255,255,255,0.055), transparent 56%);
  filter: blur(8px);
  opacity: 0.95;
  pointer-events: none;
}

.mz-wizard__head {
  margin-bottom: 22px;
  text-align: center;
}

.mz-wizard__eyebrow,
.mz-wizard-result__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  margin-bottom: 10px;
  padding: 0 12px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.11), rgba(var(--accent-rgb), 0.035)),
    rgba(255,255,255,0.02);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.15em;
  color: var(--brand-primary);
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.09);
}

.mz-wizard__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 900;
  line-height: 1;
  color: #f0f0f0;
}

.mz-wizard__title span {
  color: #d8ff5a;
  text-shadow:
    0 0 16px rgba(var(--accent-rgb), 0.2),
    0 10px 34px rgba(var(--accent-deep-rgb), 0.12);
}

.mz-wizard__sub {
  margin: 9px 0 0;
  font-size: 13px;
  color: rgba(245, 245, 239, 0.74);
}

.mz-wizard__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
  color: rgba(216, 255, 90, 0.84);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.mz-wizard__trust span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.62);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.28);
}

.mz-wizard__progress {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 7px;
  min-height: 30px;
  margin-bottom: 22px;
}

.mz-wizard__dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  min-width: 8px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--brand-primary);
  cursor: default;
}

.mz-wizard__dot::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: rgba(245,245,239,0.24);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.035);
  transition: width 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.mz-wizard__dot.is-active::before {
  width: 32px;
  background: var(--brand-primary);
  box-shadow:
    0 0 0 1px rgba(236,255,131,0.34),
    0 0 16px rgba(var(--accent-rgb), 0.54);
}

.mz-wizard__dot.is-done::before {
  background: var(--brand-primary);
  opacity: 0.42;
}

.mz-wizard__dot span {
  display: none;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.mz-wizard__dot.is-active span {
  display: block;
  color: rgba(236,255,131,0.96);
  text-shadow: 0 0 14px rgba(var(--accent-rgb), 0.2);
}

.mz-wizard__card {
  position: relative;
  overflow: hidden;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid rgba(var(--accent-rgb), 0.43);
  border-radius: 20px;
  background:
    radial-gradient(circle at 50% -8%, rgba(var(--accent-rgb), 0.18), transparent 36%),
    radial-gradient(circle at 8% 92%, rgba(var(--accent-deep-rgb), 0.1), transparent 30%),
    linear-gradient(180deg, rgba(255,255,255,0.085), rgba(255,255,255,0.026) 48%, rgba(255,255,255,0.012)),
    linear-gradient(160deg, rgba(20,22,31,0.995), rgba(9,10,17,0.995));
  box-shadow:
    0 36px 92px rgba(0,0,0,0.56),
    0 16px 38px rgba(0,0,0,0.34),
    0 0 0 1px rgba(255,255,255,0.036),
    0 0 48px rgba(var(--accent-rgb), 0.18);
}

.mz-wizard__card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.76), rgba(245,245,239,0.28), rgba(var(--accent-rgb), 0.48), transparent) top / 100% 1px no-repeat;
  box-shadow:
    inset 0 0 0 1px rgba(var(--accent-rgb), 0.08),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.mz-wizard__panel {
  display: none;
}

.mz-wizard__panel.is-active {
  display: block;
  animation: mz-wizard-in 0.26s ease both;
}

@keyframes mz-wizard-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.mz-wizard__question {
  margin: 0 0 20px;
  font-family: var(--font-body);
  font-size: clamp(19px, 3vw, 24px);
  font-weight: 900;
  line-height: 1.18;
  color: #f0f0f0;
}

.mz-choice-grid {
  display: grid;
  gap: 10px;
}

.mz-choice-grid--audience {
  grid-template-columns: repeat(auto-fit, minmax(112px, 1fr));
}

.mz-choice-grid--guests,
.mz-choice-grid--promo {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mz-choice-grid--promo {
  gap: 14px;
}

.mz-choice-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mz-wizard-field {
  display: flex;
  flex-direction: column;
  gap: 9px;
  text-align: left;
}

.mz-wizard-field__label {
  color: var(--brand-primary);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mz-wizard-field__input {
  width: 100%;
  min-height: 58px;
  padding: 0 16px;
  border: 2px solid rgba(255,255,255,0.13);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.018)),
    rgba(15,16,25,0.98);
  color: #f0f0f0;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  outline: 0;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.035);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, transform 0.18s ease;
}

.mz-wizard-field__input::placeholder {
  color: rgba(205,213,229,0.58);
  font-weight: 600;
}

.mz-wizard-field__input:hover {
  border-color: rgba(255,255,255,0.18);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.072), rgba(255,255,255,0.024)),
    rgba(17,18,28,0.99);
}

.mz-wizard-field__input:focus {
  border-color: rgba(var(--accent-rgb), 0.76);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb),0.08), transparent 58%),
    linear-gradient(180deg, rgba(255,255,255,0.078), rgba(255,255,255,0.028)),
    rgba(17,18,28,0.99);
  box-shadow:
    0 0 0 4px rgba(var(--accent-rgb), 0.105),
    0 0 24px rgba(var(--accent-rgb), 0.13),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.mz-wizard-field__input.is-invalid {
  border-color: #ff6b6b;
  box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.mz-wizard-field__error {
  min-height: 18px;
  color: #ff8a8a;
  font-size: 12px;
  font-weight: 800;
}

.mz-choice {
  display: flex;
  min-height: 112px;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px 10px;
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.018)),
    rgba(15,16,25,0.98);
  color: #f0f0f0;
  cursor: pointer;
  flex-direction: column;
  transition: border-color 0.16s ease, background 0.16s ease, box-shadow 0.16s ease, color 0.16s ease, transform 0.16s ease;
}

.mz-choice:hover,
.mz-choice.is-active {
  border-color: rgba(var(--accent-rgb), 0.78);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--accent-rgb), 0.16), transparent 52%),
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.11), rgba(var(--accent-rgb), 0.045)),
    rgba(15,16,25,0.98);
  color: var(--brand-primary);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.14),
    0 0 24px rgba(var(--accent-rgb), 0.16);
  transform: translateY(-1px);
}

.mz-choice:focus-visible {
  outline: none;
  border-color: rgba(var(--accent-rgb), 0.82);
  box-shadow:
    0 0 0 4px rgba(var(--accent-rgb), 0.12),
    0 0 24px rgba(var(--accent-rgb), 0.16);
}

.mz-choice--row {
  min-height: 76px;
  justify-content: flex-start;
  padding: 16px 20px;
  flex-direction: row;
  text-align: left;
}

.mz-choice__icon {
  font-size: 30px;
  line-height: 1;
}

.mz-choice__signal {
  display: inline-flex;
  width: 18px;
  height: 18px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex: 0 0 auto;
  box-shadow: 0 0 16px currentColor;
}

.mz-choice__signal--green {
  background: #39ff8a;
  color: rgba(57, 255, 138, 0.32);
}

.mz-choice__signal--yellow {
  background: #f7d54a;
  color: rgba(247, 213, 74, 0.32);
}

.mz-choice__signal--red {
  background: #ff4b55;
  color: rgba(255, 75, 85, 0.32);
}

.mz-choice__status {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.mz-choice__status--yes {
  border: 1px solid rgba(57, 255, 138, 0.42);
  background: rgba(57, 255, 138, 0.1);
  color: #39ff8a;
  box-shadow: 0 0 18px rgba(57, 255, 138, 0.14);
}

.mz-choice__status--no {
  border: 1px solid rgba(255, 75, 85, 0.42);
  background: rgba(255, 75, 85, 0.1);
  color: #ff4b55;
  box-shadow: 0 0 18px rgba(255, 75, 85, 0.14);
}

.mz-choice-grid--promo .mz-choice {
  position: relative;
  min-height: 146px;
  border-width: 3px;
  border-color: rgba(var(--accent-rgb), 0.7);
  background: linear-gradient(180deg, rgba(16, 18, 20, 0.98), rgba(10, 11, 18, 0.96));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 18px 38px rgba(0, 0, 0, 0.16);
}

.mz-choice-grid--promo .mz-choice::before {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(var(--accent-rgb), 0.14);
  border-radius: 10px;
  pointer-events: none;
}

.mz-choice-grid--promo .mz-choice:hover,
.mz-choice-grid--promo .mz-choice.is-active {
  border-color: var(--brand-primary);
  background: linear-gradient(180deg, rgba(var(--accent-rgb), 0.14), rgba(13, 13, 24, 0.98));
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.42),
    0 0 24px rgba(var(--accent-rgb), 0.18),
    0 18px 42px rgba(0, 0, 0, 0.22);
}

.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--yes) {
  border-color: var(--brand-primary);
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.16), rgba(var(--accent-rgb), 0.055) 46%, rgba(10, 11, 18, 0.98)),
    #0d0d18;
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.34),
    0 0 32px rgba(var(--accent-rgb), 0.14),
    0 18px 38px rgba(0, 0, 0, 0.18);
}

.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--no) {
  border-color: rgba(var(--accent-rgb), 0.32);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(10, 11, 18, 0.96));
  opacity: 0.88;
}

.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--no):hover,
.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--no).is-active {
  border-color: rgba(255, 75, 85, 0.62);
  background: linear-gradient(180deg, rgba(255, 75, 85, 0.09), rgba(10, 11, 18, 0.98));
  box-shadow:
    0 0 0 1px rgba(255, 75, 85, 0.22),
    0 0 22px rgba(255, 75, 85, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.2);
  opacity: 1;
}

.mz-choice-grid--promo .mz-choice__label {
  font-size: 17px;
  color: rgba(245, 247, 242, 0.92);
}

.mz-choice-grid--promo .mz-choice:hover .mz-choice__label,
.mz-choice-grid--promo .mz-choice.is-active .mz-choice__label {
  color: var(--brand-primary);
}

.mz-choice-grid--promo .mz-choice__status {
  width: 62px;
  height: 62px;
  margin-bottom: 6px;
  font-size: 34px;
}

.mz-choice-grid--promo .mz-choice__status--yes {
  border-color: rgba(var(--accent-rgb), 0.58);
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.18), transparent 24%),
    rgba(var(--accent-rgb), 0.13);
  color: var(--brand-primary);
  box-shadow:
    0 0 0 1px rgba(var(--accent-rgb), 0.1),
    0 0 26px rgba(var(--accent-rgb), 0.26);
}

.mz-choice-grid--promo .mz-choice__status--no {
  border-color: rgba(255, 75, 85, 0.3);
  background: rgba(255, 75, 85, 0.07);
  box-shadow: 0 0 18px rgba(255, 75, 85, 0.1);
}

.mz-choice__label {
  display: block;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.25;
  text-align: center;
}

.mz-choice--row .mz-choice__label {
  text-align: left;
}

.mz-choice__sub {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.mz-choice:hover .mz-choice__sub,
.mz-choice.is-active .mz-choice__sub {
  color: rgba(240, 240, 240, 0.76);
}

.mz-wizard__back {
  display: block;
  margin: 14px auto 0;
  padding: 4px 8px;
  border: 0;
  background: transparent;
  color: rgba(205,213,229,0.58);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.18s ease, transform 0.18s ease;
}

.mz-wizard__back:hover {
  color: rgba(245,245,239,0.82);
  transform: translateY(-1px);
}

.mz-wizard__back:focus-visible {
  outline: none;
  color: rgba(245,245,239,0.9);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb), 0.6);
  text-underline-offset: 4px;
}

.mz-wizard-budget {
  margin-top: 4px;
}

.mz-wizard-budget__value {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(44px, 9vw, 72px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -1px;
  text-align: center;
  color: var(--brand-primary);
  text-shadow: 0 0 40px rgba(var(--accent-rgb), 0.28);
}

.mz-wizard-budget__insight {
  display: flex;
  min-height: 54px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 16px;
  text-align: center;
}

.mz-wizard-budget__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  max-width: 100%;
  padding: 5px 11px;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--brand-primary);
  box-shadow: 0 0 18px rgba(var(--accent-rgb), 0.08);
  font-size: 10px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.mz-wizard-budget__text {
  display: block;
  min-height: 17px;
  color: rgba(240, 240, 240, 0.72);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.mz-wizard-budget__insight.is-recommended .mz-wizard-budget__badge {
  border-color: rgba(236, 255, 151, 0.46);
  background: linear-gradient(90deg, rgba(var(--accent-rgb), 0.18), rgba(236, 255, 151, 0.1));
  color: #efff97;
  box-shadow: 0 0 24px rgba(var(--accent-rgb), 0.18);
}

.mz-wizard-budget__slider {
  width: 100%;
  height: 6px;
  border-radius: 999px;
  appearance: none;
  background: #1e1e2e;
  outline: none;
}

.mz-wizard-budget__slider::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  border: 4px solid #08080f;
  border-radius: 50%;
  appearance: none;
  background: var(--brand-primary);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.46);
  cursor: pointer;
}

.mz-wizard-budget__slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border: 4px solid #08080f;
  border-radius: 50%;
  background: var(--brand-primary);
  box-shadow: 0 0 22px rgba(var(--accent-rgb), 0.46);
  cursor: pointer;
}

.mz-wizard-budget__range {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 11px;
  font-weight: 700;
  color: #4b5563;
}

.mz-wizard__nav {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.mz-wizard__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 12px;
  background: var(--brand-primary);
  color: #08080f;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.1;
  text-decoration: none;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(var(--accent-rgb), 0.24),
    inset 0 1px 0 rgba(255,255,255,0.3);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.mz-wizard__nav-btn:hover {
  background: linear-gradient(135deg, #d8ff5a, #efff97);
  box-shadow:
    0 12px 30px rgba(var(--accent-rgb), 0.32),
    0 0 22px rgba(var(--accent-rgb), 0.18),
    inset 0 1px 0 rgba(255,255,255,0.36);
  transform: translateY(-1px);
}

.mz-wizard__nav-btn:active {
  transform: translateY(0);
  box-shadow:
    0 5px 16px rgba(var(--accent-rgb), 0.22),
    inset 0 1px 0 rgba(255,255,255,0.26);
}

.mz-wizard__nav-btn:focus-visible {
  outline: none;
  box-shadow:
    0 0 0 4px rgba(var(--accent-rgb), 0.14),
    0 12px 30px rgba(var(--accent-rgb), 0.28),
    inset 0 1px 0 rgba(255,255,255,0.34);
}

.mz-wizard__nav-btn--ghost {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.025);
  color: rgba(205,213,229,0.62);
  box-shadow: none;
}

.mz-wizard__nav-btn--ghost:hover {
  border-color: rgba(255,255,255,0.17);
  background: rgba(255,255,255,0.045);
  color: rgba(245,245,239,0.84);
  box-shadow: none;
}

.mz-wizard__nav-btn--ghost:active {
  transform: translateY(0);
}

.mz-wizard__nav-btn--ghost:focus-visible {
  box-shadow: 0 0 0 4px rgba(255,255,255,0.08);
}

.mz-wizard__nav-btn:not(.mz-wizard__nav-btn--ghost) {
  flex: 2;
}

.mz-wizard__nav-btn--link {
  flex: 1;
  border: 1px solid rgba(var(--accent-rgb), 0.24);
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--brand-primary);
  box-shadow: none;
}

.mz-wizard-result {
  text-align: center;
}

.mz-wizard-result__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(22px, 4vw, 30px);
  font-weight: 900;
  line-height: 1.1;
}

.mz-wizard-result__intro {
  max-width: 460px;
  margin: 10px auto 18px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.55;
}

.mz-wizard-summary {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 18px;
}

.mz-wizard-summary__chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(var(--accent-rgb), 0.18);
  border-radius: 999px;
  background: rgba(var(--accent-rgb), 0.06);
  color: #d1d5db;
  font-size: 12px;
  font-weight: 800;
}

.mz-wizard-offers {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  text-align: left;
}

.mz-wizard-offer {
  position: relative;
  padding: 18px 20px;
  border: 1px solid #1e1e2e;
  border-radius: 16px;
  background: #0d0d18;
}

.mz-wizard-offer.is-recommended {
  border-color: rgba(var(--accent-rgb), 0.36);
  background: rgba(var(--accent-rgb), 0.035);
}

.mz-wizard-offer__badge {
  position: absolute;
  top: -10px;
  right: 14px;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--brand-primary);
  color: #08080f;
  font-size: 9px;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 1.6px;
}

.mz-wizard-offer__top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.mz-wizard-offer__tier {
  margin-bottom: 4px;
  color: #6b7280;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mz-wizard-offer__title {
  margin: 0;
  font-size: 18px;
  font-weight: 900;
}

.mz-wizard-offer__price {
  max-width: 150px;
  color: var(--brand-primary);
  font-size: 16px;
  font-weight: 900;
  line-height: 1.25;
  text-align: right;
}

.mz-wizard-offer__desc {
  margin: 12px 0;
  color: #8f98aa;
  font-size: 13px;
  line-height: 1.55;
}

.mz-wizard-offer__items {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 14px;
}

.mz-wizard-offer__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #d1d5db;
  font-size: 13px;
  line-height: 1.35;
}

.mz-wizard-offer__item span {
  min-width: 18px;
  color: var(--brand-primary);
  font-size: 10px;
  font-weight: 900;
  opacity: 0.72;
}

.mz-wizard-offer__cta {
  width: 100%;
  min-height: 42px;
  border: 1px solid rgba(var(--accent-rgb), 0.28);
  border-radius: 10px;
  background: rgba(var(--accent-rgb), 0.035);
  color: rgba(216, 255, 90, 0.9);
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: inset 0 0 16px rgba(var(--accent-rgb), 0.035);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

.mz-wizard-offer__cta:hover {
  border-color: rgba(var(--accent-rgb), 0.58);
  background: rgba(var(--accent-rgb), 0.09);
  color: #ffffff;
  box-shadow:
    0 0 18px rgba(var(--accent-rgb), 0.12),
    inset 0 0 18px rgba(var(--accent-rgb), 0.06);
  transform: translateY(-1px);
}

.mz-wizard-offer.is-recommended .mz-wizard-offer__cta {
  border-color: var(--brand-primary);
  background: var(--brand-primary);
  color: #08080f;
  box-shadow: 0 6px 22px rgba(var(--accent-rgb), 0.22);
}

.mz-wizard-offer.is-recommended .mz-wizard-offer__cta:hover {
  color: #08080f;
  box-shadow: 0 10px 28px rgba(var(--accent-rgb), 0.28);
}

.mz-wizard-result__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.mz-wizard-result__actions .mz-wizard__nav-btn--export {
  flex: 1 1 100%;
  border: 1px solid var(--brand-primary);
  border-color: var(--brand-primary);
  background: linear-gradient(135deg, var(--brand-primary), #efff97);
  color: #08080f;
  box-shadow: 0 12px 30px rgba(var(--accent-rgb), 0.18);
}

.mz-export-stage {
  display: none;
  position: fixed;
  left: -10000px;
  top: 0;
  z-index: 0;
  width: 794px;
  max-width: 794px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.mz-export-stage.is-rendering {
  display: block;
  left: -10000px;
  top: 0;
  z-index: 0;
  opacity: 1;
  visibility: visible;
}

.mz-export-card {
  width: 794px;
  min-height: 1123px;
  padding: 44px;
  background:
    radial-gradient(circle at 84% 10%, rgba(216, 255, 90, 0.26), transparent 28%),
    linear-gradient(145deg, #ffffff 0%, #f7f9ef 48%, #edf4d7 100%);
  color: #111303;
  font-family: var(--font-body);
}

.mz-export-card--mobile {
  width: 430px;
  min-height: 760px;
  padding: 28px;
}

.mz-export-card__header {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
  padding-bottom: 18px;
  border-bottom: 3px solid #111303;
}

.mz-export-card__brand {
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 2.6px;
}

.mz-export-card h1 {
  max-width: 520px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
}

.mz-export-card--mobile h1 {
  max-width: 100%;
  font-size: 34px;
}

.mz-export-card__stamp {
  align-self: flex-start;
  padding: 9px 12px;
  border: 2px solid #111303;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.mz-export-card__lead {
  max-width: 590px;
  margin: 0 0 22px;
  color: #39402a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
}

.mz-export-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 26px;
}

.mz-export-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid rgba(17, 19, 3, 0.15);
  border-radius: 999px;
  background: rgba(216, 255, 90, 0.32);
  color: #111303;
  font-size: 12px;
  font-weight: 900;
}

.mz-export-tags--stacked {
  flex-direction: column;
  align-items: flex-start;
}

.mz-export-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mz-export-offer {
  min-height: 520px;
  padding: 18px;
  border: 2px solid rgba(17, 19, 3, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.mz-export-offer.is-featured {
  border-color: #111303;
  background: #f4ffd0;
}

.mz-export-offer__tier {
  margin-bottom: 8px;
  color: #596238;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.mz-export-offer h2,
.mz-export-final-grid h2 {
  margin: 0 0 10px;
  font-size: 21px;
  font-weight: 950;
}

.mz-export-offer__price {
  margin-bottom: 14px;
  color: #4b6f00;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.15;
}

.mz-export-offer p {
  min-height: 62px;
  margin: 0 0 14px;
  color: #3f4532;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.mz-export-offer ul,
.mz-export-final-grid ul {
  margin: 0;
  padding-left: 18px;
}

.mz-export-offer li,
.mz-export-final-grid li {
  margin-bottom: 9px;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.38;
}

.mz-export-final-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.mz-export-final-hero > div {
  padding: 18px;
  border-radius: 18px;
  background: #111303;
  color: #ffffff;
}

.mz-export-final-hero span {
  display: block;
  margin-bottom: 8px;
  color: #d8ff5a;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.mz-export-final-hero strong {
  display: block;
  font-size: 24px;
  line-height: 1.12;
}

.mz-export-final-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 16px;
}

.mz-export-final-grid section,
.mz-export-note {
  padding: 18px;
  border: 2px solid rgba(17, 19, 3, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.mz-export-note {
  margin-top: 16px;
  color: #3f4532;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.5;
}

.mz-export-card__footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 2px solid rgba(17, 19, 3, 0.16);
  color: #39402a;
  font-size: 12px;
  font-weight: 800;
}

.mz-export-card--mobile .mz-export-card__header,
.mz-export-card--mobile .mz-export-final-hero,
.mz-export-card--mobile .mz-export-final-grid {
  display: flex;
  flex-direction: column;
}

.mz-export-card--mobile .mz-export-card__stamp {
  align-self: flex-start;
}

@media (max-width: 600px) {
  .mz-section input,
  .mz-section textarea,
  .mz-section select {
    font-size: 16px;
  }

  .mz-overlay__panel {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    padding: 24px 16px 20px;
    border-radius: 18px;
  }

  .mz-overlay__brand {
    font-size: clamp(22px, 8vw, 28px);
    letter-spacing: 0.08em;
  }

  .mz-overlay__text {
    font-size: 13px;
    letter-spacing: 0.04em;
  }

  .mz-section {
    padding: 88px 16px 64px;
  }

  .mz-orbit-sub {
    font-size: 14px;
  }

  .mz-divider {
    min-height: 108px;
    margin: 34px auto 32px;
  }

  .mz-divider::after {
    width: min(300px, 88vw);
  }

  .mz-divider__label {
    min-height: 31px;
    padding: 7px 13px;
    font-size: 9px;
    letter-spacing: 0.14em;
  }

  .mz-card,
  .mz-card__border,
  .mz-card__inner {
    border-radius: 22px;
  }

  .mz-card__topbar,
  .mz-card__intro,
  .mz-planner,
  .mz-result,
  .mz-thinking,
  .mz-card__footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .mz-card__headline {
    font-size: 30px;
  }

  .mz-priority-grid {
    grid-template-columns: 1fr;
  }

  .mz-priority-btn {
    min-height: 80px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    text-align: left;
    gap: 6px;
  }

  .mz-priority-btn__desc {
    max-width: none;
  }

  .mz-module {
    grid-template-columns: 42px 1fr;
  }

  .mz-module__badge {
    grid-column: 2;
    justify-self: start;
  }

  .mz-quick-offer__cards {
    grid-template-columns: 1fr;
  }

  .mz-quick-card__desc {
    min-height: 0;
  }

  .mz-wizard__card {
    padding: 22px 16px;
    border-radius: 18px;
  }

  .mz-wizard::before {
    inset: 92px -14px -18px;
    border-radius: 26px;
    filter: blur(6px);
    opacity: 0.78;
  }

  .mz-wizard__trust {
    gap: 6px;
    font-size: 9px;
    letter-spacing: 0.08em;
  }

  .mz-wizard__progress {
    gap: 5px;
  }

  .mz-wizard__dot.is-active::before {
    width: 26px;
  }

  .mz-choice-grid--audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mz-choice {
    min-height: 96px;
  }

  .mz-choice--row {
    min-height: 72px;
  }

  .mz-wizard-offer__top,
  .mz-wizard-result__actions {
    flex-direction: column;
  }

  .mz-wizard-offer__price {
    max-width: none;
    text-align: left;
  }
}

.mz-section {
  background: linear-gradient(180deg, #090b10 0%, #0d1015 42%, #08090e 100%);
}

.mz-section::before {
  opacity: 0.18;
}

.mz-section::after {
  display: none;
}

.mz-wizard {
  max-width: min(920px, calc(100vw - 40px));
  scroll-margin-top: 96px;
}

.mz-wizard:not(.mz-wizard--result) {
  max-width: min(760px, calc(100vw - 40px));
}

.mz-wizard::before {
  display: none;
}

.mz-wizard__title {
  font-size: clamp(30px, 3.8vw, 52px);
  letter-spacing: 0;
}

.mz-wizard__title span {
  color: #d7f86a;
}

.mz-wizard__title span,
.mz-wizard__dot.is-active span {
  text-shadow: none;
}

.mz-wizard__sub {
  color: rgba(237, 240, 221, 0.76);
}

.mz-wizard__trust {
  color: rgba(216, 255, 90, 0.72);
  text-shadow: none;
}

.mz-wizard__dot {
  background: rgba(216, 255, 90, 0.22);
  box-shadow: none;
}

.mz-wizard__dot.is-active::before {
  width: 28px;
  background: var(--brand-primary);
  box-shadow: none;
}

.mz-wizard__card {
  padding: clamp(22px, 2.8vw, 34px);
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(17, 20, 15, 0.98), rgba(8, 9, 8, 0.99));
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.36);
}

.mz-wizard__card::before {
  background: linear-gradient(90deg, transparent, rgba(var(--accent-rgb), 0.16), transparent) top / 100% 1px no-repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.mz-wizard__question {
  margin-bottom: 18px;
  text-align: center;
}

.mz-choice-grid {
  max-width: 660px;
  margin-inline: auto;
}

.mz-choice-grid--audience {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mz-choice-list {
  max-width: 560px;
  margin-inline: auto;
}

.mz-choice {
  min-height: 92px;
  border-width: 1px;
  border-color: rgba(255, 255, 255, 0.11);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)), rgba(11, 12, 11, 0.98);
  box-shadow: none;
}

.mz-choice:hover,
.mz-choice.is-active {
  border-color: rgba(var(--accent-rgb), 0.46);
  background: linear-gradient(180deg, rgba(216, 255, 90, 0.065), rgba(255, 255, 255, 0.012)), rgba(11, 12, 11, 0.99);
  box-shadow: none;
  color: #eef7c8;
}

.mz-choice--row {
  min-height: 64px;
  justify-content: center;
  padding: 14px 18px;
  text-align: center;
}

.mz-choice--row .mz-choice__label {
  text-align: center;
}

.mz-choice__icon {
  font-size: 26px;
}

.mz-choice__signal {
  box-shadow: none;
}

.mz-choice-grid--promo .mz-choice,
.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--yes),
.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--no) {
  min-height: 108px;
  border-width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)), rgba(11, 12, 11, 0.98);
  box-shadow: none;
}

.mz-choice-grid--promo .mz-choice:hover,
.mz-choice-grid--promo .mz-choice.is-active,
.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--no):hover,
.mz-choice-grid--promo .mz-choice:has(.mz-choice__status--no).is-active {
  border-color: rgba(var(--accent-rgb), 0.46);
  background: linear-gradient(180deg, rgba(216, 255, 90, 0.065), rgba(255, 255, 255, 0.012)), rgba(11, 12, 11, 0.99);
  box-shadow: none;
}

.mz-wizard-result {
  text-align: left;
}

.mz-wizard-result__eyebrow {
  border-color: rgba(216, 255, 90, 0.28);
  background: rgba(216, 255, 90, 0.06);
  color: rgba(216, 255, 90, 0.86);
}

.mz-wizard-result__title {
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
}

.mz-wizard-result__intro {
  max-width: 620px;
  margin: 10px 0 18px;
  color: rgba(233, 237, 229, 0.7);
  font-size: 14px;
  line-height: 1.65;
}

.mz-wizard-summary {
  justify-content: flex-start;
  margin-bottom: 20px;
}

.mz-wizard-summary__chip {
  border-color: rgba(216, 255, 90, 0.18);
  background: rgba(255, 255, 255, 0.045);
  color: #edf0dd;
  font-size: 11px;
  box-shadow: none;
}

.mz-wizard-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.mz-wizard-offer {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 18px;
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0)),
    rgba(8, 9, 8, 0.98);
  box-shadow: none;
}

.mz-wizard-offer.is-recommended {
  border-color: rgba(var(--accent-rgb), 0.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(216, 255, 90, 0.13), transparent 42%),
    linear-gradient(180deg, rgba(18, 22, 14, 0.98), rgba(8, 9, 8, 0.98));
}

.mz-wizard-offer__badge {
  border-color: rgba(216, 255, 90, 0.24);
  background: rgba(216, 255, 90, 0.08);
  color: rgba(216, 255, 90, 0.9);
}

.mz-wizard-offer__top {
  display: grid;
  gap: 12px;
}

.mz-wizard-offer__tier {
  color: rgba(216, 255, 90, 0.7);
}

.mz-wizard-offer__title {
  font-size: 20px;
  letter-spacing: 0;
}

.mz-wizard-offer__price {
  max-width: none;
  color: var(--brand-primary);
  font-size: 18px;
  text-align: left;
  text-shadow: none;
}

.mz-wizard-offer__desc {
  color: rgba(233, 237, 229, 0.68);
}

.mz-wizard-offer__item {
  color: #edf0dd;
}

.mz-wizard-offer__item span {
  color: rgba(216, 255, 90, 0.78);
}

.mz-wizard-offer__cta {
  width: 100%;
  margin-top: auto;
  border-radius: 999px;
  box-shadow: none;
}

.mz-wizard-result__actions {
  justify-content: flex-start;
}

.mz-wizard-result__actions .mz-wizard__nav-btn {
  flex: 0 1 auto;
  min-width: 180px;
}

.mz-wizard-result__actions .mz-wizard__nav-btn--export {
  flex: 0 1 auto;
}

.mz-quick-advice {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  width: min(760px, calc(100vw - 36px));
  margin: 12px auto 0;
  padding: 15px 16px;
  border: 1px solid rgba(245, 245, 239, 0.08);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0)),
    rgba(8, 9, 8, 0.76);
  box-shadow: none;
}

.mz-quick-advice__copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.mz-quick-advice__eyebrow,
.mz-quick-advice label span {
  display: block;
  color: rgba(215, 255, 79, 0.9);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.mz-quick-advice h3 {
  margin: 0;
  color: #f5f5ef;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.12;
  letter-spacing: 0;
}

.mz-quick-advice p {
  margin: 0;
  max-width: 560px;
  color: rgba(245, 245, 239, 0.58);
  font-size: 12px;
  line-height: 1.45;
}

.mz-quick-advice__fields {
  display: grid;
  grid-template-columns: minmax(150px, 1fr) minmax(110px, 0.7fr) minmax(160px, 1fr) auto;
  gap: 8px;
  align-items: end;
}

.mz-quick-advice label {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.mz-quick-advice input {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid rgba(245, 245, 239, 0.12);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.36);
  color: #f5f5ef;
  font: inherit;
  font-size: 12px;
  outline: none;
}

.mz-quick-advice input::placeholder {
  color: rgba(245, 245, 239, 0.38);
}

.mz-quick-advice input:focus {
  border-color: rgba(215, 255, 79, 0.5);
}

.mz-quick-advice__submit {
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(215, 255, 79, 0.45);
  border-radius: 8px;
  background: rgba(215, 255, 79, 0.08);
  color: #d7ff4f;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
}

.mz-quick-advice__submit:hover {
  border-color: rgba(215, 255, 79, 0.7);
  background: rgba(215, 255, 79, 0.14);
}

.mz-quick-advice__submit:disabled {
  opacity: 0.62;
  cursor: wait;
}

.mz-quick-advice__status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 12px;
  line-height: 1.35;
}

.mz-quick-advice__status:empty {
  display: none;
}

.mz-quick-advice__status.is-success {
  color: #d7ff4f;
}

.mz-quick-advice__status.is-error {
  color: #ffb3a6;
}

@media (max-width: 900px) {
  .mz-wizard {
    max-width: min(680px, calc(100vw - 32px));
  }

  .mz-wizard-offers {
    grid-template-columns: 1fr;
  }

  .mz-wizard-offer__top {
    display: flex;
  }

  .mz-quick-advice,
  .mz-quick-advice__fields {
    grid-template-columns: 1fr;
  }

  .mz-quick-advice {
    width: min(680px, calc(100vw - 32px));
    align-items: stretch;
  }

  .mz-quick-advice p {
    max-width: none;
  }
}

@media (max-width: 600px) {
  .mz-wizard {
    max-width: calc(100vw - 24px);
    scroll-margin-top: 84px;
  }

  .mz-wizard:not(.mz-wizard--result) {
    max-width: calc(100vw - 24px);
  }

  .mz-wizard::before {
    inset: 94px -8px -14px;
    filter: blur(3px);
    opacity: 0.34;
  }

  .mz-wizard__title {
    font-size: clamp(28px, 10vw, 38px);
  }

  .mz-wizard__card {
    padding: 22px 16px;
  }

  .mz-choice-grid--audience {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .mz-wizard-result__actions .mz-wizard__nav-btn {
    width: 100%;
  }

  .mz-quick-advice {
    width: calc(100vw - 24px);
    padding: 14px;
  }
}
