/* AIOS Audit — clean cyan / black / white
   Vlastní design, nesleduje oranžový webinar landing template.
*/

:root {
  --bg: #000000;
  --bg-2: #0A0F12;
  --bg-3: #10171C;
  --line: #1C262E;
  --line-2: #2A3742;
  --text: #FFFFFF;
  --muted: #8A95A1;
  --accent: #2DE2D5;       /* primary cyan */
  --accent-2: #5EF0E5;     /* lighter cyan */
  --accent-ink: #00231F;   /* dark text on cyan */
  --good: #2DE2D5;
}

* { box-sizing: border-box; }

html, body {
  background: var(--bg);
  color: var(--text);
  color-scheme: dark;
  font-family: 'Inter', system-ui, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
html, body { height: 100%; }
body {
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}
.audit-shell {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding-top: 16px;
  padding-bottom: 16px;
}
.audit-footer { flex: 0 0 auto; }
.audit-topbar {
  background: #000;
  border-bottom: 1px solid var(--line);
}

.font-display { font-family: 'Space Grotesk', 'Inter', sans-serif; letter-spacing: -0.02em; }
.text-accent { color: var(--accent); }
.bg-accent { background: var(--accent); }

/* ===== BUTTONS ===== */
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  border-radius: 12px;
  transition: background .15s ease, transform .12s ease;
}
.btn-primary:hover:not(:disabled) {
  background: var(--accent-2);
}
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; }

.chip { border: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
}

/* ===== PROGRESS BAR (legacy single — keep for compat) ===== */
.progress-wrap { background: transparent; margin-bottom: 14px; }
.progress-meta {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 2px 8px; font-size: 11px; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
}
.progress-meta strong { color: var(--text); font-weight: 600; }
.progress-bar {
  height: 2px; background: var(--line); position: relative;
  overflow: hidden; border-radius: 2px;
}
.progress-fill {
  height: 100%; background: var(--accent); width: 0%;
  transition: width .4s cubic-bezier(.2,.9,.3,1);
}

/* ===== CHAPTER BAR (3 segmenty pro 3 skupiny otázek) ===== */
.chapter-bar {
  display: flex; gap: 5px;
  margin-bottom: 8px;
}
.chapter-segment {
  flex: 1; height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  transition: background .25s;
}
.chapter-segment.active { background: var(--line-2); }
.chapter-fill {
  height: 100%;
  background: var(--accent);
  width: 0%;
  transition: width .4s cubic-bezier(.2,.9,.3,1);
}
.chapter-meta {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  padding: 0 2px 14px;
}
.chapter-meta strong { color: var(--text); font-weight: 600; }

/* ===== QUESTION CARD ===== */
.question-card {
  animation: cardSlide .35s cubic-bezier(.2,.9,.3,1.1);
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  /* Sjednocená výška — buttony zůstávají na stejné pozici napříč otázkami */
  display: flex;
  flex-direction: column;
  min-height: clamp(560px, 76vh, 760px);
}
.question-card .nav-row {
  margin-top: auto;
}
@media (max-width: 640px) {
  .question-card { padding: 20px 18px; border-radius: 14px; min-height: clamp(520px, 78vh, 720px); }
}
@keyframes cardSlide {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}
.q-step {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.q-label {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 600;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: .35rem;
  color: #fff;
}
.q-sublabel {
  color: var(--muted);
  font-size: .9rem;
  margin-bottom: 1rem;
  line-height: 1.45;
}

/* ===== ANSWER BUTTONS ===== */
.answer-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.answer-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: #131C24;
  border: 1.5px solid #3A4856;
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: .95rem;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
  position: relative;
}
.answer-btn:hover {
  border-color: var(--accent);
  background: #1A2530;
  transform: translateY(-1px);
}
.answer-btn.selected {
  border-color: var(--accent);
  background: rgba(45,226,213,0.1);
  box-shadow: 0 0 0 2px rgba(45,226,213,0.18) inset;
}
.answer-btn .check-mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--line-2);
  border-radius: 50%;
  margin-left: auto;
  vertical-align: middle;
  position: relative;
  flex: none;
  transition: border-color .15s, background .15s;
}
.answer-btn.multi .check-mark {
  border-radius: 5px;
}
.answer-btn.selected .check-mark {
  background: var(--accent);
  border-color: var(--accent);
}
.answer-btn.selected .check-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  background: var(--accent-ink);
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>") center/contain no-repeat;
}
.answer-btn-row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.answer-icon {
  flex: none;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 9px;
  transition: background .15s, border-color .15s, transform .15s;
}
.answer-btn:hover .answer-icon {
  border-color: var(--line-2);
}
.answer-btn.selected .answer-icon {
  background: rgba(45,226,213,0.12);
  border-color: var(--accent);
  transform: scale(1.04);
}
.answer-text { flex: 1 1 auto; line-height: 1.35; }
@media (max-width: 640px) {
  .answer-icon { width: 32px; height: 32px; font-size: 1.1rem; border-radius: 8px; }
  .answer-btn-row { gap: 10px; }
}

