/* ══════════════════════════════════════════════════════════════
   Onboarding-Panel — Willkommens-Checklist für neue Tenants
   ══════════════════════════════════════════════════════════════ */

.ob-panel {
  display: none;
  background: linear-gradient(135deg, rgba(200,149,90,.08) 0%, rgba(59,158,255,.04) 100%);
  border: 1px solid rgba(200,149,90,.2);
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(14,27,77,.05);
  position: relative;
  overflow: hidden;
}

.ob-panel::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(200,149,90,.1) 0%, transparent 60%);
  pointer-events: none;
}

.ob-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  position: relative;
}
.ob-title { font-size: 17px; font-weight: 700; color: var(--t1); letter-spacing: -.3px; margin-bottom: 3px }
.ob-sub   { font-size: 13px; color: var(--t3); line-height: 1.5 }
.ob-close {
  background: var(--s2);
  border: 1px solid var(--b2);
  color: var(--t3);
  width: 28px; height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: all .18s;
  flex-shrink: 0;
}
.ob-close:hover { background: var(--s3); color: var(--t1); border-color: var(--b3) }

.ob-progress-wrap {
  height: 6px;
  background: rgba(0,0,0,.06);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 4px;
  position: relative;
}
[data-theme=dark] .ob-progress-wrap { background: rgba(255,255,255,.08) }
.ob-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #c8955a, #d4943a);
  border-radius: 999px;
  transition: width .4s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 0 10px rgba(200,149,90,.4);
}
.ob-progress-label {
  font-size: 11px;
  color: var(--t3);
  font-weight: 600;
  text-align: right;
  margin-top: 6px;
  margin-bottom: 14px;
}

.ob-steps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ob-step {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--s1);
  border: 1px solid var(--b1);
  border-radius: 10px;
  padding: 12px 16px;
  transition: all .2s;
}
.ob-step:hover { border-color: rgba(200,149,90,.3); box-shadow: 0 2px 10px rgba(14,27,77,.05) }
.ob-step-done { opacity: .65 }
.ob-step-done .ob-step-title { text-decoration: line-through; color: var(--t3) }

.ob-step-check {
  width: 24px; height: 24px;
  border-radius: 50%;
  border: 2px solid var(--b2);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--t3);
  flex-shrink: 0;
  transition: all .2s;
}
.ob-step-done .ob-step-check {
  background: linear-gradient(135deg, #1dd97a, #16b869);
  border-color: #1dd97a;
  color: #fff;
  font-weight: 700;
}

.ob-step-body { flex: 1; min-width: 0 }
.ob-step-title { font-size: 13.5px; font-weight: 600; color: var(--t1); margin-bottom: 2px }
.ob-step-desc { font-size: 12px; color: var(--t3); line-height: 1.5 }

.ob-step-cta {
  background: var(--s2);
  color: var(--t1);
  border: 1px solid var(--b2);
  border-radius: 7px;
  padding: 6px 13px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  transition: all .18s;
  flex-shrink: 0;
  white-space: nowrap;
}
.ob-step-cta:hover {
  background: linear-gradient(135deg, #c8955a, #d4943a);
  color: #fff;
  border-color: #c8955a;
  transform: translateY(-1px);
}

@media(max-width:600px) {
  .ob-panel { padding: 16px 18px }
  .ob-step { flex-wrap: wrap; gap: 10px; padding: 12px 14px }
  .ob-step-body { flex: 1 1 calc(100% - 40px) }
  .ob-step-cta { flex: 1 1 100%; padding: 8px; }
  .ob-title { font-size: 15px }
  .ob-sub { font-size: 12px }
}
