/* ═══════════════════════════════════════════════════════════════════════════
   wizard-premium.css — v147
   Warstwa WYŁĄCZNIE wizualna dla ekranów kreatora.
   Wczytywana jako ostatnia, więc nadpisuje wcześniejsze reguły bez ich
   usuwania — cofnięcie zmian = usunięcie jednego <link> z index.html.

   Język wizualny (ten sam co na stronie głównej):
     tło #24124f · białe karty · gradient niebiesko-turkusowy
     zaokrąglenia 20-24px · cienkie obramowania · delikatne cienie
     glow TYLKO dla elementów zaznaczonych
   ═══════════════════════════════════════════════════════════════════════════ */

:root {
  --wz-bg:        #24124f;
  --wz-grad:      linear-gradient(135deg, #2563EB 0%, #14B8A6 100%);
  /* v149: akcent z makiety — fiolet dla zaznaczeń i paska etapów */
  --wz-accent:    #7C6BF5;
  --wz-accent-dk: #5B48E8;
  --wz-accent-bg: #F3F1FE;
  --wz-grad-cta:  linear-gradient(135deg, #6C5CE7 0%, #4F46E5 55%, #2563EB 100%);
  --wz-grad-soft: linear-gradient(135deg, rgba(37,99,235,.10) 0%, rgba(20,184,166,.10) 100%);
  --wz-glow:      0 0 0 1px rgba(37,99,235,.35), 0 14px 34px rgba(37,99,235,.30);
  --wz-card:      #FFFFFF;
  --wz-line:      #EAEEF4;
  --wz-ink:       #0F2A43;
  --wz-ink-soft:  #56697D;
  --wz-r-lg:      24px;
  --wz-r-md:      20px;
  --wz-r-sm:      14px;
  --wz-sh:        0 2px 4px rgba(15,42,67,.04), 0 12px 32px rgba(15,42,67,.08);
  --wz-sh-hover:  0 4px 8px rgba(15,42,67,.05), 0 20px 48px rgba(15,42,67,.13);
  --wz-ease:      cubic-bezier(.22,.61,.36,1);
  --wz-t:         250ms;
}

/* ─────────────────────────────────────────────────────────────────────────
   1. PŁÓTNO KREATORA — ciemnofioletowe tło na całą szerokość
   Dotyczy wyłącznie kreatora (widok planu i landing zostają bez zmian).
   ───────────────────────────────────────────────────────────────────────── */
body:not(.plan-view) .container {
  padding: 44px 22px 72px;
}
body:not(.plan-view) .container::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  z-index: -1;
  pointer-events: none;
  border-radius: 34px 34px 0 0;
  background:
    radial-gradient(880px 520px at 12% 0%,   rgba(37,99,235,.30),  transparent 62%),
    radial-gradient(720px 460px at 88% 22%,  rgba(20,184,166,.20), transparent 64%),
    radial-gradient(820px 620px at 62% 100%, rgba(124,58,237,.26), transparent 62%),
    var(--wz-bg);
}

/* ─────────────────────────────────────────────────────────────────────────
   2. NAGŁÓWEK KREATORA + PASEK ETAPÓW
   ───────────────────────────────────────────────────────────────────────── */
body:not(.plan-view) .hero {
  /* v149: pasek etapów na samej górze karty (jak na makiecie).
     Kolejność zmieniona przez `order`, bez ruszania struktury HTML. */
  display: flex;
  flex-direction: column;
  background: var(--wz-card);
  border: 1px solid var(--wz-line);
  border-radius: var(--wz-r-lg);
  padding: 28px 32px;
  margin-bottom: 22px;
  box-shadow: var(--wz-sh);
  backdrop-filter: none;
}
body:not(.plan-view) .hero::after { display: none; }
body:not(.plan-view) .hero-decoration { opacity: .35; }

body:not(.plan-view) .hero-title {
  font-size: clamp(24px, 4vw, 32px);
  letter-spacing: -.025em;
}
body:not(.plan-view) .hero-subtitle {
  font-size: 14.5px;
  color: var(--wz-ink-soft);
  margin-top: 2px;
}

body:not(.plan-view) .stage-strip { order: -1; }
body:not(.plan-view) .hero-label    { order: 1; }
body:not(.plan-view) .hero-title    { order: 2; }
body:not(.plan-view) .hero-subtitle { order: 3; }
body:not(.plan-view) .progress-bar  { order: 4; }
body:not(.plan-view) .step-label    { order: 5; }

/* Pasek etapów — układ z makiety: kółka połączone linią, podpis pod spodem.
   Zrobiony = wypełnione kółko z ptaszkiem, aktualny = wypełnione z ikoną i glow,
   przyszłe = jasne kółko z obwódką. */
.stage-strip {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin: 6px 0 26px;
  padding: 0 4px;
}
.stage-strip .stage {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 0;
  background: none;
  border: 0;
  border-radius: 0;
  min-width: 0;
  text-align: center;
}

/* Linia łącząca — biegnie od środka poprzedniego kółka do bieżącego */
.stage-strip .stage::before {
  content: '';
  position: absolute;
  top: 17px;
  right: 50%;
  width: 100%;
  height: 2px;
  background: #E4E8F2;
  z-index: 0;
  transition: background var(--wz-t) var(--wz-ease);
}
.stage-strip .stage:first-child::before { display: none; }
.stage-strip .stage.done::before,
.stage-strip .stage.active::before { background: #7C6BF5; }

/* Kółko */
.stage-strip .stage-num {
  position: relative;
  z-index: 1;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F1F3F9;
  border: 1.5px solid #E4E8F2;
  color: #A6AEC0;
  box-shadow: none;
  transition: background var(--wz-t) var(--wz-ease),
              border-color var(--wz-t) var(--wz-ease),
              box-shadow var(--wz-t) var(--wz-ease),
              transform var(--wz-t) var(--wz-ease);
}
.stage-strip .stage-ico {
  font-size: 14px;
  line-height: 1;
  opacity: .5;
  transition: opacity var(--wz-t) var(--wz-ease), font-size var(--wz-t) var(--wz-ease);
}

/* Podpis „1. Kraj" */
.stage-strip .stage-label {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: -.01em;
  color: #A6AEC0;
  line-height: 1.3;
  transition: color var(--wz-t) var(--wz-ease);
}

/* Zrobiony */
.stage-strip .stage.done .stage-num {
  background: var(--wz-accent);
  border-color: var(--wz-accent);
  color: #fff;
}
.stage-strip .stage.done .stage-ico { opacity: 1; color: #fff; font-size: 15px; }
.stage-strip .stage.done .stage-label { color: #6B7A90; }

/* Aktualny — jedyny z glow */
.stage-strip .stage.active .stage-num {
  background: var(--wz-accent);
  border-color: var(--wz-accent);
  color: #fff;
  box-shadow: 0 0 0 5px rgba(124, 107, 245, .16), 0 8px 20px rgba(124, 107, 245, .34);
  transform: scale(1.06);
}
.stage-strip .stage.active .stage-ico { opacity: 1; font-size: 17px; }
.stage-strip .stage.active .stage-label { color: var(--wz-accent); font-weight: 700; }

body:not(.plan-view) .progress-bar {
  height: 4px;
  background: #F1F3F9;
  margin-top: 18px;
  border-radius: 999px;
  overflow: hidden;
}
body:not(.plan-view) .progress-fill {
  background: var(--wz-grad-cta);
  transition: width 400ms var(--wz-ease);
}
body:not(.plan-view) .step-label {
  font-size: 12px;
  color: #93A3B4;
  letter-spacing: .02em;
  margin-top: 10px;
}

/* ─────────────────────────────────────────────────────────────────────────
   3. KARTY KROKÓW
   ───────────────────────────────────────────────────────────────────────── */
body:not(.plan-view) #step-content .step-card {
  background: var(--wz-card);
  border: 1px solid var(--wz-line);
  border-radius: var(--wz-r-lg);
  padding: 30px 32px;
  margin-bottom: 18px;
  box-shadow: var(--wz-sh);
  animation: wzIn .45s var(--wz-ease) both;
}
body:not(.plan-view) #step-content .card-header { gap: 14px; margin-bottom: 10px; }
body:not(.plan-view) #step-content .card-icon-box {
  width: 46px;
  height: 46px;
  border-radius: var(--wz-r-sm);
}
body:not(.plan-view) #step-content .card-title {
  font-size: 22px;
  letter-spacing: -.02em;
}
body:not(.plan-view) #step-content .card-desc {
  font-size: 14px;
  color: var(--wz-ink-soft);
  margin-bottom: 20px;
}

