.am-survey { max-width:720px; margin:0 auto; background:white; border-radius:28px; padding:32px; box-shadow:0 10px 40px rgba(139,94,118,0.12); }
.am-survey-progress { height:6px; background:#FAEDEA; border-radius:100px; overflow:hidden; margin-bottom:24px; }
.am-survey-progress-bar { height:100%; background:#8B5E76; transition:width 0.4s; }
.am-step { display:none; }
.am-step.active { display:block; animation: fadeIn 0.3s ease; }
.am-options { display:grid; gap:12px; margin:16px 0; }
.am-option { padding:14px 16px; border:1px solid rgba(139,94,118,0.15); border-radius:14px; cursor:pointer; transition:all 0.2s; display:flex; align-items:center; gap:12px; }
.am-option:hover { border-color:#8B5E76; background:#FAEDEA; }
.am-option.selected { border-color:#8B5E76; background:#8B5E76; color:white; }
.am-option input { display:none; }
@keyframes fadeIn { from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }
