* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: #121510;
  background-color: #FFF5EC;
}

h1, h2 {
  font-family: 'Adelle', serif;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: #121510;
}

h1 { font-size: 2.83rem; margin-bottom: 1rem; }
h2 { font-size: 2rem; margin-bottom: 1.5rem; }

.text-lg { font-size: 1.13rem; line-height: 1.6; }

.eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.3;
  color: #F9423A;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hidden-field { position: absolute; left: -9999px; }

.intro-logo {
  display: block;
  max-width: 280px;
  width: 100%;
  height: auto;
  margin: 0 auto 1.5rem;
}

#screen-intro .screen-inner {
  text-align: center;
}

.quiz-app {
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem 1rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.progress {
  width: 100%;
  max-width: 640px;
  margin: 0 auto 1.5rem;
  height: 0.5rem;
  background-color: #F6ECDE;
  border-radius: 100rem;
  overflow: hidden;
}
.progress-bar {
  height: 100%;
  width: 0%;
  background-color: #F9423A;
  transition: width 0.3s ease;
}

.screen {
  display: none;
  animation: fade-in 0.3s ease;
}
.screen.is-active { display: block; }

@keyframes fade-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.screen-inner {
  background-color: #FFFFFF;
  border-radius: 0.5rem;
  padding: 2rem;
}

.options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.options-column {
  flex-direction: column;
}

.option {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1em 1.5em;
  border: 1.5px solid #D8C3D4;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  color: #121510;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.15s ease, background-color 0.15s ease;
}
.option:hover {
  border-color: #F9423A;
  background-color: #FFF5EC;
}

.btn {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  padding: 1em 1.5em;
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1.5rem;
}
.btn-primary {
  background-color: #F9423A;
  color: #FFFFFF;
}
.btn-primary:hover {
  background-color: #FB7B75;
}

.lead-fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.lead-input {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  padding: 1rem;
  border: 1px solid #121510;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  color: #121510;
}

.form-error {
  color: #F9423A;
  font-size: 0.88rem;
  margin-top: 0.75rem;
}

.trust-line {
  font-size: 0.88rem;
  color: rgba(18, 21, 16, 0.6);
  margin-top: 1.5rem;
  line-height: 1.6;
}
.trust-line a { color: #F9423A; }

.result-intro {
  font-size: 1.13rem;
  margin-bottom: 1.5rem;
}

.gap-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.gap-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #F6ECDE;
}
.gap-icon {
  width: 0.375rem;
  height: 0.375rem;
  min-width: 0.375rem;
  border-radius: 100rem;
  background-color: #F9423A;
  margin-top: 0.5rem;
}
.gap-item p { font-size: 0.88rem; }

.result-closing {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .screen-inner { padding: 1.5rem; }
  h1 { font-size: 2.26rem; }
  h2 { font-size: 1.6rem; }
}