@keyframes wzIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* ─────────────────────────────────────────────────────────────────────────
   4. EKRAN ZAINTERESOWAŃ — chipy jak na makiecie
   Kompaktowa kapsułka: ikona + etykieta, cienka obwódka.
   Zaznaczona: fioletowa obwódka, jasne wypełnienie, fioletowy tekst.
   ───────────────────────────────────────────────────────────────────────── */
.int-lead {
  font-size: 14px;
  color: var(--wz-ink-soft);
  line-height: 1.55;
  margin: 2px 0 16px;
}

/* Licznik wyborów */
.int-counter {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 15px;
  border-radius: 999px;
  background: #F4F6FA;
  border: 1px solid var(--wz-line);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wz-ink-soft);
  margin-bottom: 20px;
  transition: all var(--wz-t) var(--wz-ease);
}
.int-counter-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #C6CEDC;
  transition: background var(--wz-t) var(--wz-ease);
}
.int-counter.has {
  background: var(--wz-accent-bg);
  border-color: rgba(124, 107, 245, .3);
  color: var(--wz-accent-dk);
}
.int-counter.has .int-counter-dot {
  background: var(--wz-accent);
  box-shadow: 0 0 0 3px rgba(124, 107, 245, .18);
}

/* Sekcje tematyczne */
.int-group { margin-bottom: 22px; }
.int-group:last-of-type { margin-bottom: 0; }
.int-group-title {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: #93A3B4;
  margin: 0 0 11px;
}
.int-group-country .int-group-title { color: var(--wz-accent); }

/* Siatka chipów — zawijają się w rzędy jak na makiecie */
.int-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

/* CHIP */
.int-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #E6E9F0;
  color: var(--wz-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 42, 67, .04);
  transition: transform var(--wz-t) var(--wz-ease),
              border-color var(--wz-t) var(--wz-ease),
              background var(--wz-t) var(--wz-ease),
              color var(--wz-t) var(--wz-ease),
              box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
.int-chip:hover {
  transform: translateY(-2px);
  border-color: #CFD6E4;
  box-shadow: 0 6px 16px rgba(15, 42, 67, .10);
}
.int-chip:focus-visible {
  outline: 2px solid var(--wz-accent);
  outline-offset: 2px;
}
.int-chip-ico {
  font-size: 14px;
  line-height: 1;
  transition: transform var(--wz-t) var(--wz-ease);
}
.int-chip-label { line-height: 1.2; }

/* Ptaszek pokazuje się dopiero po zaznaczeniu */
.int-chip-check {
  width: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 11px;
  font-weight: 800;
  transition: width var(--wz-t) var(--wz-ease), opacity var(--wz-t) var(--wz-ease);
}

/* ZAZNACZONY */
.int-chip.active {
  background: var(--wz-accent-bg);
  border-color: var(--wz-accent);
  color: var(--wz-accent-dk);
  box-shadow: 0 0 0 3px rgba(124, 107, 245, .12), 0 6px 16px rgba(124, 107, 245, .18);
}
.int-chip.active .int-chip-ico { transform: scale(1.1); }
.int-chip.active .int-chip-check { width: 12px; opacity: 1; }