/* ===== TILE GRID (Q2, Q6, Q7, Q9 — kompaktní mřížka kachlí) ===== */
.tile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.tile-grid-4 { grid-template-columns: repeat(2, 1fr); }
.tile-grid-5 .tile-card:nth-child(5) { grid-column: span 2; }

.tile-card {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px; padding: 16px 12px;
  background: #131C24;
  border: 1.5px solid #3A4856;
  border-radius: 12px;
  cursor: pointer;
  text-align: center;
  min-height: 96px;
  font-family: inherit; color: var(--text);
  transition: border-color .15s, background .15s, transform .12s;
}
.tile-card:hover {
  border-color: var(--accent);
  background: #1A2530;
  transform: translateY(-1px);
}
.tile-card.selected {
  border-color: var(--accent);
  background: rgba(45,226,213,0.1);
  box-shadow: 0 0 0 2px rgba(45,226,213,0.22) inset;
}
.tile-card .answer-icon,
.tile-card .answer-icon-svg {
  width: 38px; height: 38px;
  background: transparent; border: none;
  display: flex; align-items: center; justify-content: center;
}
.tile-card .answer-icon-svg svg {
  width: 28px; height: 28px;
  color: var(--muted);
  transition: color .15s;
}
.tile-card.selected .answer-icon-svg svg { color: var(--accent); }
.tile-label {
  font-size: .88rem;
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}
.intensity-bar {
  width: 70%;
  height: 3px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 4px;
}
.intensity-fill {
  height: 100%;
  background: var(--accent);
  width: 0;
  transition: width .25s, box-shadow .15s;
}
.tile-card.selected .intensity-fill {
  box-shadow: 0 0 6px var(--accent);
}
@media (max-width: 540px) {
  .tile-card { min-height: 84px; padding: 12px 10px; }
  .tile-card .answer-icon-svg svg { width: 24px; height: 24px; }
  .tile-card .answer-icon { width: 32px; height: 32px; }
  .tile-label { font-size: .82rem; }
}

/* ===== STACKED CARDS (Q3 — horizontální karty s ikonou + text vpravo) ===== */
.stacked-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stacked-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: #131C24;
  border: 1.5px solid #3A4856;
  border-radius: 12px;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--text);
  transition: border-color .15s, background .15s, transform .12s;
}
.stacked-card:hover {
  border-color: var(--accent);
  background: #1A2530;
  transform: translateY(-1px);
}
.stacked-card.selected {
  border-color: var(--accent);
  background: rgba(45,226,213,0.1);
  box-shadow: 0 0 0 2px rgba(45,226,213,0.22) inset;
}
.stacked-icon {
  flex: none;
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(45,226,213,0.08);
  border: 1px solid rgba(45,226,213,0.3);
  border-radius: 10px;
  color: var(--accent);
}
.stacked-icon .answer-icon-svg {
  background: transparent; border: none;
  width: auto; height: auto;
}
.stacked-icon .answer-icon-svg svg { width: 24px; height: 24px; color: var(--accent); }
.stacked-card.selected .stacked-icon { background: rgba(45,226,213,0.15); }
.stacked-content { flex: 1; min-width: 0; }
.stacked-head {
  display: block;
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.stacked-desc {
  display: block;
  color: #C5CFD9;
  font-size: .85rem;
  line-height: 1.4;
}
.stacked-arrow {
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.stacked-card.selected .stacked-arrow {
  background: var(--accent);
  color: var(--accent-ink);
}
@media (max-width: 540px) {
  .stacked-card { padding: 12px 14px; gap: 10px; }
  .stacked-icon { width: 40px; height: 40px; }
  .stacked-icon .answer-icon-svg svg { width: 20px; height: 20px; }
  .stacked-head { font-size: .92rem; }
  .stacked-desc { font-size: .78rem; }
}

/* ===== MULTI GRID (Q4, Q5 — 2-col compact multi-select) ===== */
.multi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.multi-grid .answer-btn {
  padding: 11px 13px;
}
.multi-grid .answer-text {
  font-size: .85rem;
  line-height: 1.3;
}
@media (max-width: 540px) {
  .multi-grid { grid-template-columns: 1fr; }
}

/* ===== SVG ICON v answer-icon ===== */
.answer-icon-svg {
  display: inline-flex; align-items: center; justify-content: center;
}
.answer-icon-svg svg {
  width: 22px; height: 22px;
  color: var(--muted);
  transition: color .15s;
}
.answer-btn:hover .answer-icon-svg svg { color: var(--text); }
.answer-btn.selected .answer-icon-svg svg { color: var(--accent); }

/* ===== IMAGE GRID (Leaply-style image cards, vždy 2 sloupce) ===== */
.image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.image-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #131C24;
  border: 1.5px solid #3A4856;
  border-radius: 11px;
  padding: 0;
  cursor: pointer;
  overflow: hidden;
  transition: border-color .15s, transform .12s, box-shadow .15s;
  text-align: left;
  font-family: inherit;
}
.image-card:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}
.image-card.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,226,213,0.18);
}
.image-card-img {
  display: block;
  width: 100%;
  /* Viewport-based: vejde se do karty bez scrollu i s 5 image cards + Něco jiného + bubble */
  height: clamp(56px, 9vh, 100px);
  background-size: cover;
  background-position: center;
  background-color: var(--bg-3);
  background-repeat: no-repeat;
}
.image-card-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 6px 11px;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  transition: background .15s;
  min-height: 32px;
}
.image-card.selected .image-card-bar {
  background: var(--accent);
  border-top-color: var(--accent);
}
.image-card-label {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.image-card.selected .image-card-label { color: var(--accent-ink); }
.image-card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  flex: none;
  transition: background .15s, color .15s;
}
.image-card.selected .image-card-arrow {
  background: var(--accent-ink);
  color: var(--accent);
}
@media (max-width: 480px) {
  .image-card-bar { padding: 7px 10px; min-height: 34px; }
  .image-card-label { font-size: .82rem; }
  .image-card-arrow { width: 20px; height: 20px; font-size: .7rem; }
  .image-grid { gap: 8px; }
}
/* Hodně krátký viewport — ještě kompaktnější */
@media (max-height: 720px) {
  .image-card-img { height: clamp(60px, 11vh, 110px); }
  .image-card-bar { padding: 6px 10px; min-height: 32px; }
  .image-card-label { font-size: .8rem; }
}

