:root {
 --accent-color: #f28c28;
 --accent-dark: #0f172a;
 --accent-blue: #0062ff;
 --surface-color: #fdfbf7;
}

.brand-logo {
 display: inline-flex;
 align-items: center;
 gap: 12px;
 color: #0a2540;
 font-weight: 800;
}

.brand-logo__mark {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 width: 44px;
 height: 44px;
 border-radius: 14px;
 background: linear-gradient(135deg, #0a2540 0%, #0062ff 100%);
 color: #fff;
 font-size: 13px;
 letter-spacing: 0.08em;
 box-shadow: 0 10px 30px rgba(0, 98, 255, 0.24);
}

.brand-logo__text {
 font-size: 20px;
 letter-spacing: -0.03em;
}

.hero-cta {
 background: #0062ff;
}

.hero-option.is-selected {
 border-color: var(--accent-blue);
 box-shadow: 0 14px 28px rgba(0, 98, 255, 0.15);
}

.hero-registration {
 margin-top: 24px;
 padding-top: 24px;
 border-top: 1px solid #e2e8f0;
}

.hero-registration-shortcut {
 display: none;
 margin-top: 24px;
 padding-top: 24px;
 border-top: 1px solid #e2e8f0;
}

.hero-registration-shortcut.is-active {
 display: block;
}

.landing-shell > section,
.landing-shell > div.fixed,
.landing-shell > footer,
.landing-shell header > .mt-12,
.landing-shell header > .mt-16 {
 display: none !important;
}

.quiz * {
 box-sizing: border-box;
}

.quiz {
 display: none;
 width: 100%;
 max-width: 560px;
 margin: 0 auto;
 position: relative;
}

.quiz.is-active {
 display: block;
}

.quiz-progress {
 position: sticky;
 top: 12px;
 z-index: 20;
 margin: -2px -2px 20px;
 padding: 18px 18px 16px;
 border-radius: 18px;
 background: rgba(253, 251, 247, 0.97);
 backdrop-filter: blur(12px);
 box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.quiz-progress__label {
 margin: 0 0 12px;
 text-align: center;
 font-size: 12px;
 font-weight: 800;
 letter-spacing: 0.14em;
 text-transform: uppercase;
 color: #64748b;
}

.steps {
 display: grid;
 grid-template-columns: repeat(var(--steps-count, 6), minmax(0, 1fr));
 gap: 8px;
}

.step {
 height: 10px;
 border-radius: 999px;
 background: #dbe4f0;
 overflow: hidden;
}

.step-bar {
 width: 100%;
 height: 100%;
 background: transparent;
 transition: background-color 0.25s ease;
}

.step.done .step-bar,
.step.active .step-bar {
 background: var(--accent-color);
}

.quiz-slider {
 overflow: hidden;
 height: auto;
}

.quiz-track {
 display: flex;
 align-items: flex-start;
  transition: transform 0.42s ease;
 will-change: transform;
}

.quiz-panel {
 width: 100%;
 flex: 0 0 100%;
 padding: 8px 2px 2px;
}

.quiz-meta {
 display: flex;
 justify-content: center;
 margin-top: 20px;
}

.quiz-meta__item {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 font-size: 14px;
 font-weight: 500;
 color: #64748b;
}

.quiz-meta__item strong {
 color: #334155;
}

.quiz-meta__icon {
 color: var(--accent-blue);
 flex-shrink: 0;
}

.step-title {
 margin: 0 0 10px;
 text-align: center;
 font-size: 32px;
 font-weight: 800;
 line-height: 1.15;
 color: #0a2540;
}

.step-description {
 margin: 0 0 26px;
 text-align: center;
 font-size: 16px;
 line-height: 1.6;
 color: #64748b;
}

.question {
 margin-bottom: 10px;
}

.question p {
 margin: 0 0 20px;
 text-align: center;
 font-size: 28px;
 font-weight: 800;
 line-height: 1.2;
 color: #0a2540;
}

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

.option {
  text-transform: capitalize;
 min-height: 92px;
 padding: 18px 14px;
 border: 1px solid #d8e2ee;
 border-radius: 18px;
 background: #fff;
 cursor: pointer;
 font-size: 20px;
 font-weight: 700;
 line-height: 1.25;
 text-align: center;
 color: #0a2540;
 transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease,
  color 0.2s ease, background-color 0.2s ease;
}

.option:hover {
 transform: translateY(-2px);
 border-color: var(--accent-blue);
 box-shadow: 0 14px 28px rgba(0, 98, 255, 0.15);
}

.option.active {
 background: linear-gradient(135deg, #fff4e6 0%, #ffd3a8 100%);
 border-color: var(--accent-color);
 color: #8a3f00;
}

.nav {
 display: flex;
 justify-content: space-between;
 gap: 12px;
 margin-top: 28px;
}

.btn {
 display: inline-flex;
 align-items: center;
 justify-content: center;
 min-height: 56px;
 padding: 14px 20px;
 border: 1px solid transparent;
 border-radius: 16px;
 background: #0062ff;
 color: #fff;
 cursor: pointer;
 font-size: 17px;
 font-weight: 700;
 transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
 /*box-shadow: 0 18px 34px rgba(242, 140, 40, 0.22);*/
}

.btn:hover {
 transform: translateY(-1px);
}

.btn:disabled {
 opacity: 0.5;
 cursor: not-allowed;
 box-shadow: none;
}

.btn.next,
.btn.submit {
 width: 100%;
}

.btn.back {
 min-width: 130px;
 background: #fff;
 color: #0a2540;
 border-color: #d8e2ee;
 box-shadow: none;
}

.contact_form {
 display: flex;
 flex-direction: column;
 gap: 12px;
 width: 100%;
 max-width: 440px;
 margin: 0 auto;
}

.form-input {
 width: 100%;
 padding: 16px 18px;
 border: 1px solid #d8e2ee;
 border-radius: 16px;
 outline: none;
 font-size: 17px;
 color: #0a2540;
 background: #fff;
 transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
 border-color: var(--accent-color);
 box-shadow: 0 0 0 4px rgba(242, 140, 40, 0.14);
}

.custom-checkbox {
 display: flex;
 align-items: center;
 gap: 12px;
 position: relative;
 cursor: pointer;
 margin-top: 4px;
 font-size: 15px;
 user-select: none;
 color: #475569;
}

.custom-checkbox input[type="checkbox"] {
 position: absolute;
 opacity: 0;
 inset: auto;
 width: 1px;
 height: 1px;
}

.checkmark {
 flex-shrink: 0;
 width: 22px;
 height: 22px;
 border: 2px solid #cbd5e1;
 border-radius: 6px;
 background: #fff;
 position: relative;
 transition: border-color 0.2s ease, background-color 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
 border-color: var(--accent-color);
 background: var(--accent-color);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
 content: "";
 position: absolute;
 top: 45%;
 left: 50%;
 width: 6px;
 height: 11px;
 border: solid #fff;
 border-width: 0 2px 2px 0;
 transform: translate(-50%, -50%) rotate(45deg);
}

.checktext {
 line-height: 1.4;
}

@media (max-width: 767px) {
 .brand-logo__mark {
  width: 40px;
  height: 40px;
 }

 .brand-logo__text {
  font-size: 17px;
 }

 .quiz-progress {
  top: 8px;
  padding: 14px 14px 12px;
 }

 .question p {
  font-size: 24px;
 }

 .option {
  min-height: 84px;
  font-size: 18px;
 }
}

@media (max-width: 520px) {
 .options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
 }

 .option {
  min-height: 78px;
  padding: 16px 10px;
  font-size: 16px;
 }

 .step-title {
  font-size: 28px;
 }

 .step-description {
  font-size: 15px;
  margin-bottom: 20px;
 }
}