/* Pole własnego zainteresowania */
.int-custom {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--wz-line);
}
.int-custom-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--wz-ink);
  margin-bottom: 9px;
}
.int-custom-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 6px 6px 14px;
  background: #fff;
  border: 1.5px solid #E6E9F0;
  border-radius: 14px;
  transition: border-color var(--wz-t) var(--wz-ease), box-shadow var(--wz-t) var(--wz-ease);
}
.int-custom-row:focus-within {
  border-color: var(--wz-accent);
  box-shadow: 0 0 0 4px rgba(124, 107, 245, .12);
}
.int-custom-ico { font-size: 15px; line-height: 1; opacity: .6; }
.int-custom-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  padding: 10px 0;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--wz-ink);
  background: transparent;
}
.int-custom-row input::placeholder { color: #A6AEC0; }
.int-custom-row button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 17px;
  border: 0;
  border-radius: 10px;
  background: var(--wz-grad-cta);
  color: #fff;
  font-family: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--wz-t) var(--wz-ease), box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
.int-custom-row button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(108, 92, 231, .34);
}
.int-custom-plus { font-size: 15px; line-height: 1; }

/* Twoje dodatkowe zainteresowania */
.int-own { margin-top: 22px; }
.int-own-card {
  background: #FBFBFE;
  border: 1px solid var(--wz-line);
  border-radius: var(--wz-r-md);
  padding: 16px 18px;
  margin-bottom: 10px;
}
.int-own-head { display: flex; align-items: center; gap: 9px; }
.int-own-pin { font-size: 14px; }
.int-own-name {
  flex: 1;
  font-size: 14px;
  font-weight: 600;
  color: var(--wz-ink);
  margin: 0;
}
.int-own-del {
  border: 1px solid #FBD5D5;
  background: #FEF2F2;
  color: #DC2626;
  font-family: inherit;
  font-size: 11.5px;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 8px;
  cursor: pointer;
  transition: background var(--wz-t) var(--wz-ease);
}
.int-own-del:hover { background: #FEE2E2; }
.int-own-when {
  font-size: 12px;
  color: var(--wz-ink-soft);
  margin: 12px 0 8px;
}
.int-own-times { display: flex; flex-wrap: wrap; gap: 8px; }
.int-own-time {
  padding: 8px 13px;
  border-radius: 10px;
  border: 1.5px solid #E6E9F0;
  background: #fff;
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--wz-ink-soft);
  cursor: pointer;
  transition: all var(--wz-t) var(--wz-ease);
}
.int-own-time.active {
  background: var(--wz-accent-bg);
  border-color: var(--wz-accent);
  color: var(--wz-accent-dk);
}
.int-own-timerow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 11px;
  font-size: 12.5px;
  color: var(--wz-ink-soft);
}
.int-own-timerow input {
  padding: 8px 12px;
  border: 1.5px solid #E6E9F0;
  border-radius: 10px;
  font-family: inherit;
  font-size: 13px;
}


/* ─────────────────────────────────────────────────────────────────────────
   5. BUDŻET I TEMPO — karty wyboru jak na makiecie
   Biała karta z cienką obwódką; zaznaczona dostaje fioletową ramkę, glow
   i ptaszek w kółku w prawym górnym rogu.
   ───────────────────────────────────────────────────────────────────────── */
.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 18px;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  text-align: left;
  padding: 26px 24px 24px;
  background: #fff;
  border: 1.5px solid #E6E9F0;
  border-radius: var(--wz-r-md);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 0 1px 2px rgba(15, 42, 67, .04);
  transition: transform var(--wz-t) var(--wz-ease),
              border-color var(--wz-t) var(--wz-ease),
              box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
.plan-card:hover {
  transform: translateY(-3px) scale(1.01);
  border-color: #CFD6E4;
  box-shadow: var(--wz-sh-hover);
}
.plan-card:focus-visible { outline: 2px solid var(--wz-accent); outline-offset: 3px; }

/* Emoji u góry */
.plan-emoji {
  font-size: 30px;
  line-height: 1;
  margin-bottom: 16px;
  transition: transform var(--wz-t) var(--wz-ease);
}
.plan-card:hover .plan-emoji { transform: scale(1.08) rotate(-3deg); }

.plan-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--wz-ink);
  margin-bottom: 8px;
}
.plan-lead {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--wz-ink-soft);
  margin-bottom: 10px;
}

/* Lista cech — na makiecie to jedno zdanie oddzielone kropkami */
.plan-points {
  display: block;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--wz-ink-soft);
  margin-bottom: 0;
}
.plan-point { display: inline; }
.plan-point + .plan-point::before {
  content: ' · ';
  color: #C6CEDC;
}

/* „Dla kogo" przy tempie — kolorowy akcent na dole karty */
.plan-who {
  margin-top: auto;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--wz-accent-dk);
}
.plan-who-ico { font-size: 12px; opacity: .8; }
.plan-card.accent-teal   .plan-who { color: #0F9488; }
.plan-card.accent-blue   .plan-who { color: #2563EB; }
.plan-card.accent-violet .plan-who { color: #7C3AED; }

/* Ptaszek w kółku — widoczny dopiero po zaznaczeniu */
.plan-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wz-accent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  opacity: 0;
  transform: scale(.5);
  transition: opacity var(--wz-t) var(--wz-ease), transform var(--wz-t) var(--wz-ease);
}

/* ZAZNACZONA KARTA */
.plan-card.active {
  border-color: var(--wz-accent);
  background: #FDFDFF;
  box-shadow: 0 0 0 4px rgba(124, 107, 245, .13), 0 16px 38px rgba(124, 107, 245, .22);
  transform: scale(1.03);
}
.plan-card.active:hover { transform: translateY(-3px) scale(1.03); }
.plan-card.active .plan-check { opacity: 1; transform: scale(1); }
.plan-card.active .plan-title { color: var(--wz-accent-dk); }

.plan-note {
  font-size: 11.5px;
  line-height: 1.55;
  color: #93A3B4;
  margin-top: 16px;
}


/* ─────────────────────────────────────────────────────────────────────────
   6. PODSUMOWANIE — dwie kolumny jak na makiecie
   Lewa: jasna karta z wierszami (ikona w kolorowym kwadracie + etykieta + wartość).
   Prawa: „Co dalej?" — checklista i ilustracja.
   ───────────────────────────────────────────────────────────────────────── */
.sum-dashboard {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 18px;
  align-items: start;
}

/* LEWA KOLUMNA */
.sum-col-left { padding: 26px 26px 20px; }

.sum-row {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 15px 0;
  border-bottom: 1px solid #EFF1F6;
}
.sum-row:last-child { border-bottom: 0; padding-bottom: 4px; }

/* Ikona w zaokrąglonym kwadracie — jak na makiecie */
.sum-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--wz-accent-bg);
  font-size: 15px;
  line-height: 1;
}
.sum-txt { flex: 1; min-width: 0; }
.sum-label {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--wz-ink);
  margin: 0 0 3px;
}
.sum-value {
  font-size: 13px;
  line-height: 1.55;
  color: var(--wz-ink-soft);
  margin: 0;
  word-break: break-word;
}

/* Zainteresowania jako chipy (makieta) */
.sum-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 5px;
}
.sum-chip {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  border-radius: 8px;
  background: #fff;
  border: 1px solid #E6E9F0;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--wz-ink-soft);
  white-space: nowrap;
}

/* „Edytuj" — dyskretny, wyraźnieje po najechaniu na wiersz */
.sum-edit {
  flex-shrink: 0;
  align-self: center;
  padding: 6px 13px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: transparent;
  color: #A6AEC0;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--wz-t) var(--wz-ease);
}
.sum-row:hover .sum-edit {
  color: var(--wz-accent-dk);
  border-color: rgba(124, 107, 245, .35);
  background: var(--wz-accent-bg);
}
.sum-edit:focus-visible { outline: 2px solid var(--wz-accent); outline-offset: 2px; }

/* PRAWA KOLUMNA — „Co dalej?" */
.sum-col-right {
  padding: 26px 24px 24px;
  background: linear-gradient(160deg, #F7F5FF 0%, #F2F7FE 100%);
  border-color: #E4E2FA;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 18px;
}
.sum-cta-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--wz-accent-dk);
  margin: 0 0 8px;
}
.sum-cta-sub {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--wz-ink-soft);
  margin: 0 0 18px;
}

.sum-checklist {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.sum-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--wz-ink);
  font-weight: 600;
}
.sum-tick {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wz-accent);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
}

/* Ilustracja */
.sum-art {
  width: 100%;
  max-width: 240px;
  height: auto;
  align-self: center;
  margin-top: auto;
}

/* Duży przycisk generowania */
.btn-generate-big {
  width: 100%;
  margin-top: 20px;
  padding: 16px 22px;
  border: 0;
  border-radius: 14px;
  background: var(--wz-grad-cta);
  color: #fff;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.01em;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(108, 92, 231, .35);
  transition: transform var(--wz-t) var(--wz-ease), box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
.btn-generate-big:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 16px 36px rgba(108, 92, 231, .45);
}
.btn-generate-big:active { transform: translateY(0) scale(1); }
.sum-cta-note {
  text-align: center;
  font-size: 11.5px;
  color: #93A3B4;
  margin: 10px 0 0;
}


/* ─────────────────────────────────────────────────────────────────────────
   7. NAWIGACJA (Wstecz / Dalej) — kapsułki na dole karty, jak na makiecie
   ───────────────────────────────────────────────────────────────────────── */
body:not(.plan-view) .nav-buttons {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  padding: 18px 26px;
  background: var(--wz-card);
  border: 1px solid var(--wz-line);
  border-radius: var(--wz-r-lg);
  box-shadow: var(--wz-sh);
}

body:not(.plan-view) #btn-back {
  padding: 12px 22px;
  border-radius: 12px;
  background: #F4F6FA;
  border: 1px solid #E6E9F0;
  color: var(--wz-ink-soft);
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
body:not(.plan-view) #btn-back:hover {
  transform: translateY(-2px);
  background: #EDF0F6;
  color: var(--wz-ink);
  box-shadow: 0 6px 16px rgba(15, 42, 67, .10);
}

body:not(.plan-view) #btn-next {
  margin-left: auto;
  padding: 13px 30px;
  border-radius: 12px;
  border: 0;
  background: var(--wz-grad-cta);
  color: #fff;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(108, 92, 231, .32);
  transition: transform var(--wz-t) var(--wz-ease), box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
body:not(.plan-view) #btn-next:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 32px rgba(108, 92, 231, .44);
}
body:not(.plan-view) #btn-next:active { transform: translateY(0) scale(1); }


/* ─────────────────────────────────────────────────────────────────────────
   8. RESPONSYWNOŚĆ
   ───────────────────────────────────────────────────────────────────────── */

/* Tablet */
@media (max-width: 1100px) {
  .sum-dashboard { grid-template-columns: 1fr; }
  .sum-col-right { position: static; }
  .sum-art { max-width: 200px; }
}

@media (max-width: 900px) {
  body:not(.plan-view) .container { padding: 32px 18px 60px; }
  body:not(.plan-view) .hero { padding: 24px 22px; }
  body:not(.plan-view) #step-content .step-card { padding: 26px 22px; }
  .plan-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; }
}