/* OTHER inline input */
.other-input {
  width: 100%;
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 12px 14px;
  color: var(--text);
  font-size: .95rem;
  margin-top: 8px;
  outline: none;
  font-family: inherit;
}
.other-input:focus { box-shadow: 0 0 0 3px rgba(45,226,213,0.18); }

/* ===== TEXTAREA ===== */
.textarea-wrap textarea {
  width: 100%;
  min-height: 96px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  resize: vertical;
  outline: none;
  transition: border-color .15s;
}
/* Nepovinná „jedna věta" — nízké pole na 2 řádky (uživatel si může vytáhnout). */
.textarea-wrap.textarea-compact textarea { min-height: 54px; }
.textarea-wrap textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,226,213,0.18);
}
.textarea-counter {
  text-align: right;
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
/* Odznak „nepovinné" vedle nadpisu otázky */
.optional-pill {
  display: inline-block;
  vertical-align: middle;
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(138,149,161,0.12);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 3px 9px;
  margin-left: 10px;
  position: relative;
  top: -3px;
}

/* ===== COMBO (Q8 — sub-karty s ikonami) ===== */
.combo-part-card {
  background: #131C24;
  border: 1.5px solid #3A4856;
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.combo-part-card:last-child { margin-bottom: 0; }
.combo-part-header {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.combo-part-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px;
  background: rgba(45,226,213,0.12);
  border: 1.5px solid rgba(45,226,213,0.5);
  border-radius: 12px;
  color: var(--accent);
  flex: none;
  box-shadow: 0 0 18px -4px rgba(45,226,213,0.35);
}
.combo-part-icon svg { width: 26px; height: 26px; }
.combo-part-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #fff;
  letter-spacing: -0.01em;
}
.combo-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.combo-options .answer-btn {
  width: auto;
  flex: 0 1 auto;
  padding: 12px 18px;
  font-size: .95rem;
  font-weight: 600;
  background: #1A2530;
  border: 2px solid #485768;
  color: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color .15s, background .15s, transform .12s;
}
.combo-options .answer-btn:hover {
  border-color: var(--accent);
  background: #1F2D38;
  transform: translateY(-1px);
}
.combo-options .answer-btn.selected {
  border-color: var(--accent);
  background: rgba(45,226,213,0.15);
  box-shadow: 0 0 0 3px rgba(45,226,213,0.25) inset, 0 0 16px -2px rgba(45,226,213,0.4);
  color: var(--accent);
  font-weight: 700;
}

/* ===== NAV ===== */
.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 18px;
  gap: 10px;
}
.btn-back {
  background: none;
  border: 1px solid var(--line);
  color: var(--muted);
  padding: 10px 18px;
  border-radius: 10px;
  cursor: pointer;
  font-size: .9rem;
  transition: all .15s;
}
.btn-back:hover { color: var(--text); border-color: var(--line-2); }
.btn-next {
  padding: 11px 22px;
  border-radius: 10px;
  font-size: .95rem;
  border: none;
  cursor: pointer;
}

/* ===== ENCOURAGEMENT ===== */
.encouragement {
  text-align: left;
  color: var(--muted);
  font-size: .85rem;
  padding: 10px 14px;
  background: transparent;
  border-left: 2px solid var(--accent);
  border-radius: 0;
  margin-bottom: 12px;
  animation: cardSlide .35s ease;
  line-height: 1.45;
}

