.content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
  color: #f6f5ef;
}

.survey-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 3rem;
}

.survey-hero h1 {
  font-family: "Unbounded", sans-serif;
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  margin-bottom: 1rem;
}

.survey-hero p {
  color: #c7cbd3;
  line-height: 1.6;
}

.hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.3rem;
  text-transform: uppercase;
  color: #2ee6d6;
  font-weight: 600;
  margin-bottom: 1rem;
}

.survey-tips {
  display: grid;
  gap: 1rem;
}

.tip-card {
  background: #0f1722;
  border: 1px solid #1b2636;
  border-radius: 16px;
  padding: 1.2rem;
}

.tip-card h3 {
  font-family: "Unbounded", sans-serif;
  font-size: 1rem;
  margin-bottom: 0.4rem;
}

.tip-card p {
  color: #c7cbd3;
}

.survey-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.survey-form {
  background: #0f1722;
  border: 1px solid #1b2636;
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row label {
  font-weight: 600;
}

select {
  margin-top: 0.6rem;
  padding: 0.6rem;
  border-radius: 10px;
  border: 1px solid #2b3345;
  background: #0b0f14;
  color: #f6f5ef;
}

.option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 0.8rem;
  margin-top: 0.8rem;
}

.option-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem;
  border: 1px solid #2b3345;
  border-radius: 12px;
  cursor: pointer;
  background: #0b0f14;
}

.option-card input {
  accent-color: #2ee6d6;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  background: #2ee6d6;
  color: #081018;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 24px rgba(46, 230, 214, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.survey-result {
  background: linear-gradient(135deg, rgba(46, 230, 214, 0.18), rgba(246, 178, 74, 0.18));
  border: 1px solid #1b2636;
  border-radius: 18px;
  padding: 1.5rem;
  min-height: 240px;
}

.survey-result h2 {
  font-family: "Unbounded", sans-serif;
  margin-bottom: 0.6rem;
}

.survey-result p {
  color: #c7cbd3;
  line-height: 1.5;
}

.reco-list {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: #f6f5ef;
}

.reco-meta {
  color: #c7cbd3;
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

@media (max-width: 900px) {
  .survey-hero,
  .survey-panel {
    grid-template-columns: 1fr;
  }
}