/* Telefon */
@media (max-width: 620px) {
  body:not(.plan-view) .container { padding: 24px 14px 52px; }
  body:not(.plan-view) .container::before { border-radius: 24px 24px 0 0; }
  body:not(.plan-view) .hero { padding: 20px 18px; border-radius: var(--wz-r-md); }
  body:not(.plan-view) #step-content .step-card { padding: 22px 18px; border-radius: var(--wz-r-md); }
  body:not(.plan-view) #step-content .card-title { font-size: 19px; }

  /* Pasek etapów: kółka zostają, podpisy się zmniejszają i łamią w dwie linie */
  .stage-strip { margin: 4px 0 20px; padding: 0; }
  .stage-strip .stage-num { width: 30px; height: 30px; }
  .stage-strip .stage::before { top: 15px; }
  .stage-strip .stage-ico { font-size: 13px; }
  .stage-strip .stage.active .stage-ico { font-size: 15px; }
  .stage-strip .stage-label {
    font-size: 10.5px;
    white-space: normal;
    max-width: 68px;
  }

  .int-grid { gap: 7px; }
  .int-grid .int-chip { padding: 9px 13px; font-size: 12.5px; }
  .int-chip:hover { transform: none; }
  .int-custom { padding: 18px 16px; }
  .int-custom-row { padding: 5px 5px 5px 14px; }
  .int-custom-row button#add-custom { padding: 10px 14px; }
  .int-custom-plus-txt { display: none; }

  .plan-grid { grid-template-columns: 1fr; }
  body:not(.plan-view) .nav-buttons { padding: 14px 16px; gap: 10px; }
  body:not(.plan-view) #btn-back { padding: 11px 16px; font-size: 13px; }
  body:not(.plan-view) #btn-next { padding: 12px 22px; font-size: 13px; }
  .sum-col-left, .sum-col-right { padding: 22px 18px; }
  .sum-row { gap: 10px; }
  .sum-edit { padding: 5px 9px; font-size: 11.5px; }
  .tier-card.plan-card { padding: 24px 20px 20px; }
  .tier-card.plan-card:hover { transform: none; }
  .tier-card.plan-card.active { transform: none; }
  .tier-card.plan-card.active:hover { transform: none; }
  .plan-emoji { font-size: 32px; margin-bottom: 12px; }

  .sum-row { padding: 14px; gap: 12px; flex-wrap: wrap; }
  .sum-ico { width: 38px; height: 38px; font-size: 18px; }
  .sum-edit { padding: 8px 14px; }

  body:not(.plan-view) .btn-nav { padding: 13px 20px; font-size: 13.5px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   9. DOSTĘPNOŚĆ — szanujemy ustawienie „ogranicz animacje"
   ───────────────────────────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  body:not(.plan-view) #step-content .step-card { animation: none; }
  .int-grid .int-chip,
  .tier-card.plan-card,
  .sum-row,
  .sum-edit,
  body:not(.plan-view) .btn-nav,
  body:not(.plan-view) #step-content .btn-generate-big,
  .int-custom-row button#add-custom,
  .stage-strip .stage {
    transition: none;
  }
  .int-grid .int-chip:hover,
  .tier-card.plan-card:hover,
  .tier-card.plan-card.active,
  .tier-card.plan-card.active:hover,
  .sum-row:hover,
  body:not(.plan-view) #step-content .btn-generate-big:hover,
  body:not(.plan-view) .btn-nav:hover {
    transform: none;
  }
}

/* ─────────────────────────────────────────────────────────────────────────
   10. v150: FILTR KONTYNENTÓW nad siatką krajów
   Rząd kapsułek: ikona + nazwa + licznik krajów. Aktywna na fiolecie.
   ───────────────────────────────────────────────────────────────────────── */
.cont-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-bottom: 2px;
}
.cont-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 14px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #E6E9F0;
  color: var(--wz-ink);
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -.01em;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(15, 42, 67, .04);
  transition: transform var(--wz-t) var(--wz-ease),
              border-color var(--wz-t) var(--wz-ease),
              background var(--wz-t) var(--wz-ease),
              color var(--wz-t) var(--wz-ease),
              box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
.cont-chip:hover {
  transform: translateY(-2px);
  border-color: #CFD6E4;
  box-shadow: 0 6px 16px rgba(15, 42, 67, .10);
}
.cont-chip:focus-visible { outline: 2px solid var(--wz-accent); outline-offset: 2px; }
.cont-chip-ico { font-size: 14px; line-height: 1; }
.cont-chip-label { line-height: 1.2; }

/* Licznik krajów w kapsułce */
.cont-chip-count {
  min-width: 20px;
  padding: 2px 6px;
  border-radius: 999px;
  background: #F1F3F9;
  color: #93A3B4;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background var(--wz-t) var(--wz-ease), color var(--wz-t) var(--wz-ease);
}

/* AKTYWNY KONTYNENT */
.cont-chip.active {
  background: var(--wz-accent-bg);
  border-color: var(--wz-accent);
  color: var(--wz-accent-dk);
  box-shadow: 0 0 0 3px rgba(124, 107, 245, .12), 0 6px 16px rgba(124, 107, 245, .18);
}
.cont-chip.active .cont-chip-count {
  background: var(--wz-accent);
  color: #fff;
}

@media (max-width: 620px) {
  .cont-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin-left: -18px;
    margin-right: -18px;
    padding: 0 18px 6px;
  }
  .cont-bar::-webkit-scrollbar { display: none; }
  .cont-chip {
    flex-shrink: 0;
    scroll-snap-align: start;
    padding: 8px 12px;
    font-size: 12.5px;
  }
  .cont-chip:hover { transform: none; }
}

/* ─────────────────────────────────────────────────────────────────────────
   11. v152: PRZEGRÓDKI NOCLEGOWE — jedna na każde miasto (przy ≥2 miastach)
   ───────────────────────────────────────────────────────────────────────── */
.ch-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}
.ch-slot {
  padding: 16px 18px;
  background: #FBFBFE;
  border: 1.5px solid #E6E9F0;
  border-radius: var(--wz-r-md);
  transition: border-color var(--wz-t) var(--wz-ease),
              background var(--wz-t) var(--wz-ease),
              box-shadow var(--wz-t) var(--wz-ease);
}
.ch-slot:focus-within {
  border-color: var(--wz-accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(124, 107, 245, .12);
}
.ch-slot.filled {
  background: #fff;
  border-color: rgba(124, 107, 245, .45);
}

.ch-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.ch-num {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--wz-accent-bg);
  color: var(--wz-accent-dk);
  font-size: 11.5px;
  font-weight: 700;
  transition: background var(--wz-t) var(--wz-ease), color var(--wz-t) var(--wz-ease);
}
.ch-slot.filled .ch-num { background: var(--wz-accent); color: #fff; }
.ch-city {
  flex: 1;
  min-width: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--wz-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.ch-badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--wz-accent-bg);
  color: var(--wz-accent-dk);
  font-size: 10.5px;
  font-weight: 700;
  white-space: nowrap;
}