/* ===== HERO ILLUSTRATION (intro 3×3 grid) ===== */
.hero-illu {
  width: clamp(180px, 32vh, 240px);
  max-width: 60vw;
  aspect-ratio: 1;
  margin: 0 auto 18px;
}
.hero-svg { width: 100%; height: 100%; display: block; }
.hero-svg .tile rect {
  fill: var(--bg-3);
  stroke: var(--line);
  stroke-width: 1;
  transition: fill .3s, stroke .3s;
}
.hero-svg .tile-icon {
  stroke: var(--muted);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-svg .tile.active rect {
  fill: rgba(45,226,213,0.12);
  stroke: var(--accent);
}
.hero-svg .tile.active .tile-icon {
  stroke: var(--accent);
  animation: tilePulse 3s ease-in-out infinite;
}
@keyframes tilePulse {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* ===== SOCIAL PROOF BAR (intro pod CTA) ===== */
.social-proof-bar {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-2);
  font-size: .85rem;
  color: var(--muted);
  margin-top: 22px;
  max-width: 100%;
  text-align: left;
}
.social-proof-bar strong { color: var(--text); font-weight: 600; }
.social-proof-icon {
  color: #FACC15;
  letter-spacing: -1px;
  font-size: .82rem;
  flex: none;
}
@media (max-width: 480px) {
  .social-proof-bar { font-size: .78rem; padding: 8px 14px; }
}

/* ===== HERO PREVIEW (mini ukázka výstupu na intru) ===== */
.hero-preview {
  position: relative;
  overflow: hidden;
  text-align: left;
  max-width: 440px;
  margin: 0 auto 30px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  box-shadow: 0 26px 60px -30px rgba(0,0,0,.8);
  animation: hpReveal .6s cubic-bezier(.2,.9,.3,1.1) both;
}
.hero-preview::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background: radial-gradient(130% 90% at 50% -25%, rgba(45,226,213,.12), transparent 60%);
}
.hp-head {
  display: flex; align-items: center; justify-content: flex-start;
  margin-bottom: 15px;
}
.hp-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .62rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
  background: rgba(45,226,213,0.12); color: var(--accent);
  border: 1px solid rgba(45,226,213,0.5);
  animation: hpBadgePop .5s .3s ease both;
}
.hp-list { display: flex; flex-direction: column; gap: 13px; }
.hp-row { display: flex; gap: 12px; align-items: flex-start; }
.hp-num {
  flex: 0 0 auto; width: 22px; height: 22px; border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(45,226,213,0.12); color: var(--accent);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: .72rem;
  margin-top: 1px;
}
.hp-main { flex: 1 1 auto; min-width: 0; }
.hp-rowtop {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  margin-bottom: 8px;
}
.hp-name {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: .82rem;
  color: var(--text);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.hp-tag {
  flex: 0 0 auto;
  font-size: .56rem; letter-spacing: .07em; text-transform: uppercase; font-weight: 600;
  color: var(--muted); background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 3px 8px; border-radius: 999px;
}
.hp-bar {
  height: 6px; border-radius: 999px;
  background: rgba(255,255,255,0.06); overflow: hidden;
}
.hp-fill {
  display: block; height: 100%; width: 0; border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  transition: width 1.1s cubic-bezier(.2,.9,.3,1);
}
.hp-row:nth-child(1) .hp-fill { transition-delay: .30s; }
.hp-row:nth-child(2) .hp-fill { transition-delay: .46s; }
.hp-row:nth-child(3) .hp-fill { transition-delay: .62s; }

/* Postupné nasvícení textu intra po načtení (jako u inspirace) */
.intro-reveal > * { opacity: 0; animation: introUp .55s cubic-bezier(.2,.9,.3,1) forwards; }
.intro-reveal > *:nth-child(1) { animation-delay: .10s; }
.intro-reveal > *:nth-child(2) { animation-delay: .20s; }
.intro-reveal > *:nth-child(3) { animation-delay: .30s; }
.intro-reveal > *:nth-child(4) { animation-delay: .40s; }
.intro-reveal > *:nth-child(5) { animation-delay: .50s; }
.intro-reveal > *:nth-child(6) { animation-delay: .60s; }

@keyframes hpReveal {
  from { opacity: 0; transform: translateY(14px) scale(.97); }
  to   { opacity: 1; transform: none; }
}
@keyframes hpBadgePop {
  0%   { opacity: 0; transform: scale(.8); }
  60%  { transform: scale(1.06); }
  100% { opacity: 1; transform: scale(1); }
}
@keyframes introUp {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-preview, .hp-badge { animation: none; }
  .hp-fill { transition: none; }
  .intro-reveal > * { opacity: 1; animation: none; }
}

/* ===== MIKRO-REAKCE (cyan speech bubble, Noom-style) ===== */
.micro-reaction {
  position: relative;
  margin-top: 16px;
  padding: 0;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .25s ease;
  min-height: 0;
}
.micro-reaction.show:not(:empty) {
  opacity: 1;
  transform: none;
  padding: 12px 16px;
  background: rgba(45,226,213,0.06);
  border: 1px solid rgba(45,226,213,0.32);
  border-radius: 12px;
}
.micro-reaction.show:not(:empty)::before {
  content: '';
  position: absolute;
  top: -7px; left: 22px;
  width: 12px; height: 12px;
  background: rgba(45,226,213,0.06);
  border-top: 1px solid rgba(45,226,213,0.32);
  border-left: 1px solid rgba(45,226,213,0.32);
  transform: rotate(45deg);
}
.micro-reaction .mr-head {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: var(--accent);
  letter-spacing: -0.01em;
  margin-bottom: 3px;
}
.micro-reaction .mr-body {
  color: #C5CFD9;
  font-size: .88rem;
  line-height: 1.45;
}

/* ===== GROUP TRANSITION (full-screen mezi skupinami, bez timeru) ===== */
.transition-screen {
  text-align: center;
  padding: 64px 28px 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  animation: cardSlide .4s cubic-bezier(.2,.9,.3,1.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.transition-pulse {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,226,213,0.35) 0%, rgba(45,226,213,0) 70%);
  position: relative;
  margin-bottom: 22px;
  animation: transPulse 1.4s ease-in-out infinite;
}
.transition-pulse::after {
  content: '';
  position: absolute;
  inset: 18px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(45,226,213,0.6);
}
@keyframes transPulse {
  0%, 100% { transform: scale(1); opacity: .9; }
  50%      { transform: scale(1.15); opacity: 1; }
}
.transition-title {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.25;
  color: #fff;
  max-width: 540px;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.transition-body {
  color: #C5CFD9;
  font-size: 1rem;
  line-height: 1.5;
  max-width: 520px;
  margin-bottom: 28px;
}
.transition-cta {
  padding: 13px 28px;
  border-radius: 12px;
  border: none;
  font-size: 1rem;
  font-family: inherit;
  cursor: pointer;
}
.transition-progress {
  width: 120px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
  margin-top: 18px;
}
.transition-progress-fill {
  width: 0%;
  height: 100%;
  background: var(--accent);
  animation: transAuto 2.2s linear forwards;
}
@keyframes transAuto {
  from { width: 0%; }
  to   { width: 100%; }
}
@media (max-width: 640px) {
  .transition-screen { padding: 44px 22px 32px; }
}

/* ===== EMAIL GATE ===== */
.gate-lock {
  width: 64px; height: 64px;
  border-radius: 16px;
  background: rgba(45,226,213,0.08);
  border: 1px solid rgba(45,226,213,0.4);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.gate-headline {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 2.6vw, 1.85rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 8px;
  color: #fff;
  letter-spacing: -0.02em;
}
.gate-sub {
  text-align: center; color: #C5CFD9;
  font-size: .95rem; margin-bottom: 22px;
  line-height: 1.45;
}
.gate-reassure-row {
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: center; align-items: center;
  margin-top: 12px; padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: .78rem; color: var(--muted);
}
.gate-reassure-row span {
  display: inline-flex; align-items: center; gap: 5px;
}
.gate-reassure-row svg { color: var(--accent); flex: none; }

/* Cloudflare Turnstile widget na bráně */
.turnstile-slot {
  display: flex; justify-content: center;
  margin-top: 14px; min-height: 65px;
}
.turnstile-slot:empty { min-height: 0; margin-top: 0; }

.gate-wrap input[type="text"],
.gate-wrap input[type="email"],
.gate-wrap input[type="tel"] {
  width: 100% !important;
  background: #1A2530 !important;
  border: 1.5px solid #364553 !important;
  border-radius: 10px !important;
  padding: 14px 16px !important;
  color: #fff !important;
  font-size: 1rem !important;
  outline: none;
  font-family: inherit;
  transition: border-color .15s, background .15s;
  -webkit-appearance: none;
  appearance: none;
}
/* Přebít Chrome/Safari autofill (žluté/bílé pozadí na tel/email inputech) */
.gate-wrap input:-webkit-autofill,
.gate-wrap input:-webkit-autofill:hover,
.gate-wrap input:-webkit-autofill:focus,
.gate-wrap input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #1A2530 inset !important;
  -webkit-text-fill-color: #fff !important;
  caret-color: #fff !important;
  background-color: #1A2530 !important;
  border: 1.5px solid #364553 !important;
  transition: background-color 9999s ease-in-out 0s;
}
.gate-wrap input::placeholder { color: #6B7886; }
.gate-wrap label.field span.lbl { color: #C5CFD9; font-size: .85rem; }
.gate-wrap input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(45,226,213,0.18);
}
.gate-wrap label.field {
  display: block;
  margin-bottom: 12px;
}
.gate-wrap label.field span.lbl {
  display: block;
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 6px;
}
.gate-wrap label.field span.lbl em { color: var(--accent); font-style: normal; }
.gdpr-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--muted);
  margin: 14px 0 18px;
}
.gdpr-row input { margin-top: 3px; flex: none; accent-color: var(--accent); }
.gdpr-row a { color: var(--accent); text-decoration: underline; }

.gdpr-passive {
  font-size: .78rem;
  color: var(--muted);
  margin: 14px 0 14px;
  line-height: 1.5;
}
.gdpr-passive a {
  color: var(--accent);
  text-decoration: underline;
}

/* ===== LOADING (legacy single-spinner — keep for compat) ===== */
.loading-wrap { text-align: center; padding: 50px 20px; }
.loading-spinner {
  display: inline-block; width: 48px; height: 48px;
  border: 2px solid rgba(45,226,213,0.18);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 22px;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loading-msg {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem; color: var(--text);
  min-height: 1.6em; transition: opacity .25s;
}
.loading-dots::after {
  content: ''; display: inline-block;
  animation: dots 1.4s steps(4, end) infinite;
}
@keyframes dots {
  0% { content: ''; } 25% { content: '.'; }
  50% { content: '..'; } 75% { content: '...'; } 100% { content: ''; }
}

/* ===== LOADING v2 — Multi-stage Noom-style loader ===== */
.loading-wrap-v2 {
  padding: 36px 28px 32px;
  text-align: center;
}
.loading-headline {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.85rem);
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.loader-stages {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 480px; margin: 0 auto 28px;
  text-align: left;
}
.loader-stage { transition: opacity .35s; }
.loader-stage[data-state="pending"] { opacity: 0.35; }
.loader-stage[data-state="active"]  { opacity: 1; }
.loader-stage[data-state="done"]    { opacity: 1; }
.loader-stage-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 6px; font-size: .92rem;
  color: #fff;
}
.loader-stage-label { flex: 1; }
.loader-stage-pct {
  color: var(--muted); font-size: .8rem;
  min-width: 44px; text-align: right;
  font-variant-numeric: tabular-nums;
}
.loader-stage-check {
  display: none; color: var(--accent); font-weight: 700;
  min-width: 44px; text-align: right; font-size: 1rem;
}
.loader-stage[data-state="done"] .loader-stage-pct  { display: none; }
.loader-stage[data-state="done"] .loader-stage-check { display: inline; }
.loader-stage-bar {
  height: 3px; background: var(--line);
  border-radius: 2px; overflow: hidden;
}
.loader-stage-fill {
  height: 100%; width: 0%;
  background: var(--accent);
  transition: width .12s linear;
}

/* Testimonial card pod loaderem */
.testimonial-card {
  margin: 24px auto 0;
  padding: 14px 16px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex; gap: 12px; align-items: flex-start;
  max-width: 480px;
  text-align: left;
  transition: opacity .25s;
  opacity: 1;
}
.testimonial-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent); color: var(--accent-ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .9rem;
  flex: none;
}
.testimonial-body { flex: 1; min-width: 0; }
.testimonial-name { font-weight: 600; font-size: .9rem; color: #fff; }
.testimonial-stars {
  color: #FACC15; font-size: .78rem;
  letter-spacing: -0.5px; margin-left: 8px;
}
.testimonial-role {
  font-size: .75rem; color: var(--muted);
  margin-top: 2px;
}
.testimonial-text {
  color: #C5CFD9; font-size: .85rem;
  line-height: 1.45; margin-top: 6px;
}

/* ===== RESULT ===== */
.result-wrap { animation: resultReveal .5s ease; }
.result-hero { text-align: center; margin-bottom: 8px; }
.result-hero-decoration {
  width: 180px; max-width: 60%; height: auto;
  display: block; margin: 0 auto 14px;
  filter: drop-shadow(0 0 12px rgba(45,226,213,0.3));
}

/* ===== PREDICTION STRIP (3 hlavní čísla v result) ===== */
.prediction-strip {
  background: linear-gradient(135deg, rgba(45,226,213,0.1), rgba(45,226,213,0.02));
  border: 1px solid rgba(45,226,213,0.55);
  border-radius: 18px;
  padding: 24px 22px;
  margin: 18px 0 28px;
  text-align: center;
  box-shadow: 0 0 60px -10px rgba(45,226,213,0.25);
}
.prediction-label {
  font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent); font-weight: 700;
  margin-bottom: 16px;
}
.prediction-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.prediction-cell { padding: 0 6px; }
.prediction-num {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(1.3rem, 3vw, 1.95rem);
  color: var(--accent);
  margin-bottom: 4px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.prediction-sub {
  font-size: .78rem;
  color: var(--muted);
  line-height: 1.3;
}
@media (max-width: 540px) {
  .prediction-grid { grid-template-columns: 1fr; gap: 12px; }
  .prediction-cell {
    padding: 12px 0;
    border-bottom: 1px dashed var(--line);
  }
  .prediction-cell:last-child { border-bottom: none; }
}
@keyframes resultReveal {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
.result-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  line-height: 1.2;
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
}
.result-headline .accent { color: var(--accent); }

.state-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 22px;
  margin-bottom: 14px;
}
.state-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 12px;
}
.state-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: .9rem;
}
.state-row:last-child { border-bottom: none; }
.state-row .lbl { color: var(--muted); }
.state-row .val { font-weight: 600; color: var(--text); }

