:root {
  --vzv-ok: #16a34a;
  --vzv-bad: #dc2626;
  --vzv-warning-bg: #fff7ed;
  --vzv-warning-text: #9a3412;
}

.hero.small {
  padding-bottom: 26px;
}

.vzv-hero-content {
  grid-template-columns: 1fr;
}

.status-chip,
.machine-badge {
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.72);
  color: #0f172a;
  padding: 9px 13px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

.machine-badge {
  background: #dbeafe;
  color: #1d4ed8;
}

.vzv-card-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.muted {
  color: #64748b;
  font-size: 14px;
  margin-top: 4px;
}

.req {
  color: var(--vzv-bad);
  font-weight: 900;
}

select {
  width: 100%;
  min-height: 52px;
  padding: 13px 44px 13px 16px;
  border: 1px solid var(--border);
  border-radius: 14px;
  font-size: 15px;
  font-family: inherit;
  background: white;
  transition: .15s ease;
}

select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}

select:disabled,
input:read-only {
  background: #f8fafc;
  color: #334155;
  cursor: not-allowed;
}

.field-note {
  font-size: 12px;
  color: #64748b;
  margin: 8px 0 0;
}

.question-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.question-card {
  border: 1px solid rgba(148,163,184,.25);
  border-radius: 16px;
  background: #fff;
  padding: 16px;
}

.question-title {
  font-size: 15px;
  font-weight: 900;
  line-height: 1.45;
  color: #0f172a;
  margin-bottom: 12px;
}

.answer-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.radio-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 14px;
  border: 1px solid rgba(148,163,184,.35);
  border-radius: 999px;
  background: #f8fafc;
  font-weight: 800;
  cursor: pointer;
}

.radio-pill input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--brand);
}

.radio-pill:has(input:checked) {
  background: #dbeafe;
  color: #1d4ed8;
  border-color: #93c5fd;
}

.radio-pill.bad:has(input:checked) {
  background: #fee2e2;
  color: #991b1b;
  border-color: #fecaca;
}

.notice {
  border-radius: 14px;
  padding: 13px 15px;
  font-size: 14px;
  font-weight: 800;
  margin: 14px 0;
  line-height: 1.45;
}

.notice.warning {
  background: var(--vzv-warning-bg);
  color: var(--vzv-warning-text);
  border: 1px solid #fed7aa;
}

.notice.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.notice.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.submit-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.secondary-btn {
  border: none;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 15px;
  cursor: pointer;
  font-family: inherit;
  background: #e2e8f0;
  color: #0f172a;
}

@media (max-width: 760px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .vzv-card-head {
    align-items: stretch;
  }

  .machine-badge,
  .status-chip {
    width: 100%;
    text-align: center;
  }

  .answer-row {
    flex-direction: column;
  }

  .radio-pill {
    width: 100%;
  }

  .submit-row .primary,
  .submit-row .secondary-btn {
    width: 100%;
  }
}