.ch-input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border: 1.5px solid #E6E9F0;
  border-radius: 12px;
  font-family: inherit;
  font-size: 13px;
  color: var(--wz-ink);
  background: #fff;
  transition: border-color var(--wz-t) var(--wz-ease);
}
.ch-input:focus { outline: none; border-color: var(--wz-accent); }
.ch-input::placeholder { color: #A6AEC0; }

.ch-hint {
  font-size: 11px;
  color: var(--wz-ink-soft);
  margin: 7px 0 0;
  line-height: 1.45;
}
.ch-summary {
  font-size: 11.5px;
  color: #93A3B4;
  margin: 14px 0 0;
}

@media (max-width: 620px) {
  .ch-slot { padding: 14px; }
  .ch-badge { display: none; }
}

/* ─────────────────────────────────────────────────────────────────────────
   12. v153: EKRAN „KIEDY I KTO JEDZIE?" — baner kraju + siatka kart
   Fotografia w banerze to ten sam plik, który leci na karcie kraju w kroku 1
   (data-country-img → applyCountryImages).
   ───────────────────────────────────────────────────────────────────────── */
.td-card .card-header { align-items: flex-start; }
.td-card .card-header .card-desc { margin: 4px 0 0; }

/* ── BANER ── */
.td-hero {
  position: relative;
  margin: 20px 0 22px;
  border-radius: var(--wz-r-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(135deg, #1E3A8A 0%, #0F766E 100%);
  box-shadow: 0 14px 34px rgba(15, 42, 67, .18);
}
.td-hero .cc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.td-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg,
    rgba(12, 20, 45, .92) 0%,
    rgba(12, 20, 45, .72) 38%,
    rgba(12, 20, 45, .18) 68%,
    rgba(12, 20, 45, .05) 100%);
}
.td-hero-body {
  position: relative;
  padding: 26px 28px 18px;
  max-width: 60%;
}
.td-hero-pin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, .22);
  color: #fff;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 14px;
}
.td-hero-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.03em;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 2px 14px rgba(0, 0, 0, .3);
}
.td-hero-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
  margin: 0;
}

/* Pasek faktów na dole banera */
.td-hero-bar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0 22px 20px;
  padding: 12px 6px;
  border-radius: 14px;
  background: rgba(10, 16, 38, .58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, .1);
}
.td-hero-fact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex: 1 1 auto;
  min-width: 0;
  padding: 2px 14px;
  color: rgba(255, 255, 255, .92);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.td-hero-fact + .td-hero-fact { border-left: 1px solid rgba(255, 255, 255, .16); }
.td-hero-fact.is-empty { color: rgba(255, 255, 255, .5); font-weight: 500; }
.td-hero-fact i { font-size: 14px; opacity: .85; flex-shrink: 0; }

/* ── SIATKA KART ── */
.td-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.td-c {
  padding: 20px 22px;
  background: #fff;
  border: 1.5px solid #E6E9F0;
  border-radius: var(--wz-r-md);
  box-shadow: 0 1px 2px rgba(15, 42, 67, .04);
  transition: border-color var(--wz-t) var(--wz-ease), box-shadow var(--wz-t) var(--wz-ease);
}
.td-c:hover { border-color: #D7DDE9; box-shadow: 0 8px 22px rgba(15, 42, 67, .09); }
.td-c:focus-within { border-color: var(--wz-accent); box-shadow: 0 0 0 4px rgba(124, 107, 245, .12); }

.td-c-head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}
.td-c-ico {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  font-size: 15px;
  background: var(--wz-accent-bg);
  color: var(--wz-accent-dk);
}
.td-c-ico.icon-blue  { background: #EFF6FF; color: #2563EB; }
.td-c-ico.icon-sky   { background: #ECFEFF; color: #0E7490; }
.td-c-ico.icon-amber { background: #FFF7ED; color: #C2410C; }
.td-c-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--wz-ink);
  margin: 0;
}

/* Karty godzin — delikatne tło, jak na makiecie */
.td-c.td-time-arrival   { background: linear-gradient(160deg, #F5FAFF 0%, #FFFFFF 70%); border-color: #DCEBFB; }
.td-c.td-time-departure { background: linear-gradient(160deg, #FFFAF3 0%, #FFFFFF 70%); border-color: #F6E3CC; }

/* Duża liczba dni */
.td-days-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.td-days-big {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  font-family: 'Sora', system-ui, sans-serif;
  margin: 0 0 12px;
}
.td-days-big span {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--wz-accent-dk);
  line-height: 1;
}
.td-days-big em {
  font-style: normal;
  font-size: 14px;
  font-weight: 700;
  color: var(--wz-ink);
}
.td-days-scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: #A6AEC0;
  margin-top: 6px;
}

/* Pole z lupką */
.td-search { position: relative; }
.td-search input { padding-right: 40px; }
.td-search i {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #A6AEC0;
  pointer-events: none;
}

@media (max-width: 900px) {
  .td-cards { grid-template-columns: 1fr; }
  .td-hero-body { max-width: 78%; }
}

@media (max-width: 620px) {
  .td-hero { min-height: 190px; }
  .td-hero-body { padding: 20px 18px 14px; max-width: 100%; }
  .td-hero-title { font-size: 19px; }
  .td-hero-bar {
    margin: 0 14px 14px;
    padding: 8px 4px;
    gap: 4px;
  }
  .td-hero-fact {
    flex: 1 1 45%;
    justify-content: flex-start;
    padding: 4px 8px;
    font-size: 11.5px;
  }
  .td-hero-fact + .td-hero-fact { border-left: 0; }
  .td-c { padding: 16px 16px; }
}

/* ─────────────────────────────────────────────────────────────────────────
   13. v157: ZAINTERESOWANIA — kafelki ze zdjęciami + panel boczny
   ───────────────────────────────────────────────────────────────────────── */
.int-card .card-header { align-items: flex-start; }
.int-card .card-header .int-lead { margin: 4px 0 0; }

/* Pasek korzyści pod nagłówkiem */
.int-benefits {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 20px;
  padding: 0;
}
.int-benefit {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: var(--wz-accent-bg);
  border: 1px solid rgba(124, 107, 245, .18);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--wz-accent-dk);
  white-space: nowrap;
}

/* Układ: siatka + panel boczny */
.int-layout {
  display: grid;
  grid-template-columns: 1fr 268px;
  gap: 22px;
  align-items: start;
}
.int-main { min-width: 0; }

/* Nagłówek sekcji */
.int-group-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 12px;
}
.int-group-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  letter-spacing: -.02em;
  text-transform: none;
  color: var(--wz-ink);
  margin: 0;
}
.int-group-ico { font-size: 15px; }
.int-group-badge {
  padding: 4px 10px;
  border-radius: 999px;
  background: #F1F3F9;
  color: #6B7A90;
  font-size: 10.5px;
  font-weight: 600;
  white-space: nowrap;
}
.int-group-all {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--wz-accent-dk);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background var(--wz-t) var(--wz-ease), opacity var(--wz-t) var(--wz-ease);
}
.int-group-all:hover:not(:disabled) { background: var(--wz-accent-bg); }
.int-group-all:disabled { opacity: .35; cursor: not-allowed; }