.impact-card {
  background: var(--bg-2);
  border: 1px solid var(--accent);
  border-radius: 16px;
  padding: 26px;
  margin: 18px 0 28px;
}
.impact-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 16px;
  text-align: center;
}
.impact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: .95rem;
}
.impact-row .icon { font-size: 1.2rem; margin-right: 10px; }
.impact-total {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}
.impact-total .num {
  color: var(--accent);
  font-size: 1.5rem;
}
.impact-annual {
  text-align: center;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.05rem;
  color: var(--text);
}
.impact-annual strong { color: var(--accent); font-size: 1.25rem; }

.usecase-section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 700;
  text-align: center;
  margin: 36px 0 18px;
  letter-spacing: -0.02em;
}
.usecase-section-title .accent { color: var(--accent); }

.cta-block--top { margin-top: 24px; margin-bottom: 8px; }

/* Booking modal — Kourse iframe popup */
body.modal-open { overflow: hidden; }
.booking-modal {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  animation: bookingFadeIn .18s ease;
}
@keyframes bookingFadeIn { from { opacity: 0; } to { opacity: 1; } }
.booking-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.booking-dialog {
  position: relative;
  width: 100%; max-width: 920px;
  max-height: 92vh;
  background: #0A0F12;
  border: 1.5px solid var(--line-2);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6), 0 0 0 1px rgba(45,226,213,0.08);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.booking-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: #0A0F12;
  border-bottom: 1px solid var(--line-2);
  flex: none;
}
.booking-header-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: .98rem;
  display: flex; align-items: center; gap: 10px;
}
.booking-header-title::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(45,226,213,0.18);
}
.booking-close {
  width: 34px; height: 34px;
  background: #1A2530;
  border: 1px solid var(--line-2);
  color: #fff;
  border-radius: 50%;
  font-size: 1.35rem; line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, border-color .15s, color .15s;
  flex: none;
}
.booking-close:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #00231F;
}
.booking-frame-wrap {
  flex: 1;
  overflow: auto;
  background: #fff;
  -webkit-overflow-scrolling: touch;
}
.booking-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 720px;
}
@media (max-width: 640px) {
  .booking-modal { padding: 0; }
  .booking-dialog { max-height: 100vh; height: 100vh; border-radius: 0; border: none; }
}

