/* ============================================================
   DOSYA SORUMLULUGU — features-20-onboarding.css
   ------------------------------------------------------------
   NE YAPAR   : Hedef belirleme akisi ekran stilleri.
   KAYNAK     : v3.12.0'da bolundu — kurallar birebir tasindi,
                hicbir kural yeniden yazilmadi veya siralanmadi.
   SIRA       : index.html'deki <link> sirasi kaskadi belirler.
                Bu dosyanin sirasini DEGISTIRME.
   ------------------------------------------------------------
   Tam dosya listesi ve sira: BAGIMLILIK-HARITASI.md
   ============================================================ */

/* ============================================================
   ONBOARDING
   ============================================================ */
#onboarding {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg);
  z-index: 1000;
  flex-direction: column;
  overflow: hidden;
}
#onboarding.active { display: flex; }

.ob-header {
  padding: 24px 20px 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ob-logo { font-size: 22px; font-weight: 800; color: var(--orange); }
.ob-step { font-size: 13px; color: var(--text3); margin-left: auto; }

.ob-progress-bar {
  height: 3px;
  background: var(--bg3);
  margin: 0 20px;
  border-radius: 99px;
  overflow: hidden;
}
.ob-progress-fill {
  height: 100%;
  background: var(--orange);
  border-radius: 99px;
  transition: width 0.4s ease;
}

.ob-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
}
.ob-question {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.5px;
  margin-bottom: 6px;
}
.ob-sub {
  font-size: 14px;
  color: var(--text3);
  margin-bottom: 24px;
}
.ob-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.ob-option {
  padding: 14px 16px;
  background: var(--bg2);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  transition: all 0.15s;
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.ob-option.selected {
  border-color: var(--orange);
  background: var(--orange-light);
  color: var(--orange);
}
.ob-option:active { transform: scale(0.98); }

.ob-input-row {
  display: grid;
  gap: 10px;
}

.ob-footer {
  padding: 12px 20px 24px;
  display: flex;
  gap: 10px;
}
.ob-back {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg3);
  border: 1px solid var(--border2);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text2);
  cursor: pointer;
}

