/* GLOBAL */
body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  background: #fff;
  color: #111;
}

.container {
  max-width: 900px;
  margin: auto;
  padding: 60px 20px;
}

/* HEADER */
h1 {
  text-align: center;
  margin-bottom: 10px;
}

.intro {
  text-align: center;
  color: #666;
  margin-bottom: 40px;
}

/* FORM */
.form-group {
  margin-bottom: 25px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
}

/* BUTTON */
.btn {
  display: block;
  width: 100%;
  padding: 14px;
  background: #111;
  color: #fff;
  border: none;
  font-size: 15px;
  cursor: pointer;
  margin-top: 20px;
  text-align:center;
}

.btn:hover {
  background: #333;
}

/* RESULTS */
.results {
  display: none;
  margin-top: 60px;
  text-align: center;
}

.score {
  font-size: 64px;
  font-weight: 600;
  margin-bottom: 10px;
}

.score-label {
  color: #666;
  margin-bottom: 40px;
}

/* GRID */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-bottom: 50px;
}

.card {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
}

.card h3 {
  margin-bottom: 10px;
}

.card p {
  color: #555;
  font-size: 14px;
}

/* CTA */
.cta {
  margin-top: 40px;
}

.cta h3 {
  margin-bottom: 10px;
}

.cta p {
  color: #666;
  margin-bottom: 20px;
}

.cta .btn {
  width: auto;
  display: inline-block;
}

/* SCORE DISCLAIMER */
.score-disclaimer {
  margin-top: 50px;
  padding: 40px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 10px;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.score-disclaimer h4 {
  font-size: 18px;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.score-disclaimer p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
  line-height: 1.6;
}

.score-disclaimer ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.score-disclaimer li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

.score-disclaimer li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #111;
  font-weight: bold;
}

.disclaimer-close {
  font-weight: 500;
  color: #111;
  margin-top: 10px;
}


/* NEXT STEP (CTA BLOCK) */
.next-step {
  margin-top: 30px;
  padding: 35px;
  background: #111;
  color: #fff;
  border-radius: 10px;
  text-align: center;
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

.next-step h4 {
  font-size: 20px;
  margin-bottom: 10px;
}

.next-step p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

/* CTA BUTTON INSIDE NEXT STEP */
.next-step .btn {
  display: block;
  margin: 20px auto 0;
}

.next-step .btn:hover {
  background: #ddd;
}

.next-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.next-step .btn {
  width: fit-content;
  padding: 15px 150px;
  background:#fff;
  color:#000;
  font-weight:600;
  text-decoration:none;
}

/* SCORE WRAPPER */
.score-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
}

/* CIRCLE */
.score-circle {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  position: relative;

  /* THIS creates the ring */
  background: conic-gradient(#111 0deg, #eee 0deg);

  /* THIS cuts out the center */
  display: flex;
  align-items: center;
  justify-content: center;
}

.score-circle::before {
  content: "";
  position: absolute;
  width: 130px;   /* controls ring thickness */
  height: 130px;
  background: #fff; /* same as page background */
  border-radius: 50%;
}

/* NUMBER */
.score {
  position: relative;
  z-index: 2;
  font-size: 68px;
  font-weight: 600;
}

/* LABEL UNDER */
.score-label {
  text-align: center;
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #777;
}



/* MOBILE */
@media (max-width: 768px) {
  .score-disclaimer,
  .next-step {
    padding: 25px;
  }

  .score-disclaimer h4,
  .next-step h4 {
    font-size: 18px;
  }

  .next-step p {
    font-size: 14px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
