/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  line-height: 1.4;
  color: #1a1a1a;
}

.page {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  min-height: 100vh;
}

/* Header */
.site-header {
  background: #003da5;
  color: #fff;
  padding: 15px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
}

/* Main */
.content {
  padding: 20px 15px;
}
.title {
  color: #003da5;
  font-size: 24px;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.3;
}
.hero {
  width: 100%;
  max-width: 600px;
  display: block;
  margin: 15px auto;
  border-radius: 10px;
}

.lead {
  text-align: center;
  margin: 15px 0;
  font-size: 19px;
  color: #333;
}
.lead p {
  margin: 0 0 12px;
}

/* Quiz */
.quiz {
  margin-top: 20px;
}

.progress {
  margin-bottom: 20px;
  padding: 15px;
  background: #f9f9f9;
  border: 2px solid #4caf50;
  border-radius: 8px;
}
.progress__label {
  text-align: center;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.progress__bar {
  width: 100%;
  height: 30px;
  background: #e0e0e0;
  border-radius: 15px;
  overflow: hidden;
}
.progress__fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #4caf50, #45a049);
  transition: width 0.3s ease;
}

.step {
  display: none;
  text-align: center;
}
.step--active {
  display: block;
}

.question {
  color: #003da5;
  margin-bottom: 15px;
  font-size: 26px;
  line-height: 1.3;
}
.hint {
  margin: 10px 0;
  color: #333;
}

.choices {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-top: 15px;
  flex-wrap: wrap;
}
.btn {
  background: #4caf50;
  color: #fff;
  border: 0;
  padding: 14px 35px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  transition: filter 0.2s;
}
.btn:hover {
  filter: brightness(0.95);
}
.btn:active {
  transform: translateY(1px);
}

/* Result */
.result {
  text-align: center;
  border: 3px solid #4caf50;
  border-radius: 10px;
  padding: 20px 15px;
  background: #fff;
  margin-bottom: 20px;
}
.result__title {
  color: #4caf50;
  font-size: 26px;
  margin-bottom: 15px;
  line-height: 1.3;
  font-weight: 800;
}
.result__text {
  font-size: 18px;
  color: #333;
  margin: 15px 0;
  line-height: 1.4;
}
.result__highlight {
  color: #003da5;
  font-weight: 800;
}
.result__cta-label {
  font-size: 17px;
  font-weight: bold;
  margin: 15px 0 10px;
  color: #333;
}

.call {
  display: inline-block;
  background: #003da5;
  color: #fff;
  padding: 16px 40px;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 10px;
  margin: 10px 0;
}
.call:hover {
  filter: brightness(0.95);
}

.result__fine {
  font-size: 16px;
  margin-top: 10px;
  color: #555;
}

/* Sticky CTA */
.sticky {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.15);
  padding: 15px;
  text-align: center;
  z-index: 1000;
  border-top: 3px solid #4caf50;
}
.sticky__btn {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto 10px;
  background: #4caf50;
  color: #fff;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 800;
  border-radius: 10px;
  text-decoration: none;
}
.sticky__btn:hover {
  filter: brightness(0.95);
}
.sticky__text {
  font-size: 14px;
  color: #333;
  line-height: 1.4;
}

/* Footer */
.site-footer {
  background: #333;
  color: #ccc;
  padding: 20px 15px;
  font-size: 11px;
  line-height: 1.6;
}
.site-footer p {
  margin-bottom: 12px;
}

/* Responsive */
@media (max-width: 600px) {
  .site-header {
    font-size: 20px;
    padding: 12px;
  }
  .content {
    padding: 15px 12px;
  }
  .title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .hero {
    margin: 12px auto;
  }
  .lead {
    font-size: 17px;
  }
  .question {
    font-size: 22px;
  }
  .choices {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    width: 100%;
    padding: 13px 30px;
    font-size: 16px;
  }
  .result {
    margin-bottom: 110px;
  }
  .result__title {
    font-size: 22px;
  }
  .result__text {
    font-size: 16px;
  }
  .call {
    padding: 14px 35px;
    font-size: 20px;
  }
  .site-footer {
    padding: 15px 12px;
    font-size: 10px;
  }
}
