:root{
  --primary:#171b37;
  --accent:#f5be17;
  --bg:#f6f8fb;
  --muted:#6b7280;
}
body{margin:0;background:var(--bg);font-family:Inter,system-ui,sans-serif;color:var(--primary)}
.quiz-wrapper{max-width:900px;margin:60px auto;background:#fff;border-radius:16px;box-shadow:0 20px 50px rgba(0,0,0,.12);overflow:hidden}
.quiz-header{padding:30px;border-bottom:1px solid #e5e7eb}
.progress{height:6px;background:#e5e7eb}
.progress-bar{height:100%;width:0;background:linear-gradient(90deg,var(--accent),#ffd766)}
.step{display:none;padding:40px}
.step.active{display:block}
/*.options{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.option{border:2px solid #e5e7eb;border-radius:14px;padding:18px;cursor:pointer;transition:.25s}
.option:hover{border-color:var(--accent);transform:translateY(-2px)}
.option.selected{border-color:var(--accent);background:#fff7e0}*/

.result-headline{text-align:center;margin-bottom:25px}
.tier-card{border:2px solid var(--accent);border-radius:14px;padding:25px;background:#fffdf5}
.tier-name{font-size:26px;font-weight:700}
.tier-tagline{font-style:italic;margin-bottom:10px}
.tier-price{font-weight:700;margin-bottom:6px}
.tier-includes{color:var(--muted);margin-bottom:12px}
.tier-reason strong{display:block;margin-bottom:8px}
.tier-benefits li{margin-bottom:6px}

.cta-row{display:flex;gap:15px;justify-content:center;margin:25px 0}
.cta{padding:14px 24px;border-radius:30px;font-weight:600;text-decoration:none}
.cta.primary{background:var(--primary);color:#fff}
.cta.secondary{border:2px solid var(--primary);color:var(--primary)}
.cta.submit{background:var(--accent);border:none;cursor:pointer}

.email-box{text-align:center;margin-top:20px}
.email-box input{width:70%;padding:12px;border-radius:8px;border:1px solid #ccc}
.note{text-align:center;color:var(--muted);font-size:14px}

@media(max-width:640px){
  .options{grid-template-columns:1fr}
  .cta-row{flex-direction:column}
  .email-box input{width:100%}
  h2.quiz-heading {
    font-size: 28px;
}
.step {
    padding-left: 10px !important;
    padding-right: 10px !important;
}
.cta {
    text-align: center !important;
}
button.cta.submit {
    color: #000000 !important;
}
.section-title {
    font-size: 30px;
}
}

.quiz-success-message {
  background: #f6f8fb;
  border: 2px solid #f5be17;
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  color: #171b37;
  margin-top: 20px;
}

.quiz-success-message h3 {
  margin-top: 0;
  color: #0c2e4e;
}

.quiz-progress {
  width: 100%;
  background: #e6ebf1;
  border-radius: 20px;
  overflow: hidden;
  height: 12px;
  margin-bottom: 20px;
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: #e53935; /* start red */
  border-radius: 20px;
  position: relative;
  transition: background 0.3s ease;
}

.progress-text {
  position: absolute;
  right: 8px;
  top: -22px;
  font-size: 12px;
  font-weight: 600;
  color: #0c2e4e;
}

