:root{
  --bg:#f6f7f9;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#6b7280;
  --line:#e5e7eb;
  --shadow: 0 14px 40px rgba(15,23,42,.08);
  --accent:#ff7a00;
}

*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;color:var(--text);background:var(--bg)}
a{color:inherit;text-decoration:none}
.container{max-width:980px;margin:0 auto;padding:0 18px}
.muted{color:var(--muted)}
.small{font-size:13px}

/* TOPBAR */
.topbar{position:sticky;top:0;z-index:50;background:#fff;border-bottom:1px solid var(--line)}
.topbar__row{height:74px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.brand{display:flex;align-items:center;gap:10px;font-weight:900}
.brand__wheel{
  width:34px;height:34px;border-radius:50%;
  background: radial-gradient(circle at 35% 35%, #fff 0 7px, #cfcfcf 8px 13px, #6b7280 14px 16px, #111 17px 100%);
  border:1px solid rgba(17,24,39,.12);
}
.brand__text{font-size:18px;letter-spacing:.3px}
.brand__go{color:var(--accent)}
.brand__24{font-size:12px;vertical-align:super;margin-left:1px;opacity:.9}

.nav{display:flex;gap:18px}
.nav a{padding:10px 10px;border-radius:12px;color:#111;opacity:.92}
.nav a:hover{background:rgba(17,24,39,.06);opacity:1}

.actions{display:flex;align-items:center;gap:14px}
.link{opacity:.9}
.link:hover{text-decoration:underline;opacity:1}

/* Buttons */
.btn{
  border:1px solid transparent;
  border-radius:14px;
  padding:10px 14px;
  font-weight:900;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.btn--accent{background:var(--accent);color:#111}
.btn--accent:hover{filter:brightness(.97)}
.btn--ghost{background:#fff;border-color:var(--line);color:#111}
.btn--ghost:hover{border-color:rgba(255,122,0,.45)}
.page{padding:26px 0 40px}

/* Page head */
.pagehead{display:flex;align-items:flex-end;justify-content:space-between;gap:16px;margin:10px 0 14px}
h1{margin:0;font-size:30px}
.pill{
  display:inline-flex;align-items:center;
  padding:8px 12px;border-radius:999px;
  border:1px solid var(--line);background:#fff;
  font-weight:800;font-size:13px;color:var(--muted);
}

/* Stepper */
.stepper{
  background:#fff;border:1px solid var(--line);border-radius:18px;
  padding:14px;display:flex;align-items:center;gap:12px;
  margin-bottom:14px;
}
.step{display:flex;align-items:center;gap:10px;min-width:0}
.dot{
  width:34px;height:34px;border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--line);
  font-weight:950;background:#fff;color:#111;
}
.step .title{font-weight:950}
.step .hint{font-size:12px;color:var(--muted);font-weight:800}
.step.is-active .dot{background:rgba(255,122,0,.14);border-color:rgba(255,122,0,.35)}
.line{flex:1;height:2px;background:var(--line);border-radius:999px}

/* Card / Panels */
.card{
  background:#fff;border:1px solid var(--line);border-radius:20px;
  box-shadow:var(--shadow);padding:16px;
}
h2{margin:0 0 8px;font-size:18px}
.panel{display:none}
.panel.is-active{display:block}

/* Form */
.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.field label{display:block;font-size:12px;color:var(--muted);margin:0 0 6px;font-weight:900}
select,input,textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  outline:none;
}
textarea{resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color:rgba(255,122,0,.45);
  box-shadow:0 0 0 3px rgba(255,122,0,.18);
}
.row2{display:grid;grid-template-columns:1fr 1fr;gap:10px}
.span2{grid-column:1 / -1}
.help{font-size:12px;color:var(--muted);margin-top:6px;font-weight:700}

/* Error */
.is-error{border-color:rgba(239,68,68,.6)!important;box-shadow:0 0 0 3px rgba(239,68,68,.15)!important}

/* Uploader */
.uploader{
  margin-top:12px;
  border:1px dashed rgba(255,122,0,.55);
  background:rgba(255,122,0,.08);
  border-radius:18px;
  padding:18px;
  text-align:center;
}
.uploader__icon{font-size:22px}
.uploader__title{font-weight:950;margin-top:6px}
.uploader__hint{color:var(--muted);font-size:13px;font-weight:800;margin:6px 0 10px}

.thumbs{
  margin-top:12px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
}
.thumb{
  height:96px;border-radius:16px;border:1px solid var(--line);
  background:linear-gradient(135deg,#d9dde3,#f1f3f6);
  position:relative;overflow:hidden;
}
.thumb.is-cover{border-color:rgba(255,122,0,.55)}
.thumb__tag{
  position:absolute;top:10px;left:10px;
  background:#fff;border:1px solid rgba(255,122,0,.35);
  padding:6px 10px;border-radius:999px;
  font-size:12px;font-weight:950;
}

/* Actions row */
.actionsRow{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  margin-top:16px;padding-top:12px;border-top:1px solid var(--line);
}

/* Contact highlight box */
.high
