.osy-wrap, .osy-wrap * , .osy-wrap *::before, .osy-wrap *::after { box-sizing: border-box; }
.osy-wrap * { margin: 0; padding: 0; }
.osy-wrap {
  --osy-red:#E30613;
  --osy-red-dk:#b80010;
  --osy-red-lt:#ffeaec;
  --osy-black:#1a1a1a;
  --osy-text:#1a1a1a;
  --osy-muted:#666;
  --osy-border:#e0e0e0;
  --osy-bg:#fff;
  --osy-green:#1db954;
  --osy-radius:10px;
  --osy-shadow:0 4px 28px rgba(0,0,0,.10);
  font-family:'Segoe UI','Helvetica Neue',Arial,sans-serif;
  color:var(--osy-text);
  line-height:1.6;
  max-width:860px;
  margin:0 auto;
}
.osy-hero { background:var(--osy-red); color:#fff; border-radius:var(--osy-radius) var(--osy-radius) 0 0; padding:32px 36px 28px; position:relative; overflow:hidden; }
.osy-hero::after { content:''; position:absolute; right:-60px; top:-60px; width:220px; height:220px; border-radius:50%; background:rgba(255,255,255,.06); pointer-events:none; }
.osy-hero-top { display:flex; align-items:center; justify-content:space-between; margin-bottom:22px; flex-wrap:wrap; gap:12px; }
.osy-logo { height:52px; width:auto; background:#fff; border-radius:8px; padding:6px 12px; display:block; }
.osy-hero-meta { font-size:12px; font-weight:600; letter-spacing:.08em; text-transform:uppercase; opacity:.85; background:rgba(255,255,255,.15); border:1px solid rgba(255,255,255,.3); border-radius:20px; padding:4px 14px; }
.osy-hero h1 { font-size:clamp(18px,3vw,26px); font-weight:700; line-height:1.25; margin-bottom:10px; color:#fff; }
.osy-hero h1 em { font-style:normal; opacity:.82; }
.osy-hero p { font-size:14px; opacity:.88; max-width:580px; margin-bottom:18px; }
.osy-badges { display:flex; flex-wrap:wrap; gap:8px; }
.osy-badge { background:rgba(255,255,255,.18); border:1px solid rgba(255,255,255,.35); border-radius:20px; padding:4px 12px; font-size:12px; font-weight:600; }
.osy-progress-wrap { background:#f5f5f5; padding:14px 36px; border-bottom:1px solid var(--osy-border); }
.osy-progress-label { display:flex; justify-content:space-between; font-size:12px; font-weight:600; color:var(--osy-muted); margin-bottom:6px; }
.osy-progress-label span { color:var(--osy-red); }
.osy-progress-bar { height:6px; background:var(--osy-border); border-radius:3px; overflow:hidden; }
.osy-progress-fill { height:100%; width:0%; background:var(--osy-red); border-radius:3px; transition:width .4s ease; }
.osy-form { background:var(--osy-bg); border-radius:0 0 var(--osy-radius) var(--osy-radius); box-shadow:var(--osy-shadow); overflow:hidden; }
.osy-step { display:none; padding:36px 36px 28px; animation:osyFadeIn .3s ease; }
.osy-step.active { display:block; }
@keyframes osyFadeIn { from { opacity:0; transform:translateY(8px); } to { opacity:1; transform:none; } }
.osy-section-title { display:flex; align-items:center; gap:12px; margin-bottom:24px; padding-bottom:14px; border-bottom:2px solid var(--osy-red-lt); }
.osy-step-num { width:34px; height:34px; min-width:34px; border-radius:50%; background:var(--osy-red); color:#fff; display:flex; align-items:center; justify-content:center; font-size:14px; font-weight:700; }
.osy-section-title h2 { font-size:17px; font-weight:700; color:var(--osy-text); margin:0; }
.osy-section-title p { font-size:13px; color:var(--osy-muted); margin-top:2px; }
.osy-field { margin-bottom:20px; }
.osy-field label { display:block; font-size:13px; font-weight:600; color:var(--osy-text); margin-bottom:6px; }
.osy-field label .req { color:var(--osy-red); margin-left:2px; }
.osy-field input[type="text"], .osy-field textarea {
  width:100%; padding:10px 14px; border:1.5px solid var(--osy-border); border-radius:7px; font-size:14px; color:var(--osy-text); background:#fff; transition:border-color .2s, box-shadow .2s; font-family:inherit; resize:vertical;
}
.osy-field input[type="text"]:focus, .osy-field textarea:focus { outline:none; border-color:var(--osy-red); box-shadow:0 0 0 3px rgba(227,6,19,.10); }
.osy-field .osy-err { font-size:12px; color:var(--osy-red); margin-top:4px; display:none; }
.osy-field.has-error input, .osy-field.has-error textarea { border-color:var(--osy-red); }
.osy-field.has-error .osy-err { display:block; }
.osy-table-wrap { overflow-x:auto; margin:0 -4px; }
.osy-likert { width:100%; border-collapse:collapse; min-width:560px; }
.osy-likert thead th { font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.06em; color:var(--osy-muted); padding:8px 10px; text-align:center; white-space:nowrap; background:#f9f9f9; }
.osy-likert thead th:first-child { text-align:left; width:52%; }
.osy-likert tbody tr { border-bottom:1px solid var(--osy-border); transition:background .15s; }
.osy-likert tbody tr:last-child { border-bottom:none; }
.osy-likert tbody tr:hover { background:#fff5f5; }
.osy-likert tbody td { padding:12px 10px; font-size:13.5px; }
.osy-likert tbody td:not(:first-child) { text-align:center; }
.osy-likert input[type="radio"] {
  -webkit-appearance:none; appearance:none; width:20px; height:20px; border:2px solid var(--osy-border); border-radius:50%; cursor:pointer; display:inline-flex; align-items:center; justify-content:center; transition:border-color .2s, background .2s; vertical-align:middle; position:relative; background:#fff;
}
.osy-likert input[type="radio"]:checked { border-color:var(--osy-red); background:var(--osy-red); }
.osy-likert input[type="radio"]:checked::after { content:''; width:8px; height:8px; background:#fff; border-radius:50%; position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); }
.osy-likert input[type="radio"]:hover:not(:checked) { border-color:var(--osy-red); background:var(--osy-red-lt); }
.osy-likert tbody tr.answered { background:#fff5f5; }
.osy-note { display:flex; align-items:flex-start; gap:10px; background:var(--osy-red-lt); border-left:3px solid var(--osy-red); border-radius:0 7px 7px 0; padding:12px 16px; font-size:13px; color:var(--osy-muted); margin-top:24px; }
.osy-note .icon { font-size:16px; flex-shrink:0; margin-top:1px; }
.osy-consent { margin-bottom:16px; }
.osy-consent label { display:flex; align-items:flex-start; gap:10px; cursor:pointer; font-size:13.5px; line-height:1.5; }
.osy-consent input[type="checkbox"] {
  -webkit-appearance:none; appearance:none; width:18px; height:18px; min-width:18px; border:2px solid var(--osy-border); border-radius:4px; cursor:pointer; transition:border-color .2s, background .2s; margin-top:2px; position:relative; background:#fff;
}
.osy-consent input[type="checkbox"]:checked { background:var(--osy-red); border-color:var(--osy-red); }
.osy-consent input[type="checkbox"]:checked::after { content:''; position:absolute; top:1px; left:4px; width:6px; height:10px; border:2px solid #fff; border-top:none; border-left:none; transform:rotate(45deg); }
.osy-consent.has-error input { border-color:var(--osy-red); }
.osy-consent .osy-err { font-size:12px; color:var(--osy-red); margin-top:4px; display:none; padding-left:28px; }
.osy-consent.has-error .osy-err { display:block; }
.osy-consent a { color:var(--osy-red); }
.osy-nav { display:flex; justify-content:space-between; align-items:center; padding:20px 36px 28px; border-top:1px solid var(--osy-border); background:#fafafa; gap:12px; }
.osy-btn { display:inline-flex; align-items:center; gap:7px; padding:10px 22px; border-radius:7px; font-size:14px; font-weight:600; cursor:pointer; border:none; transition:background .2s, transform .1s, box-shadow .2s; font-family:inherit; line-height:1; }
.osy-btn:active { transform:scale(.97); }
.osy-btn-back { background:#fff; color:var(--osy-muted); border:1.5px solid var(--osy-border); }
.osy-btn-back:hover { background:var(--osy-red-lt); color:var(--osy-red); border-color:var(--osy-red); }
.osy-btn-next { background:var(--osy-red); color:#fff; box-shadow:0 2px 10px rgba(227,6,19,.25); }
.osy-btn-next:hover { background:var(--osy-red-dk); box-shadow:0 4px 16px rgba(227,6,19,.35); }
.osy-btn-submit { background:var(--osy-green); color:#fff; box-shadow:0 2px 10px rgba(29,185,84,.25); }
.osy-btn-submit:hover { background:#17a348; }
.osy-overlay { display:none; align-items:center; justify-content:center; flex-direction:column; gap:12px; padding:48px 36px; text-align:center; }
.osy-overlay.active { display:flex; }
.osy-spinner { width:40px; height:40px; border:3px solid var(--osy-border); border-top-color:var(--osy-red); border-radius:50%; animation:osySpin .8s linear infinite; }
@keyframes osySpin { to { transform:rotate(360deg); } }
.osy-overlay p { font-size:14px; color:var(--osy-muted); }
.osy-thanks { display:none; padding:56px 36px; text-align:center; }
.osy-thanks.active { display:block; }
.osy-thanks-icon { width:64px; height:64px; background:var(--osy-red-lt); border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:30px; margin:0 auto 20px; }
.osy-thanks h2 { font-size:22px; font-weight:700; margin-bottom:10px; }
.osy-thanks p { font-size:14px; color:var(--osy-muted); max-width:400px; margin:0 auto; }
.osy-divider { height:3px; background:linear-gradient(90deg, var(--osy-red) 0%, #ff6b74 50%, transparent 100%); }
.osy-footer { text-align:center; padding:16px 36px 20px; font-size:12px; color:#aaa; border-top:1px solid var(--osy-border); }
.osy-footer a { color:#aaa; text-decoration:underline; }
.osy-status { display:none; margin:20px 36px 0; padding:12px 16px; border-radius:8px; font-size:13px; }
.osy-status.active { display:block; }
.osy-status.error { background:#fff4f4; border:1px solid #f2b7bc; color:#8b1e26; }
.osy-status.success { background:#eefbf2; border:1px solid #bce5c8; color:#116936; }
@media (max-width:600px) {
  .osy-hero, .osy-step, .osy-nav, .osy-thanks { padding-left:20px; padding-right:20px; }
  .osy-progress-wrap, .osy-footer { padding-left:20px; padding-right:20px; }
  .osy-status { margin-left:20px; margin-right:20px; }
  .osy-likert { min-width:480px; }
  .osy-hero h1 { font-size:18px; }
  .osy-hero-top { flex-direction:column; align-items:flex-start; }
  .osy-logo { height:42px; }
  .osy-nav { flex-wrap:wrap; }
}