/* Siatka kafelków */
.int-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
  gap: 12px;
}

/* KAFELEK ZE ZDJĘCIEM */
.int-tile {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 11;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(135deg, #2E3B67 0%, #16233F 100%);
  box-shadow: 0 2px 8px rgba(15, 42, 67, .1);
  transition: transform var(--wz-t) var(--wz-ease),
              border-color var(--wz-t) var(--wz-ease),
              box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
.int-tile:hover:not(:disabled) {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 28px rgba(15, 42, 67, .2);
}
.int-tile:focus-visible { outline: 2px solid var(--wz-accent); outline-offset: 3px; }
.int-tile:disabled { cursor: not-allowed; }
.int-tile.locked { filter: grayscale(.65); opacity: .5; }

.int-tile-media { position: absolute; inset: 0; }
.int-tile .cc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 4s var(--wz-ease);
}
.int-tile:hover:not(:disabled) .cc-img { transform: scale(1.06); }

.int-tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(8, 14, 32, .88) 0%,
    rgba(8, 14, 32, .45) 42%,
    rgba(8, 14, 32, .12) 100%);
}

/* Ptaszek w kółku */
.int-tile-check {
  position: absolute;
  top: 9px;
  right: 9px;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .22);
  border: 1.5px solid rgba(255, 255, 255, .6);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: transparent;
  font-size: 12px;
  font-weight: 800;
  transition: background var(--wz-t) var(--wz-ease),
              border-color var(--wz-t) var(--wz-ease),
              color var(--wz-t) var(--wz-ease),
              transform var(--wz-t) var(--wz-ease);
}

/* Stopka kafelka: ikona + etykieta */
.int-tile-foot {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  text-align: left;
}
.int-tile-ico {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  font-size: 13px;
}
.int-tile-label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #fff;
  line-height: 1.25;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .5);
}

/* ZAZNACZONY */
.int-tile.active {
  border-color: var(--wz-accent);
  box-shadow: 0 0 0 3px rgba(124, 107, 245, .18), 0 12px 26px rgba(124, 107, 245, .24);
}
.int-tile.active .int-tile-check {
  background: var(--wz-accent);
  border-color: var(--wz-accent);
  color: #fff;
  transform: scale(1.06);
}

