.lmn-seo-check-form {
  max-width: 800px;
  margin: 2rem auto;
  padding: 2rem 1rem;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  text-align: center;
}

/* Überschrift oben */
.lmn-seo-check-form h2 {
  font-family: 'Raleway', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 2rem;
}

/* Fortschrittsanzeige */
.lmn-seo-check-form-progress {
  text-align: center;
  margin-bottom: 1.5rem;
}

.lmn-seo-check-form-progress .step {
  display: inline-block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  background: #eee;
  color: #000;
  margin: 0 5px;
  font-weight: bold;
}

.lmn-seo-check-form-progress .step.active {
  background: #bfa14c;
  color: #fff;
}

/* Form-Steps */
.lmn-seo-check-form-step {
  display: none;
  animation: fade 0.3s ease-in-out;
  text-align: left;
}

.lmn-seo-check-form-step.active {
  display: block;
}

.lmn-seo-check-form-step .lmn-seo-check-question {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #333;
}

/* Inputs & Radios */
.lmn-seo-check-form-step input[type="text"],
.lmn-seo-check-form-step input[type="email"] {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 200px;
  width: 100%;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  box-sizing: border-box;
  margin-bottom: 1rem;
}

.lmn-seo-check-form-step label {
  display: block;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  cursor: pointer;
}

/* Buttons */
.lmn-seo-check-form-step button {
  padding: 0.75rem 1.5rem;
  background-color: #bfa14c;
  color: #000;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  font-family: 'Raleway', sans-serif;
  text-transform: uppercase;
  margin: 0.25rem;
  flex: 0 0 auto;
}

.lmn-seo-check-form-step button:hover {
  opacity: 0.9;
}

/* Opt-in */
.lmn-seo-check-optin {
  text-align: left;
  margin-top: 1rem;
}

.lmn-seo-check-optin label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-wrap: nowrap;
  cursor: pointer;
  max-width: 100%;
  line-height: 1.4;
  text-align: left;
  font-size: 0.9rem;
}

.lmn-seo-check-optin label input[type="checkbox"] {
  flex: 0 0 auto;
}

.lmn-seo-check-optin a {
  color: #bfa14c;
  text-decoration: underline;
}

/* Überraschung */
.lmn-seo-check-surprise {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.lmn-seo-check-surprise div {
  position: absolute;
  animation: float 3s ease-out forwards;
}


.lmn-seo-check-form-progress {
  text-align: center;
  margin-bottom: 1.5rem;
}

.lmn-seo-check-form-progress .lmn-seo-check-step {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  line-height: 36px;
  border-radius: 50%;
  background: #eee;
  color: #000;
  margin: 0 6px;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
  transition: all 0.3s ease-in-out;
  font-size: 1rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.lmn-seo-check-form-progress .lmn-seo-check-step.active {
  background: #bfa14c;
  color: #fff;
}


@keyframes float {
  0% { transform: translateY(100%); opacity: 1; }
  100% { transform: translateY(-100%); opacity: 0; }
}

@keyframes fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Mobile */
@media (max-width: 768px) {
  .lmn-seo-check-form {
    padding: 1rem;
  }

  .lmn-seo-check-form h2 {
    font-size: 1.8rem;
  }
}

/* Step 3 – Inputs nebeneinander wie Newsletter */
.lmn-seo-check-form-step[data-step="3"] .lmn-seo-check-inputs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.lmn-seo-check-form-step[data-step="3"] .lmn-seo-check-inputs input {
  flex: 1 1 200px;
  min-width: 200px;
}

/* auf Mobil stapeln */
@media (max-width: 768px) {
  .lmn-seo-check-form-step[data-step="3"] .lmn-seo-check-inputs {
    flex-direction: column;
  }

  .lmn-seo-check-form-step[data-step="3"] .lmn-seo-check-inputs input {
    width: 100%;
  }
}

.lmn-seo-check-form-step[data-step="4"] {
  text-align: center;
}

.lmn-seo-check-form-step[data-step="4"] .lmn-seo-check-question {
  margin: 2rem 0;
  font-size: 1.5rem;
}
