* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Lato', sans-serif; background: #f9f9f9; color: #1a1a1a; }
.survey-wrap { max-width: 720px; margin: 0 auto; padding: 2rem 1rem; }
.card { background: #fff; border: 1px solid #e5e5e5; border-radius: 12px; padding: 1.75rem; margin-bottom: 1rem; }
.logo-header { display: flex; flex-direction: column; align-items: center; margin-bottom: 1.5rem; }
.logo-header img { height: 72px; width: auto; display: block; }
.logo-sm img { height: 46px; }
.section-label { font-size: 11px; color: #999; text-transform: uppercase; letter-spacing: .07em; margin-bottom: .5rem;text-align: center; }
h2.survey-title { font-size: 20px; font-weight: 600; color: #1a1a1a; margin-bottom: .5rem; }
p.subtitle { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 1.25rem; }
.info-box { background: #f0f5fa; border-left: 3px solid #1d4e7c; border-radius: 0 8px 8px 0; padding: 12px 14px; font-size: 13px; color: #444; line-height: 1.65; margin-bottom: 1.25rem; }
.info-box strong { color: #1a1a1a; }
.field-row { margin-bottom: 1rem; }
.field-row label { display: block; font-size: 13px; color: #666; margin-bottom: 4px; }
.field-row input[type="text"],
.field-row input[type="date"] { width: 100%; font-size: 14px; padding: 8px 10px; border: 1px solid #ddd; border-radius: 6px; outline: none; }
.field-row input[type="date"] { width: auto; }
.field-row input:focus { border-color: #1d4e7c; }
.radio-group { display: flex; flex-direction: row; flex-wrap: wrap; gap: 8px; margin-top: .5rem; }
.radio-opt { display: flex; align-items: center; gap: 10px; font-size: 14px; cursor: pointer; padding: 10px 14px; border: 1px solid #ddd; border-radius: 8px; background: #fafafa; flex: 1; min-width: 200px; }
.radio-opt:hover { border-color: #1d4e7c; background: #f0f5fa; }
.radio-opt input { flex-shrink: 0; }
.q-block { margin-bottom: 1.25rem; border-bottom: 1px solid #f0f0f0; padding-bottom: 1.25rem; }
.q-block:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.q-text { font-size: 14px; color: #1a1a1a; line-height: 1.6; margin-bottom: .75rem; }
.q-num { font-size: 12px; color: #aaa; margin-right: 5px; }
.likert { display: flex; gap: 6px; flex-wrap: wrap; }
.likert label { display: flex; flex-direction: column; align-items: center; gap: 4px; font-size: 11px; color: #666; cursor: pointer; min-width: 60px; padding: 6px 4px; border: 1px solid #eee; border-radius: 6px; background: #fafafa; text-align: center; }
.likert label:hover { border-color: #1d4e7c; background: #f0f5fa; }
.likert input[type="radio"] { margin: 0; }
.progress-bar { height: 4px; background: #eee; border-radius: 2px; margin-bottom: 1.5rem; }
.progress-fill { height: 100%; border-radius: 2px; background: #1d4e7c; transition: width .3s; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; font-size: 14px; font-weight: 600; border: 1px solid #ccc; border-radius: 8px; background: transparent; color: #1a1a1a; cursor: pointer; transition: background .15s; }
.btn:hover { background: #f5f5f5; }
.btn-primary { background: #1d4e7c; color: #fff; border-color: transparent; }
.btn-primary:hover { background: #163d61; }
.btn-print { background: #1d4e7c; color: #fff; border-color: transparent; }
.btn-print:hover { background: #163d61; }
.score-badge { display: inline-block; font-size: 12px; font-weight: 600; padding: 4px 12px; border-radius: 6px; margin-left: 8px; }
.badge-green { background: #e8f5e9; color: #2e7d32; }
.badge-amber { background: #fff8e1; color: #b45309; }
.badge-red { background: #ffebee; color: #c62828; }
.result-score { font-size: 32px; font-weight: 600; color: #1a1a1a; }
.disclaimer { font-size: 12px; color: #888; line-height: 1.6; padding: 12px 14px; border: 1px solid #e5e5e5; border-radius: 8px; background: #fafafa; }
.divider { border: none; border-top: 1px solid #ebebeb; margin: 1.25rem 0; }
.hidden { display: none !important; }
@media (max-width: 520px) {
  .card { padding: 1.25rem; }
  .radio-opt { min-width: 100%; }
  .likert label { min-width: 52px; font-size: 10px; }
}