.usecase-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
@media (min-width: 900px) { .usecase-grid { grid-template-columns: repeat(3, 1fr); } }

.usecase-card {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  animation: cardSlide .45s ease both;
  transition: border-color .15s;
}
.usecase-icon-hero {
  width: 44px; height: 44px;
  background: rgba(45,226,213,0.1);
  border: 1px solid rgba(45,226,213,0.4);
  color: var(--accent);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.15rem;
  margin-bottom: 6px;
}
.usecase-roi-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--accent);
  color: var(--accent-ink);
  padding: 4px 10px;
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: -0.01em;
}
.usecase-card:hover { border-color: var(--line-2); }
.usecase-card:nth-child(2) { animation-delay: .1s; }
.usecase-card:nth-child(3) { animation-delay: .2s; }
.usecase-tag {
  display: inline-block;
  font-size: .68rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 5px;
  width: max-content;
}
.usecase-tag.time {
  background: rgba(45,226,213,0.1);
  color: var(--accent);
  border: 1px solid rgba(45,226,213,0.3);
}
.usecase-tag.revenue {
  background: #fff;
  color: #000;
  border: 1px solid #fff;
}
.usecase-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.3;
}
.usecase-desc {
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.5;
  flex: 1;
}
.usecase-impact {
  border-top: 1px solid var(--line);
  padding-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: .82rem;
}
.usecase-impact .row { display: flex; justify-content: space-between; }
.usecase-impact .lbl { color: var(--muted); }
.usecase-impact .val { color: var(--text); font-weight: 600; }

