.elementor-644 .elementor-element.elementor-element-d9d1844{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS */*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy: #0a1f44;
  --royal: #1e56c8;
  --royal-light: #2d6ae0;
  --white: #ffffff;
  --off-white: #f4f7fc;
  --border: #d0daf0;
  --text: #111827;
  --text-muted: #4b5563;
  --success: #16a34a;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--off-white);
  color: var(--text);
  min-height: 100vh;
  -webkit-tap-highlight-color: transparent;
}

.header-div {
  background-color: var(--navy);
  padding: 20px 24px;
  text-align: center;
}

.header-div .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  color: var(--white);
  padding: 56px 24px 48px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0.9;
  line-height: 1.6;
}

.noscript-banner {
  background: #7f1d1d;
  color: #fff;
  text-align: center;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}

.progress-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 28px 24px 0;
}

.progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.progress-bar-bg {
  width: 100%;
  height: 10px;
  background-color: var(--border);
  border-radius: 99px;
  overflow: hidden;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--navy), var(--royal));
  border-radius: 99px;
  transition: width 0.4s ease;
  width: 10%;
}

.quiz-container {
  max-width: 720px;
  margin: 28px auto 60px;
  padding: 0 24px;
}

.question-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.1);
  display: none;
}

.question-card.active {
  display: block;
}

.question-number {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--royal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.question-text {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 28px;
}

.options {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.option input[type="radio"] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.option {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s;
  background: var(--off-white);
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

.option:hover {
  border-color: var(--royal);
  background-color: #eef3fb;
}

.option.selected {
  border-color: var(--royal);
  background-color: #dde8f8;
}

.option input[type="radio"]:focus-visible + .option-letter {
  outline: 3px solid var(--royal);
  outline-offset: 2px;
}

.option-letter {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.option.selected .option-letter {
  background: var(--royal);
  color: var(--white);
}

.option-text {
  font-size: clamp(1rem, 2vw, 1.1rem);
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
  padding-top: 4px;
}

.nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 32px;
  gap: 12px;
}

.btn {
  padding: 14px 32px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.1s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn:active { transform: scale(0.98); }

.btn-primary {
  background: var(--royal);
  color: var(--white);
}

.btn-primary:hover { background: var(--royal-light); }

.btn-secondary {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--royal);
  color: var(--royal);
}

.btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.btn-submit {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.2s;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn-submit:hover { background: var(--royal); }

.error-msg {
  color: #dc2626;
  font-size: 0.95rem;
  font-weight: 600;
  margin-top: 14px;
  display: none;
}

#results {
  display: none;
  max-width: 720px;
  margin: 28px auto 60px;
  padding: 0 24px;
}

.result-header {
  background: linear-gradient(135deg, var(--navy) 0%, var(--royal) 100%);
  border-radius: 16px 16px 0 0;
  padding: 40px;
  text-align: center;
  color: var(--white);
}

.result-label {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
  margin-bottom: 10px;
}

.result-title {
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}

.result-score {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.85;
}

.result-body {
  background: var(--white);
  border-radius: 0 0 16px 16px;
  box-shadow: 0 4px 24px rgba(10, 31, 68, 0.1);
  overflow: hidden;
}

.result-section {
  padding: 32px 40px;
  border-bottom: 1px solid var(--border);
}

.result-section:last-child { border-bottom: none; }

.result-section h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.result-section p {
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.7;
}

.signs-list, .steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signs-list li, .steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.5;
}

.signs-list li::before {
  content: '●';
  color: var(--royal);
  font-size: 0.7rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.steps-list li::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}

.cta-box {
  background: var(--off-white);
  border-top: 4px solid var(--royal);
  padding: 36px 40px;
  text-align: center;
}

.cta-box h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 10px;
}

.cta-box p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}

.btn-cta {
  background: var(--royal);
  color: var(--white);
  padding: 16px 36px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  transition: background 0.2s;
}

.btn-cta:hover { background: var(--navy); }

.footer-div {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 20px 24px;
  font-size: 0.88rem;
}

@media (max-width: 560px) {
  .question-card, .result-section, .cta-box, .result-header {
    padding: 24px 16px;
  }
  .quiz-container, #results {
    padding: 0 12px;
  }
  .progress-wrap {
    padding: 20px 12px 0;
  }
  .nav-buttons {
    flex-direction: column-reverse;
  }
  .btn, .btn-submit {
    width: 100%;
    text-align: center;
  }
}/* End custom CSS */