/* wizard.css — Nagłówek kreatora, pasek postępu, nawigacja */


.hero::after { 
  content: '';
  position: absolute;
  right: -40px; top: -60px;
  width: 220px; height: 220px;
  border: 2px dashed rgba(37,99,235,.18);
  border-radius: 50%;
}

.hero-decoration {
  position: absolute;
  top: 8px; right: 18px;
  font-size: 40px;
  opacity: .9;
  animation: bob 6s ease-in-out infinite;
}

.hero-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase;
  color: #2563EB;
}

.hero-label::before {
  content: '\2708'; 
  font-size: 13px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 5vw, 30px);
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 8px 0 4px;
  color: #0F2A43;
}
.hero-title .accent, #hero-title { color: #0F2A43; }

.hero-subtitle { font-size: 14px; color: #5B6B7C; line-height: 1.5; }

.progress-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #2563EB, #14B8A6);
  background-size: 200% 100%;
  transition: width .5s cubic-bezier(.4,0,.2,1);
  animation: shimmer 2.4s linear infinite;
}

.step-label { font-size: 12px; color: #5B6B7C; margin-top: 9px; font-weight: 500; }

.btn-nav {
  padding: 13px 24px;
  background: rgba(255,255,255,.92);
  border: 1.5px solid transparent;
  color: var(--ink);
  font-weight: 600;
  font-size: 14px;
  border-radius: 999px;
  box-shadow: var(--sh-sm);
  backdrop-filter: blur(4px);
  transition: all .16s ease;
}

.btn-nav:hover { background: #fff; transform: translateY(-2px); box-shadow: var(--sh-md); }

.btn-primary {
  background: var(--grad-brand);
  color: #fff;
  padding: 16px;
  width: 100%;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(37,99,235,.32);
  transition: transform .18s ease, box-shadow .18s ease;
}

.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(37,99,235,.42); }

.hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-xl);
  padding: 22px 24px;
  margin-bottom: 20px;
  color: var(--ink, #0F2A43);
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  box-shadow: var(--sh-md);
}

.progress-bar {
  height: 8px;
  background: #E8EEF6;
  border-radius: 999px;
  margin-top: 18px;
  overflow: hidden;
}

.hero-grad-2 {
  background: var(--grad-sunset);
  border-radius: var(--r-md);
  padding: 14px 18px;
  margin-bottom: 14px;
  color: #fff;
}

.nav-buttons { display: flex; justify-content: space-between; gap: 12px; margin-top: 18px; }

/* Pasek etapów z nazwami (Kierunek → Termin → Preferencje → Podsumowanie) */
.stage-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 14px 0 12px;
}
.stage-strip .stage {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px 7px 8px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  color: #5B6B7C;
  background: #F1F5FA;
}
.stage-strip .stage-num {
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700;
  background: #DDE6F2; color: #5B6B7C;
}
.stage-strip .stage.done { color: #0F766E; background: #E9FBF6; }
.stage-strip .stage.done .stage-num { background: #14B8A6; color: #fff; }
.stage-strip .stage.active { color: #fff; background: linear-gradient(135deg, #2563EB, #14B8A6); box-shadow: 0 6px 16px rgba(37,99,235,.28); }
.stage-strip .stage.active .stage-num { background: rgba(255,255,255,.25); color: #fff; }
.stage-strip .stage-sep { display: none; }
@media (max-width: 400px) {
  .stage-strip { font-size: 10.5px; }
  .stage-strip .stage { padding: 3px 8px; }
}