/* Przełącznik „zostaw to AI" */
.int-ai {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 22px;
  padding: 15px 18px;
  border-radius: var(--wz-r-md);
  background: linear-gradient(135deg, #F5F3FF 0%, #EFF6FF 100%);
  border: 1.5px solid #DDD9FB;
  transition: border-color var(--wz-t) var(--wz-ease);
}
.int-ai.on { border-color: var(--wz-accent); }
.int-ai-ico { font-size: 20px; flex-shrink: 0; }
.int-ai-txt { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.int-ai-txt b { font-size: 13.5px; color: var(--wz-ink); }
.int-ai-txt span { font-size: 12px; color: var(--wz-ink-soft); line-height: 1.45; }

.int-ai-switch { position: relative; flex-shrink: 0; cursor: pointer; }
.int-ai-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.int-ai-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.int-ai-slider {
  display: block;
  width: 46px;
  height: 26px;
  border-radius: 999px;
  background: #CBD3E1;
  transition: background var(--wz-t) var(--wz-ease);
}
.int-ai-slider::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
  transition: transform var(--wz-t) var(--wz-ease);
}
.int-ai-switch input:checked + .int-ai-slider { background: var(--wz-accent); }
.int-ai-switch input:checked + .int-ai-slider::after { transform: translateX(20px); }
.int-ai-switch input:focus-visible + .int-ai-slider { box-shadow: 0 0 0 4px rgba(124, 107, 245, .25); }

/* PANEL BOCZNY */
.int-side {
  position: sticky;
  top: 18px;
  padding: 20px 18px;
  border-radius: var(--wz-r-md);
  background: linear-gradient(165deg, #F7F5FF 0%, #EFF6FF 100%);
  border: 1px solid #E1DEFA;
}
.int-side-title {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--wz-accent-dk);
  margin: 0 0 14px;
}
.int-side-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.int-side-row {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  border-radius: 13px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .9);
  box-shadow: 0 1px 3px rgba(15, 42, 67, .05);
}
.int-side-ico {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9px;
  font-size: 14px;
}
.int-side-ico.ico-blue   { background: #EFF6FF; color: #2563EB; }
.int-side-ico.ico-amber  { background: #FFF7ED; color: #C2410C; }
.int-side-ico.ico-violet { background: #F5F3FF; color: #7C3AED; }
.int-side-ico.ico-teal   { background: #ECFEFF; color: #0E7490; }
.int-side-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.int-side-txt b { font-size: 12.5px; color: var(--wz-ink); letter-spacing: -.01em; }
.int-side-txt span { font-size: 11px; color: var(--wz-ink-soft); line-height: 1.35; }

/* Kolaż zdjęć */
.int-side-collage {
  position: relative;
  height: 132px;
  margin: 18px 0 14px;
}
.int-side-collage .cc-img {
  position: absolute;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 18px rgba(15, 42, 67, .18);
  border: 2px solid #fff;
}
.int-side-collage .cc-img:nth-child(1) { width: 52%; height: 78px; left: 0;    top: 6px;  transform: rotate(-4deg); }
.int-side-collage .cc-img:nth-child(2) { width: 44%; height: 66px; right: 0;   top: 0;    transform: rotate(3deg); }
.int-side-collage .cc-img:nth-child(3) { width: 50%; height: 70px; right: 6%;  bottom: 0; transform: rotate(-2deg); }

.int-side-quote {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--wz-ink-soft);
  font-style: italic;
}
.int-side-quote span { font-style: normal; color: var(--wz-accent); }

@media (max-width: 1100px) {
  .int-layout { grid-template-columns: 1fr; }
  .int-side { position: static; }
  .int-side-collage { height: 150px; }
}
@media (max-width: 620px) {
  .int-grid { grid-template-columns: repeat(auto-fill, minmax(135px, 1fr)); gap: 10px; }
  .int-tile:hover { transform: none; }
  .int-tile-label { font-size: 11.5px; }
  .int-benefits { gap: 6px; }
  .int-benefit { font-size: 10.5px; padding: 6px 10px; }
  .int-group-all { margin-left: 0; }
  .int-ai { flex-wrap: wrap; }
}

/* ─────────────────────────────────────────────────────────────────────────
   14. v163: DOŚWIADCZENIE GÓRSKIE — pojawia się po zaznaczeniu „Góry"
   ───────────────────────────────────────────────────────────────────────── */
.mnt-card {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: var(--wz-r-md);
  background: linear-gradient(135deg, #ECFDF5 0%, #EFF6FF 100%);
  border: 1.5px solid #C7E9DA;
  animation: mntIn .3s cubic-bezier(.22,.61,.36,1) both;
}
@keyframes mntIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.mnt-card.answered { border-color: #86C9AE; }

.mnt-head { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.mnt-ico { font-size: 24px; line-height: 1.1; flex-shrink: 0; }
.mnt-title {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--wz-ink);
  margin: 0 0 3px;
}
.mnt-sub { font-size: 12px; line-height: 1.45; color: var(--wz-ink-soft); margin: 0; }

.mnt-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.mnt-counter { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.mnt-counter button {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid #CFE5DA;
  background: #fff;
  color: #0F766E;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  touch-action: manipulation;
  transition: background var(--wz-t) var(--wz-ease), border-color var(--wz-t) var(--wz-ease);
}
.mnt-counter button:hover:not(:disabled) { background: #ECFDF5; border-color: #0F766E; }
.mnt-counter button:disabled { opacity: .4; cursor: not-allowed; }
.mnt-counter input {
  width: 64px;
  padding: 9px 6px;
  border: 1.5px solid #CFE5DA;
  border-radius: 10px;
  background: #fff;
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  color: var(--wz-ink);
}
.mnt-counter input:focus { outline: none; border-color: #0F766E; box-shadow: 0 0 0 4px rgba(15, 118, 110, .12); }

.mnt-level {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 9px 15px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #CFE5DA;
}
.mnt-level-name {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: #0F766E;
}
.mnt-level[data-level="spacer"]       .mnt-level-name { color: #0E7490; }
.mnt-level[data-level="poczatkujacy"] .mnt-level-name { color: #16A34A; }
.mnt-level[data-level="sredni"]       .mnt-level-name { color: #C2410C; }
.mnt-level[data-level="zaawansowany"] .mnt-level-name { color: #B91C1C; }
.mnt-level-desc { font-size: 11.5px; color: var(--wz-ink-soft); line-height: 1.35; }
.mnt-hint { font-size: 12px; color: var(--wz-ink-soft); margin: 0; }

@media (max-width: 620px) {
  .mnt-row { gap: 10px; }
  .mnt-level { width: 100%; }
}

/* ─────────────────────────────────────────────────────────────────────────
   15. v168: POZIOM W GÓRACH — cztery karty do wyboru
   ───────────────────────────────────────────────────────────────────────── */
.mnt-levels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.mnt-level-opt {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 14px 15px;
  border-radius: var(--wz-r-md);
  border: 1.5px solid #CFE5DA;
  background: #fff;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: transform var(--wz-t) var(--wz-ease),
              border-color var(--wz-t) var(--wz-ease),
              box-shadow var(--wz-t) var(--wz-ease);
  touch-action: manipulation;
}
.mnt-level-opt:hover {
  transform: translateY(-2px);
  border-color: #0F766E;
  box-shadow: 0 8px 20px rgba(15, 118, 110, .14);
}
.mnt-level-opt:focus-visible { outline: 2px solid #0F766E; outline-offset: 2px; }

.mnt-level-ico { font-size: 20px; line-height: 1.2; flex-shrink: 0; }
.mnt-level-txt { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.mnt-level-txt b {
  font-family: 'Sora', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--wz-ink);
}
.mnt-level-short { font-size: 11.5px; font-weight: 600; color: #0F766E; }
.mnt-level-desc { font-size: 11.5px; line-height: 1.45; color: var(--wz-ink-soft); }

.mnt-level-check {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #ECFDF5;
  border: 1.5px solid #CFE5DA;
  color: transparent;
  font-size: 11px;
  font-weight: 800;
  transition: all var(--wz-t) var(--wz-ease);
}

.mnt-level-opt.active {
  border-color: #0F766E;
  background: linear-gradient(160deg, #F0FDF9 0%, #FFFFFF 70%);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, .14);
}
.mnt-level-opt.active .mnt-level-check {
  background: #0F766E;
  border-color: #0F766E;
  color: #fff;
}

@media (max-width: 620px) {
  .mnt-levels { grid-template-columns: 1fr; }
}
