.survey-body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.5;
  color: #0f172a;
  background: #f1f5f9;
  -webkit-font-smoothing: antialiased;
}

.survey-main {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 20px 48px;
}

.survey-hero {
  padding: 28px 0 20px;
  text-align: center;
}

.survey-eyebrow {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #059669;
}

.survey-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.survey-lead {
  margin: 0 auto;
  max-width: 36rem;
  font-size: 1rem;
  color: #475569;
}

.survey-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px 20px;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.survey-form {
  display: grid;
  gap: 18px;
}

.survey-field {
  display: grid;
  gap: 6px;
}

.survey-field label,
.survey-field legend {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}

.survey-field .survey-hint {
  margin: 0;
  font-size: 0.8125rem;
  color: #64748b;
  font-weight: 400;
}

.survey-field input[type='email'],
.survey-field input[type='tel'],
.survey-field input[type='text'],
.survey-field textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  font: inherit;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.survey-field textarea {
  min-height: 96px;
  resize: vertical;
}

.survey-field input:focus,
.survey-field textarea:focus {
  outline: none;
  border-color: #059669;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

.survey-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  display: grid;
  gap: 10px;
}

.survey-category-grid {
  display: grid;
  gap: 8px;
}

.survey-check,
.survey-radio {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: #334155;
  cursor: pointer;
}

.survey-check input,
.survey-radio input {
  margin-top: 2px;
  flex-shrink: 0;
}

.survey-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.survey-required {
  color: #059669;
}

.survey-submit {
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
  font: inherit;
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 2px 8px rgba(5, 150, 105, 0.3);
}

.survey-submit:hover,
.survey-submit:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.35);
  outline: none;
}

.survey-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.survey-message {
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
}

.survey-message--info {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.survey-message--success {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #6ee7b7;
}

.survey-message--error {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.survey-footer {
  margin-top: 24px;
  text-align: center;
  font-size: 0.8125rem;
  color: #64748b;
}

.survey-footer a {
  color: #059669;
  text-decoration: none;
  font-weight: 500;
}

.survey-footer a:hover {
  text-decoration: underline;
}

.survey-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (min-width: 640px) {
  .survey-card {
    padding: 28px 28px;
  }

  .survey-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