.cta-block {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: left;
  padding: 28px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  margin-top: 22px;
}
.cta-avatar {
  width: 92px; height: 92px;
  border-radius: 50%;
  object-fit: cover;
  flex: none;
  border: 2px solid var(--accent);
  box-shadow: 0 0 32px -4px rgba(45,226,213,0.55);
}
.cta-content { flex: 1; min-width: 0; }
.cta-content h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cta-content p {
  color: #C5CFD9;
  margin-bottom: 18px;
  line-height: 1.5;
}
.cta-footnote {
  margin-top: 14px !important;
  font-size: .82rem !important;
  color: var(--muted) !important;
}
.cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
@media (max-width: 540px) {
  .cta-block { flex-direction: column; text-align: center; padding: 24px 20px; }
  .cta-avatar { width: 80px; height: 80px; }
  .cta-buttons { justify-content: center; }
}
.cta-secondary {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--text);
  padding: 12px 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all .15s;
}
.cta-secondary:hover { border-color: var(--accent); color: var(--accent); }

/* ===== ERROR ===== */
.error-box {
  background: rgba(45,226,213,0.05);
  border: 1px solid var(--accent);
  border-radius: 10px;
  padding: 14px 18px;
  color: var(--text);
  margin-bottom: 14px;
  font-size: .92rem;
}
.field-error { color: var(--accent); font-size: .82rem; margin-top: 6px; }

/* ===== TIGHTER ON SHORT VIEWPORTS ===== */
@media (max-height: 760px) {
  .question-card { padding: 18px 18px; }
  .answer-btn { padding: 9px 13px; font-size: .92rem; }
  .answer-list { gap: 6px; }
  .q-label { font-size: clamp(1.05rem, 2vw, 1.35rem); }
  .q-sublabel { margin-bottom: .75rem; font-size: .85rem; }
  .encouragement { padding: 8px 12px; margin-bottom: 10px; font-size: .8rem; }
  .nav-row { margin-top: 14px; }
  .image-grid { gap: 8px; }
  .image-card { border-radius: 10px; }
  .answer-btn-other { padding: 8px 12px; font-size: .85rem; }
}
/* Pokud má karta image-grid, používej kompaktnější "Něco jiného" */
.answer-btn-other {
  padding: 9px 13px;
  font-size: .9rem;
}

/* ============================================================================
   AUDIT OBCHOD — výsledek ve třech stavech (zelená / oranžová / červená)
   ============================================================================ */
:root {
  --amber: #F5A524;
  --amber-ink: #241700;
  --danger: #FF7A7A;
}

.fit-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px;
  margin-bottom: 14px;
}
.fit-badge--zelena   { background: rgba(45,226,213,0.12); color: var(--accent); border: 1px solid rgba(45,226,213,0.5); }
.fit-badge--oranzova { background: rgba(245,165,36,0.12); color: var(--amber);  border: 1px solid rgba(245,165,36,0.5); }
.fit-badge--cervena  { background: rgba(255,122,122,0.10); color: var(--danger); border: 1px solid rgba(255,122,122,0.45); }

.result-uvod {
  text-align: center;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 36rem;
  margin: 0 auto 8px;
}

/* Hlavní problém */
.problem-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 16px 20px;
  margin: 22px 0;
}
.result-state--oranzova .problem-card { border-left-color: var(--amber); }
.result-state--cervena  .problem-card { border-left-color: var(--danger); }
.problem-label {
  display: block;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); font-weight: 700; margin-bottom: 6px;
}
.problem-text { font-size: 1.05rem; line-height: 1.5; color: var(--text); }

/* Doporučená řešení */
.solutions-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin: 30px 0 16px;
}
.solutions-list { display: flex; flex-direction: column; gap: 12px; }
.solution-card {
  display: flex; gap: 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
}
.solution-index {
  flex: 0 0 auto;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 8px;
  background: rgba(45,226,213,0.12);
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
}
.result-state--oranzova .solution-index { background: rgba(245,165,36,0.14); color: var(--amber); }
.solution-body { min-width: 0; }
.solution-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 1.05rem;
  margin-bottom: 6px; line-height: 1.3;
}
.solution-why  { font-size: .95rem; line-height: 1.5; color: var(--text); margin-bottom: 6px; }
.solution-desc { font-size: .88rem; line-height: 1.5; color: var(--muted); }
.solution-tools { margin-top: 10px; display: flex; flex-wrap: wrap; gap: 6px; }
.tool-chip {
  font-size: .72rem; color: var(--muted);
  background: var(--bg-3); border: 1px solid var(--line);
  padding: 3px 9px; border-radius: 999px;
}

/* Páka (zelená) */
.paka-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(45,226,213,0.10), rgba(45,226,213,0.02));
  border: 1px solid rgba(45,226,213,0.45);
  border-radius: 14px;
  padding: 16px 20px; margin: 20px 0;
}
.paka-card p { font-size: .98rem; line-height: 1.5; }
.paka-icon { font-size: 1.2rem; }

/* Co dál (oranžová / červená) */
.codal-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px; margin: 22px 0;
}
.codal-card--oranzova { border-color: rgba(245,165,36,0.5); background: rgba(245,165,36,0.05); }
.codal-card--cervena  { border-color: rgba(255,122,122,0.4); background: rgba(255,122,122,0.04); }
.codal-label {
  display: block;
  font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  font-weight: 700; margin-bottom: 8px;
}
.codal-card--oranzova .codal-label { color: var(--amber); }
.codal-card--cervena  .codal-label { color: var(--danger); }
.codal-text { font-size: 1.02rem; line-height: 1.55; color: var(--text); }

/* Varování o legalitě */
.legal-card {
  display: flex; gap: 10px; align-items: flex-start;
  background: rgba(245,165,36,0.06);
  border: 1px solid rgba(245,165,36,0.35);
  border-radius: 12px;
  padding: 14px 16px; margin: 20px 0;
}
.legal-card p { font-size: .86rem; line-height: 1.5; color: var(--muted); }
.legal-icon { font-size: 1rem; }

/* CTA — měkká varianta pro červenou */
.cta-soft {
  text-align: center;
  border-top: 1px solid var(--line);
  margin-top: 28px; padding-top: 22px;
}
.cta-soft p { color: var(--muted); font-size: .95rem; line-height: 1.55; max-width: 34rem; margin: 0 auto 8px; }
.cta-soft-link a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

/* CTA blok — barevné odlišení oranžové (struktura .cta-block už existuje) */
.cta-block--oranzova { border-color: rgba(245,165,36,0.45); }
