/* ============================================================
   AI Toolbox — Transformio brand identity
   Tokens, layout, components, responsive
   ============================================================ */

:root {
  /* === BRAND COLORS === */
  --midnight: #05071A;
  --midnight-2: #0B0E2A;
  --midnight-3: #14183C;
  --white: #FFFFFF;
  --grey-100: #F4F5FA;
  --grey-300: #c9cdde;
  --grey-500: #8088AC;
  --grey-700: #3F4570;
  --grey-900: #1A1E40;

  --turquoise: #21C1E1;
  --turquoise-2: #21E1E1;
  --pink: #FA2FB5;
  --pink-2: #D718F0;
  --yellow: #DFFF24;
  --lilac: #806BEC;
  --sky: #548CFF;
  --orchard: #7900FF;

  /* Gradients */
  --grad-primary: linear-gradient(135deg, #21E1E1 0%, #FA2FB5 100%);
  --grad-secondary: linear-gradient(135deg, #8C52FF 0%, #5CE1E6 100%);
  --grad-text: linear-gradient(90deg, #21E1E1 0%, #FA2FB5 100%);

  /* Semantic */
  --bg: var(--midnight);
  --bg-elev: var(--midnight-2);
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.16);
  --text: var(--white);
  --text-muted: var(--grey-300);
  --text-dim: var(--grey-500);

  /* Tags */
  --tag-free-bg: rgba(33, 225, 225, 0.14);
  --tag-free-fg: #5DECEC;
  --tag-freemium-bg: rgba(128, 107, 236, 0.18);
  --tag-freemium-fg: #B5A8F5;
  --tag-paid-bg: rgba(250, 47, 181, 0.14);
  --tag-paid-fg: #FF7BCE;
  --tag-level-bg: rgba(255, 255, 255, 0.06);
  --tag-level-fg: var(--grey-300);
  --warn: var(--yellow);

  /* Type */
  --font-sans: 'Sora', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;

  /* Spacing scale */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;

  /* Radius */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-full: 999px;

  /* Shadow */
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.45);

  /* Motion */
  --t-fast: 120ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-base: 200ms cubic-bezier(0.2, 0.8, 0.2, 1);
  --t-slow: 360ms cubic-bezier(0.2, 0.8, 0.2, 1);

  /* Layout */
  --container: 1200px;
  --header-h: 68px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  background: var(--bg); /* fallback base color, body::before kreslí nad to */
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: transparent; /* body::before kreslí background */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100dvh;
  overflow-x: hidden;
  position: relative;
}

/* Persistentný hero background pod kartami — vidíš ho pri scrollovaní cez priehľadné sekcie */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    /* Tmavý overlay (silnejší aby foto bola len atmosfera) */
    linear-gradient(180deg, rgba(5, 7, 26, 0.94) 0%, rgba(5, 7, 26, 0.97) 100%),
    /* Hero foto ako atmosferický layer */
    url('assets/hero-workshop.jpg') center 40% / cover no-repeat;
  filter: blur(6px) saturate(110%);
  pointer-events: none;
}
/* Na mobile zjednodušiť (žiadny blur — výkon batérie) */
@media (max-width: 768px) {
  body::before {
    background: var(--bg);
    filter: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  body::before { filter: none; }
}

img, svg { display: block; max-width: 100%; height: auto; }

button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

a { color: inherit; text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--turquoise); }

input, select { font: inherit; color: inherit; }

h1, h2, h3, h4 { margin: 0; font-weight: 800; letter-spacing: -0.02em; line-height: 1.15; }

p { margin: 0 0 1em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--s-5);
}

@media (min-width: 768px) {
  .container { padding-inline: var(--s-6); }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--turquoise);
  color: var(--midnight);
  padding: 10px 16px;
  border-radius: var(--r-sm);
  font-weight: 700;
  z-index: 1000;
}
.skip-link:focus { top: 12px; }

/* Focus rings */
:focus-visible {
  outline: 2px solid var(--turquoise);
  outline-offset: 3px;
  border-radius: 4px;
}

/* CRITICAL: [hidden] must override component display rules (.btn, .card, etc.) */
[hidden] { display: none !important; }

/* === Wider, BRAND-COLOR scrollbar (visible, not faint) === */
html {
  scrollbar-color: #5DECEC var(--midnight-2); /* turquoise thumb, midnight track */
  scrollbar-width: auto;
}
::-webkit-scrollbar { width: 16px; height: 16px; }
::-webkit-scrollbar-track {
  background: var(--midnight-2);
  border-left: 1px solid var(--border);
}
::-webkit-scrollbar-thumb {
  /* Brand turquoise s outline efektom (border = track color) */
  background: rgba(33, 225, 225, 0.55);
  border-radius: 8px;
  border: 3px solid var(--midnight-2);
  background-clip: padding-box;
  min-height: 40px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--turquoise);
  background-clip: padding-box;
  border: 3px solid var(--midnight-2);
}
::-webkit-scrollbar-thumb:active {
  background: var(--pink);
  background-clip: padding-box;
  border: 3px solid var(--midnight-2);
}
::-webkit-scrollbar-corner { background: var(--midnight-2); }

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
  position: sticky; top: 0; z-index: 50;
  height: var(--header-h);
  background: rgba(5, 7, 26, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-5);
}

.brand-wrap { display: inline-flex; align-items: center; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px 6px 8px;
  border-radius: var(--r-md);
  transition: background var(--t-fast);
}
.brand:hover { background: var(--bg-card); }
.brand-home {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  border-radius: var(--r-sm);
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.brand-home svg { width: 16px; height: 16px; }
.brand:hover .brand-home {
  color: var(--pink);
  border-color: var(--pink);
  background: rgba(250, 47, 181, 0.08);
}
.brand-symbol { width: 28px; height: 28px; }
.brand-text { display: inline-flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 800; font-size: 17px; letter-spacing: -0.01em; color: var(--white); }
.brand-by {
  font-weight: 300;
  font-size: 11px;
  color: var(--text-dim);
  margin-top: 3px;
  text-decoration: none;
  transition: color var(--t-fast);
}
.brand-by:hover { color: var(--pink); }
@media (max-width: 480px) {
  .brand { gap: 8px; padding: 4px 6px; }
  .brand-home { width: 26px; height: 26px; }
  .brand-symbol { display: none; } /* Save space on mobile */
}

/* Nav */
.primary-nav { display: flex; align-items: center; }
.nav-menu {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: var(--s-5);
}
.nav-menu a {
  font-weight: 500; font-size: 17.5px; /* +25% z pôvodných 14px */
  color: var(--text-muted);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 0;
  position: relative;
  transition: color var(--t-fast);
  letter-spacing: -0.01em;
}
.nav-menu a:hover { color: var(--pink); }
/* Underline indicator pre hover — jemný brand accent */
.nav-menu a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--pink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-fast);
  border-radius: 1px;
}
.nav-menu a:hover::after { transform: scaleX(1); }
/* CTA item in nav (Ako si vybrať) — slightly highlighted */
.nav-menu a.nav-cta {
  color: var(--white);
  background: rgba(33, 225, 225, 0.08);
  border: 1px solid rgba(33, 225, 225, 0.25);
  border-radius: var(--r-full);
  padding: 6px 14px;
}
.nav-menu a.nav-cta:hover {
  color: var(--white);
  background: rgba(250, 47, 181, 0.15);
  border-color: var(--pink);
}
.nav-menu a.nav-cta::after { display: none; }

.badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 18px; height: 18px;
  padding: 0 6px;
  border-radius: var(--r-full);
  background: var(--grad-primary);
  color: var(--white);
  font-size: 11px; font-weight: 700;
  line-height: 1;
}

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  align-items: center; justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle-bar {
  width: 20px; height: 2px; background: var(--white);
  border-radius: 2px;
  transition: transform var(--t-base);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    background: var(--midnight-2);
    border-bottom: 1px solid var(--border);
    padding: var(--s-5);
    gap: var(--s-2);
    transform: translateY(-110%);
    transition: transform var(--t-base);
  }
  .nav-menu.is-open { transform: translateY(0); }
  .nav-menu a { padding: 14px 0; font-size: 18px; }
  .nav-menu a::after { display: none; }
  .nav-menu a.nav-cta { padding: 10px 16px; text-align: center; justify-content: center; }
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  /* Desktop: výška tak, aby pills-bar pod hero bol viditeľný bez scrollu */
  min-height: clamp(440px, calc(100dvh - 240px), 720px);
  padding: var(--s-7) 0 var(--s-6);
  overflow: hidden;
  display: flex; align-items: center;
  isolation: isolate;
}
/* Mobile / tablet: nech sa hero prispôsobí obsahu (stacked layout) */
@media (max-width: 979px) {
  .hero {
    min-height: auto;
    padding: var(--s-6) 0 var(--s-5);
  }
}

/* Background image layer (workshop foto) — zoomed + posunuté aby zmizol tmavý okraj */
.hero-bg-image {
  position: absolute; inset: 0;
  z-index: -3;
  background-image: url('assets/hero-workshop.jpg');
  background-size: 130% auto;  /* zoom — odstrihne tmavé okraje */
  background-position: 40% 45%; /* dôraz na presentera a TV obrazovku */
  background-color: var(--midnight-3);
  background-repeat: no-repeat;
}
@media (max-width: 768px) {
  .hero-bg-image {
    background-size: cover;
    background-position: center center;
  }
}
/* Visible fallback when image is missing — gradient + hint */
.hero-bg-image::after {
  content: 'Ulož obrázok ako assets/hero-workshop.jpg';
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; justify-content: flex-end;
  padding: var(--s-5);
  font-size: 11px; color: rgba(255,255,255,0.18);
  background:
    radial-gradient(circle at 70% 50%, rgba(33, 225, 225, 0.22), transparent 55%),
    radial-gradient(circle at 30% 70%, rgba(250, 47, 181, 0.18), transparent 55%),
    linear-gradient(135deg, var(--midnight-3) 0%, var(--midnight) 100%);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}
/* Show fallback hint only when image fails to load (heuristic via JS class) */
.hero.no-image .hero-bg-image::after { opacity: 1; }

/* Vyvážený overlay — vertikálny gradient (žiadne tmavé "bloky" po stranách) */
.hero-overlay {
  position: absolute; inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg,
      rgba(5, 7, 26, 0.55) 0%,
      rgba(5, 7, 26, 0.42) 30%,
      rgba(5, 7, 26, 0.55) 70%,
      rgba(5, 7, 26, 0.88) 100%
    );
}
@media (max-width: 768px) {
  .hero-overlay {
    background:
      linear-gradient(180deg,
        rgba(5, 7, 26, 0.75) 0%,
        rgba(5, 7, 26, 0.62) 50%,
        rgba(5, 7, 26, 0.92) 100%
      );
  }
}

/* Text-area vignette — tmavšie okolo textu len v strede */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 65% 70% at center 50%,
      rgba(5, 7, 26, 0.45) 0%,
      transparent 70%
    );
  pointer-events: none;
}

/* Soft brand glow — odstránený silný ľavý glow čo vytváral prázdny dojem.
   Necháme len jemný spodný akcent. */
.hero-glow {
  position: absolute; inset: -10%;
  z-index: -1;
  background:
    radial-gradient(circle at 80% 80%, rgba(250, 47, 181, 0.10), transparent 50%),
    radial-gradient(circle at 20% 90%, rgba(33, 225, 225, 0.08), transparent 50%);
  filter: blur(10px);
  pointer-events: none;
}

/* === Hero layout v2 — 3-row (title TOP, main 2-col MID, secondary BOTTOM) === */
.hero-inner {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  max-width: 1200px;
  margin-inline: auto;
  width: 100%;
}

/* === ROW 1: TITLE — full-width centered, BIG === */
.hero-title-row {
  text-align: center;
}
.hero-title-row .hero-eyebrow {
  justify-content: center;
}
.hero-title-row .hero-eyebrow {
  margin-bottom: var(--s-3);
}
.hero-title-row .hero-title {
  justify-content: center;
  font-size: clamp(48px, 11vw, 132px);  /* veľký, full-width */
  white-space: nowrap;
  flex-wrap: nowrap;
  margin-bottom: 0;  /* gap z hero-inner stačí */
}
/* Mobile: title trochu menší aby sa zmestil */
@media (max-width: 600px) {
  .hero-title-row .hero-title { font-size: clamp(40px, 10vw, 64px); }
}
@media (max-width: 380px) {
  .hero-title-row .hero-title { font-size: 36px; }
}

/* === ROW 2: MAIN — mobile stacked, desktop 2-col === */
.hero-main-row {
  display: flex;
  flex-direction: column;
  gap: var(--s-5);
  align-items: center;
}
/* Mobile order: text NAJPRV, video pod ním */
.hero-text-col { order: 1; width: 100%; text-align: center; }
.hero-video-live { order: 2; }

.hero-text-col {
  display: flex; flex-direction: column;
  gap: var(--s-4);
  align-items: center;
}
.hero-text-col .hero-cta,
.hero-text-col .hero-stats {
  justify-content: center;
}
.hero-text-col .hero-lead {
  margin: 0;
  max-width: 600px;
}

/* === ROW 3: SECONDARY — centered, full width === */
.hero-secondary-row {
  display: flex; flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: var(--s-2);
}

/* === Desktop ≥980px: MAIN row je 2-col, text je left-aligned === */
@media (min-width: 980px) {
  .hero-main-row {
    display: grid;
    grid-template-columns: minmax(360px, 460px) 1fr;
    gap: var(--s-7);
    align-items: center;
  }
  .hero-video-live {
    order: 0;
    margin: 0;
    align-self: center;
  }
  .hero-text-col {
    order: 1;
    width: auto;
    text-align: left;
    align-items: flex-start;
  }
  .hero-text-col .hero-cta,
  .hero-text-col .hero-stats {
    justify-content: flex-start;
  }
  .hero-text-col .hero-lead { max-width: 580px; }
}
@media (min-width: 1200px) {
  .hero-main-row {
    grid-template-columns: 480px 1fr;
    gap: var(--s-8);
  }
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: var(--s-5);
}
.eyebrow-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-primary);
}

.hero-title {
  font-size: clamp(44px, 8vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: var(--s-5);
  display: flex; flex-wrap: nowrap; align-items: baseline;
  gap: 0 0.18em;
  white-space: nowrap;
}
@media (max-width: 380px) {
  .hero-title { font-size: 38px; }
}
.hero-title .thin { font-weight: 200; color: var(--grey-300); }
.hero-title .bold {
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(17px, 2.2vw, 22px);
  max-width: 640px;
  color: var(--text-muted);
  margin-bottom: var(--s-6);
  font-weight: 300;
}

.hero-cta {
  display: flex; flex-wrap: wrap; gap: var(--s-3);
  margin-bottom: var(--s-7);
}

.hero-stats {
  display: flex; flex-wrap: wrap;
  gap: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
}

.hero-secondary-row {
  margin-top: var(--s-5);
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
}
.hero-help-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 18px;
  border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--t-fast);
}
.hero-help-btn:hover {
  color: var(--pink);
  border-color: var(--pink);
  background: rgba(250, 47, 181, 0.06);
}
.hero-help-security {
  background: rgba(223, 255, 36, 0.06);
  border-color: rgba(223, 255, 36, 0.25);
  color: var(--yellow);
}
.hero-help-security:hover {
  background: rgba(223, 255, 36, 0.12);
  border-color: var(--yellow);
  color: var(--yellow);
}
.hero-help-newsletter {
  background: rgba(33, 225, 225, 0.06);
  border-color: rgba(33, 225, 225, 0.25);
  color: var(--turquoise);
}
.hero-help-newsletter:hover {
  background: rgba(33, 225, 225, 0.12);
  border-color: var(--turquoise);
  color: var(--turquoise);
}

/* === Hero LIVE Video Preview — autoplay muted, klik otvorí modal so zvukom === */
.hero-video-live {
  position: relative;
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: var(--r-lg);
  background: var(--midnight-3);
  cursor: pointer;
  overflow: hidden;
  font: inherit;
  text-align: left;
  transition: transform var(--t-base), box-shadow var(--t-base);
  /* Gradient border via outline-offset trick */
  box-shadow:
    0 0 0 1px var(--border-strong),
    0 20px 50px rgba(0, 0, 0, 0.4),
    0 0 0 0 rgba(33, 225, 225, 0);
}
.hero-video-live::before {
  content: '';
  position: absolute; inset: -2px;
  border-radius: calc(var(--r-lg) + 2px);
  background: var(--grad-primary);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t-base);
}
.hero-video-live:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow:
    0 0 0 1px var(--turquoise),
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(33, 225, 225, 0.25);
}
.hero-video-live:hover::before { opacity: 1; }

.hero-video-live-player {
  width: 100%; height: 100%;
  display: block;
  object-fit: cover;
  background: var(--midnight);
}

/* Overlay s LIVE badge + CTA */
.hero-video-live-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 14px;
  pointer-events: none;
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.35) 0%,
      transparent 25%,
      transparent 60%,
      rgba(0, 0, 0, 0.7) 100%);
  transition: background var(--t-fast);
}
.hero-video-live:hover .hero-video-live-overlay {
  background:
    linear-gradient(180deg,
      rgba(0, 0, 0, 0.4) 0%,
      transparent 25%,
      transparent 50%,
      rgba(0, 0, 0, 0.85) 100%);
}

.hero-video-live-badge {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 10px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-video-live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 8px var(--pink);
  animation: livePulse 1.6s ease-in-out infinite;
}
@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

.hero-video-live-cta {
  display: inline-flex; align-items: center; gap: 8px;
  align-self: stretch;
  padding: 10px 14px;
  border-radius: var(--r-full);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.hero-video-live:hover .hero-video-live-cta {
  background: var(--grad-primary);
  transform: scale(1.02);
}
.hero-video-live-play {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--white);
  color: var(--midnight);
  font-size: 9px;
  font-weight: 800;
  padding-left: 1px; /* optical centering pre ▶ */
}
.hero-video-live:hover .hero-video-live-play {
  background: var(--white);
  color: var(--midnight);
}

@media (max-width: 979px) {
  /* Tablet/mobile: video pod textom, plná šírka */
  .hero-video-live { max-width: 540px; width: 100%; }
}
@media (max-width: 600px) {
  .hero-video-live { max-width: 100%; }
  .hero-video-live-cta { font-size: 12px; padding: 8px 12px; }
  .hero-video-live-badge { font-size: 10px; padding: 4px 8px; }
}
/* Veľmi malé telefóny — minimum aby video bolo stále viditeľné */
@media (max-width: 380px) {
  .hero-video-live-cta { font-size: 11px; padding: 7px 10px; gap: 6px; }
  .hero-video-live-play { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video-live-dot { animation: none; }
  .hero-video-live:hover { transform: none; }
}

/* === Newsletter Modal === */
.newsletter-modal { width: min(560px, calc(100vw - 32px)); }
.newsletter-modal-head {
  display: flex; gap: var(--s-4);
  align-items: flex-start;
  margin-bottom: var(--s-4);
  padding-right: 56px;
}
.newsletter-modal-icon {
  width: 56px; height: 56px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(33, 225, 225, 0.18), rgba(250, 47, 181, 0.18));
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
.newsletter-modal-form {
  margin: 0;
  padding: var(--s-5);
  border: 1px solid var(--border);
  background: var(--bg-card);
}
.newsletter-modal-form::before { display: none; }
.newsletter-modal-footnote {
  margin: var(--s-3) 0 0;
  font-size: 11.5px;
  color: var(--text-dim);
  line-height: 1.5;
}

/* === Video Modal Player === */
.video-modal {
  width: min(960px, calc(100vw - 32px));
  background: var(--midnight); /* tmavé pre video kontrast */
  padding: 0;
  overflow: hidden;
}
.video-modal .tool-modal-close {
  top: 12px; right: 12px;
  background: rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
  z-index: 5;
}
.video-modal .tool-modal-close:hover {
  background: rgba(250, 47, 181, 0.7);
  color: var(--white);
  border-color: var(--white);
}
.video-modal-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.hero-video-player {
  width: 100%; height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
}

.howto-modal { width: min(680px, calc(100vw - 32px)); }
.howto-modal-list {
  list-style: none;
  padding: 0;
  margin: var(--s-3) 0 0;
  font-size: 14px;
  display: flex; flex-direction: column;
  gap: 0;
}
.howto-modal-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  align-items: start;
  padding: 14px 4px;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
  line-height: 1.55;
  position: relative;
}
.howto-modal-list li:last-child { border-bottom: 0; }
.howto-modal-list li::before {
  content: '→';
  position: static; /* override globálny → */
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: rgba(33, 225, 225, 0.12);
  color: var(--turquoise);
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.howto-modal-list li strong { color: var(--white); font-weight: 600; }

/* Inline icon (♥) v list položke nech nelipne na slovo */
.howto-modal-list li .icon-mini {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  margin-right: 10px;
  vertical-align: -5px;
  background: rgba(33, 225, 225, 0.14);
  color: var(--turquoise);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
}
.stat { display: inline-flex; flex-direction: column; gap: 2px; }
.stat-num {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 400;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--r-full);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-base), background var(--t-base), border-color var(--t-base);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--grad-primary);
  color: var(--white);
  box-shadow: 0 6px 24px rgba(250, 47, 181, 0.25);
}
.btn-primary:hover { box-shadow: 0 10px 32px rgba(250, 47, 181, 0.35); color: var(--white); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: var(--border-strong);
}
.btn-ghost:hover { background: var(--bg-card); border-color: var(--turquoise); color: var(--white); }

.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ============================================================
   PILLS BAR — primárna navigácia, sticky, dominantná
   ============================================================ */

.pills-bar {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  background: rgba(5, 7, 26, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid rgba(33, 225, 225, 0.15);
  border-bottom: 1px solid var(--border-strong);
  padding: var(--s-4) 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.pills-bar-inner {
  display: flex; flex-direction: column;
  gap: 10px;
}

.pills-bar-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-3);
}
.pills-bar-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px;            /* +20% z 11px */
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);     /* trochu jasnejšie ako --text-dim */
  font-weight: 700;
}
.pills-bar-symbol {
  width: 20px; height: 20px;    /* +25% z 16px */
  opacity: 1;
}
.pills-bar-hint {
  font-size: 13.5px;            /* zladené s labelom */
  color: var(--text-muted);
  font-weight: 500;
}

.pills-bar .pills-scroll {
  display: flex; gap: 8px;
  overflow-x: auto;
  padding: 2px 0 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
  -ms-overflow-style: none;
  /* Na desktopoch: rovnomerné rozdelenie všetkých 9 pillov bez scrollu */
}
@media (min-width: 1000px) {
  .pills-bar .pills-scroll {
    display: grid;
    grid-template-columns: repeat(9, minmax(0, 1fr));
    overflow: visible;
    gap: 6px;
  }
}
.pills-bar .pills-scroll::-webkit-scrollbar { height: 4px; }
.pills-bar .pills-scroll::-webkit-scrollbar-track { background: transparent; }
.pills-bar .pills-scroll::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 2px; }

/* Pills — väčšie a dominantné, ale kompaktnejšie aby sa zmestili všetky */
.pills-bar .pill {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 12px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
  cursor: pointer;
  transition: color var(--t-fast), background var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  letter-spacing: -0.01em;
  min-width: 0;
}
.pills-bar .pill > span:not(.pill-count) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.pills-bar .pill .pill-count {
  font-size: 10.5px; font-weight: 700;
  padding: 2px 6px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  line-height: 1;
  flex-shrink: 0;
}
@media (min-width: 1100px) {
  .pills-bar .pill { padding: 11px 14px; font-size: 14px; gap: 8px; }
  .pills-bar .pill .pill-count { font-size: 11px; padding: 2px 7px; }
}
.pills-bar .pill:hover {
  color: var(--pink);
  border-color: var(--pink);
  background: rgba(250, 47, 181, 0.06);
}
.pills-bar .pill:hover .pill-count {
  background: rgba(250, 47, 181, 0.15);
  color: var(--pink);
}
.pills-bar .pill.is-active {
  color: var(--midnight);
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 6px 20px rgba(33, 225, 225, 0.18);
}
.pills-bar .pill.is-active .pill-count {
  background: var(--midnight);
  color: var(--white);
}
.pills-bar .pill.is-active:hover {
  color: var(--midnight);
  background: var(--white);
}

/* ============================================================
   TOOLBAR (search + filters) — secondary, kompaktný
   ============================================================ */

.toolbar {
  padding: var(--s-4) 0 var(--s-2);
}

.toolbar-row {
  display: flex; gap: var(--s-3);
  align-items: center;
  flex-wrap: wrap;
}

.search {
  position: relative;
  flex: 1 1 280px;
  display: flex; align-items: center;
}
.search-icon {
  position: absolute; left: 14px; width: 18px; height: 18px;
  color: var(--text-dim);
  pointer-events: none;
}
.search input {
  width: 100%;
  padding: 12px 40px 12px 42px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 15px;
  color: var(--text);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.search input::placeholder { color: var(--text-dim); }
.search input:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--bg-card-hover);
}
.search-clear {
  position: absolute; right: 10px;
  width: 26px; height: 26px;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1;
}
.search-clear:hover { background: var(--bg-card); color: var(--white); }

.filters {
  display: flex; gap: var(--s-2);
  align-items: center;
  flex-wrap: wrap;
}

.filter {
  position: relative;
}
.filter > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.filter > summary::-webkit-details-marker { display: none; }
.filter > summary:hover { border-color: var(--border-strong); color: var(--white); }
.filter[open] > summary { border-color: var(--turquoise); color: var(--white); }
.chev {
  display: inline-block;
  width: 8px; height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-bottom: 2px;
  transition: transform var(--t-fast);
}
.filter[open] .chev { transform: rotate(-135deg); margin-bottom: -2px; }

.filter-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 180px;
  padding: var(--s-3);
  background: var(--midnight-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  z-index: 5;
  display: flex; flex-direction: column;
  gap: var(--s-2);
}
.filter-pop label {
  display: flex; align-items: center; gap: 10px;
  padding: 6px 4px;
  font-size: 14px;
  cursor: pointer;
}
.filter-pop input[type="checkbox"] {
  accent-color: var(--turquoise);
  width: 16px; height: 16px;
}
.filter-count {
  margin-left: auto;
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 400;
}
.filter-pop label { justify-content: flex-start; }
.filter-pop label .filter-count { padding-left: 6px; }

.filter-reset {
  font-size: 13px;
  color: var(--text-dim);
  padding: 8px 10px;
  border-radius: var(--r-full);
}
.filter-reset:hover { color: var(--white); }

/* (legacy .category-pills + .pill styles moved into .pills-bar above) */

/* ============================================================
   SECTIONS / CATEGORIES
   ============================================================ */

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: var(--s-3);
}
.title-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--grad-primary);
  font-size: 20px;
  color: var(--white);
}
.section-lead {
  color: var(--text-muted);
  max-width: 720px;
  font-size: 16px;
  margin-bottom: var(--s-5);
}

.category {
  padding: var(--s-8) 0 var(--s-7);
  border-top: 1px solid var(--border);
}
.category:first-of-type { border-top: 0; padding-top: var(--s-7); }

.category-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.category-count {
  font-size: 13px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ============================================================
   CARDS
   ============================================================ */

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s-4);
}

@media (min-width: 1024px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
}

.card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  transition: border-color var(--t-base), background var(--t-base), transform var(--t-base);
}
.card:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.card-head {
  display: flex; align-items: flex-start; gap: 14px;
  margin-bottom: var(--s-3);
}

.card-logo {
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 18px;
  color: var(--midnight);
  flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.card-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
}
.card-logo.is-fallback {
  background: linear-gradient(135deg, rgba(33, 225, 225, 0.18), rgba(250, 47, 181, 0.18));
  color: var(--white);
}

.card-title-block { min-width: 0; flex: 1; }
.card-title {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 2px;
  overflow-wrap: anywhere;
}
.card-tagline {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}

.card-tags {
  display: flex; gap: 6px; flex-wrap: wrap;
  margin: 12px 0 var(--s-3);
}

.tag {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.tag-free { background: var(--tag-free-bg); color: var(--tag-free-fg); }
.tag-freemium { background: var(--tag-freemium-bg); color: var(--tag-freemium-fg); }
.tag-paid { background: var(--tag-paid-bg); color: var(--tag-paid-fg); }
.tag-level { background: var(--tag-level-bg); color: var(--tag-level-fg); text-transform: none; font-weight: 400; }

.privacy-flag {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(223, 255, 36, 0.12);
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
}

.card-note {
  display: flex; align-items: flex-start; gap: 8px;
  padding: 10px 12px;
  margin: 0 0 var(--s-3);
  border-radius: var(--r-sm);
  background: rgba(223, 255, 36, 0.07);
  border: 1px solid rgba(223, 255, 36, 0.18);
  color: var(--grey-300);
  font-size: 12px;
  line-height: 1.5;
}
.card-note-icon {
  color: var(--yellow);
  font-weight: 700;
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1.2;
}

.card-use {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0 0 var(--s-4);
  padding-left: 18px;
  list-style: none;
}
.card-use li {
  position: relative;
  padding: 3px 0;
}
.card-use li::before {
  content: '';
  position: absolute;
  left: -18px; top: 11px;
  width: 10px; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}

.card-foot {
  margin-top: auto;
  display: flex; gap: 8px; align-items: center;
}

.card-cta {
  flex: 1;
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 14px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 14px;
  font-weight: 600;
  color: var(--white);
  transition: all var(--t-fast);
}
.card-cta:hover { border-color: var(--turquoise); background: var(--bg-card-hover); color: var(--white); }

.icon-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.icon-btn:hover { border-color: var(--border-strong); color: var(--white); }
.icon-btn[aria-pressed="true"] {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(250, 47, 181, 0.1);
}
.icon-btn.cmp[aria-pressed="true"] {
  border-color: var(--turquoise);
  color: var(--turquoise);
  background: rgba(33, 225, 225, 0.1);
}

/* Compare feature was removed in v2 — section intentionally empty */

/* ============================================================
   EMPTY STATE
   ============================================================ */

.empty-state {
  text-align: center;
  padding: var(--s-9) var(--s-5);
}
.empty-icon { margin: 0 auto var(--s-4); opacity: 0.6; }
.empty-state h2 { font-size: 22px; margin-bottom: 8px; }
.empty-state p { color: var(--text-muted); margin-bottom: var(--s-4); }
.empty-inline { color: var(--text-dim); font-size: 14px; padding: var(--s-5); text-align: center; grid-column: 1 / -1; }

/* ============================================================
   FAVORITES
   ============================================================ */

.favorites { padding: var(--s-8) 0; border-top: 1px solid var(--border); }

/* ============================================================
   ABOUT
   ============================================================ */

.about {
  padding: var(--s-8) 0 var(--s-9);
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 90% 0%, rgba(33, 225, 225, 0.06), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(250, 47, 181, 0.05), transparent 50%);
}

.about p { color: var(--text-muted); }
.about strong { color: var(--white); font-weight: 600; }

.about-intro { max-width: 820px; margin-bottom: var(--s-7); }

/* Callout — 3 kľúčové otázky */
.about-callout {
  background:
    linear-gradient(135deg, rgba(33, 225, 225, 0.08), rgba(250, 47, 181, 0.06)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  margin-bottom: var(--s-7);
  position: relative;
  overflow: hidden;
}
.about-callout::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad-primary);
}
.callout-head {
  display: flex; align-items: flex-start; gap: var(--s-4);
  margin-bottom: var(--s-5);
}
.callout-num {
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  flex-shrink: 0;
}
.callout-head h3 {
  font-size: clamp(18px, 2.2vw, 22px);
  margin-bottom: 4px;
}
.callout-head p {
  font-size: 14px;
  margin: 0;
  color: var(--text-muted);
}
.callout-cta {
  margin-top: var(--s-4);
  padding: var(--s-3) var(--s-4);
  border-radius: var(--r-sm);
  background: rgba(33, 225, 225, 0.08);
  border: 1px solid rgba(33, 225, 225, 0.18);
  font-size: 15px;
  text-align: center;
  color: var(--turquoise);
}

/* (legacy .checklist styles kept for backward compat) */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding: 14px 0 14px 36px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-muted);
}
.checklist li:last-child { border-bottom: 0; }
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--grad-primary);
}
.checklist li::after {
  content: '✓';
  position: absolute;
  left: 5px; top: 15px;
  font-size: 13px; font-weight: 800;
  color: var(--midnight);
}
.checklist li strong { color: var(--white); font-weight: 600; display: block; margin-bottom: 4px; font-size: 15px; }
.checklist li span { color: var(--text-dim); font-size: 13px; line-height: 1.55; }

/* === Key Question cards v2 — premium feel === */
.kq-section {
  margin-bottom: var(--s-7);
  padding: var(--s-6) var(--s-5);
  background:
    radial-gradient(circle at 0% 0%, rgba(33, 225, 225, 0.08), transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(250, 47, 181, 0.06), transparent 50%),
    var(--bg-elev);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
.kq-section::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad-primary);
}

.kq-section-head {
  margin-bottom: var(--s-6);
}
.kq-section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  margin-bottom: var(--s-3);
  border-radius: var(--r-full);
  background: rgba(33, 225, 225, 0.1);
  border: 1px solid rgba(33, 225, 225, 0.25);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--turquoise);
}
.kq-section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 14px;
  margin: 0 0 8px;
  line-height: 1.2;
}
.kq-section-num {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.kq-section-num-x {
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 800;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  letter-spacing: -0.04em;
}
.kq-section-lead {
  font-size: 15px;
  color: var(--text-muted);
  margin: 0;
  max-width: 720px;
}

.kq-grid {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 980px) {
  .kq-grid { grid-template-columns: repeat(3, 1fr); }
}

.kq-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-5) var(--s-5);
  display: flex; flex-direction: column;
  gap: 12px;
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  overflow: hidden;
}
.kq-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-primary);
  opacity: 0.6;
  transition: opacity var(--t-fast);
}
.kq-card-1::before { background: linear-gradient(90deg, #21E1E1, #5CE1E6); }
.kq-card-2::before { background: linear-gradient(90deg, #FA2FB5, #806BEC); }
.kq-card-3::before { background: linear-gradient(90deg, #DFFF24, #FA2FB5); }

.kq-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-strong);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}
.kq-card:hover::before { opacity: 1; }

/* Large number on top right — watermark style */
.kq-card-num {
  position: absolute;
  top: 14px; right: 18px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  opacity: 0.06;
  letter-spacing: -0.04em;
  pointer-events: none;
}

.kq-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: var(--r-md);
  font-size: 20px;
  margin-bottom: 4px;
}
.kq-card-1 .kq-card-icon { background: rgba(33, 225, 225, 0.12); color: var(--turquoise); }
.kq-card-2 .kq-card-icon { background: rgba(250, 47, 181, 0.12); color: var(--pink); }
.kq-card-3 .kq-card-icon { background: rgba(223, 255, 36, 0.12); color: var(--yellow); }

.kq-card h4 {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--white);
  line-height: 1.3;
  padding-right: 44px; /* nech ne overlapuje s číslom */
}
.kq-accent {
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.kq-why {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}

.kq-eg-row {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 4px;
}
.kq-eg {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px;
  border-radius: var(--r-sm);
  font-size: 12.5px;
  line-height: 1.55;
}
.kq-eg-icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
}
.kq-eg-body { flex: 1; min-width: 0; }
.kq-eg-label {
  display: block;
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 4px;
}
.kq-eg-good {
  background: rgba(33, 225, 225, 0.07);
  border: 1px solid rgba(33, 225, 225, 0.18);
  color: var(--text-muted);
}
.kq-eg-good .kq-eg-icon { background: var(--turquoise); color: var(--midnight); }
.kq-eg-good .kq-eg-label { color: var(--turquoise); }
.kq-eg-bad {
  background: rgba(250, 47, 181, 0.06);
  border: 1px solid rgba(250, 47, 181, 0.2);
  color: var(--text-muted);
}
.kq-eg-bad .kq-eg-icon { background: var(--pink); color: var(--white); }
.kq-eg-bad .kq-eg-label { color: var(--pink); }

/* CTA at bottom — bigger, more prominent */
.kq-cta {
  margin-top: var(--s-5);
  padding: var(--s-4) var(--s-5);
  background:
    linear-gradient(135deg, rgba(33, 225, 225, 0.10), rgba(250, 47, 181, 0.08)),
    var(--bg-card);
  border: 1px solid rgba(33, 225, 225, 0.25);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  flex-wrap: wrap;
}
.kq-cta-text { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 220px; }
.kq-cta-text strong {
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.kq-cta-text span {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.kq-cta .btn { flex-shrink: 0; }

/* 4-block grid */
.about-grid-4 {
  display: grid;
  gap: var(--s-4);
  grid-template-columns: 1fr;
}
@media (min-width: 720px) {
  .about-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.about-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  display: flex; flex-direction: column;
}
.about-card-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: var(--r-sm);
  background: var(--grad-primary);
  color: var(--midnight);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: var(--s-3);
}
.about-card h3 {
  font-size: 18px;
  margin-bottom: var(--s-3);
}
.about-card h4 {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 8px;
  font-weight: 700;
}
.about-card .mini-h4 {
  margin-top: var(--s-3);
  padding-top: var(--s-3);
  border-top: 1px solid var(--border);
}

/* Numbered list (Ako začať) */
.numbered-list {
  list-style: none;
  counter-reset: stepCount;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.numbered-list li {
  position: relative;
  padding-left: 36px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
  counter-increment: stepCount;
}
.numbered-list li::before {
  content: counter(stepCount);
  position: absolute;
  left: 0; top: -2px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(33, 225, 225, 0.12);
  color: var(--turquoise);
  border: 1px solid rgba(33, 225, 225, 0.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 13px;
}

/* DO / DON'T */
.do-dont {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3);
}
.do-col, .dont-col {
  background: var(--bg-card-hover);
  border-radius: var(--r-sm);
  padding: 12px;
  border: 1px solid var(--border);
}
.do-col { border-top: 2px solid var(--turquoise); }
.dont-col { border-top: 2px solid var(--pink); }
.do-col h4 { color: var(--turquoise) !important; }
.dont-col h4 { color: var(--pink) !important; }
.do-col ul, .dont-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.do-col li, .dont-col li {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.do-col li::before {
  content: '+';
  position: absolute; left: 0; top: -1px;
  color: var(--turquoise); font-weight: 800;
}
.dont-col li::before {
  content: '−';
  position: absolute; left: 0; top: -1px;
  color: var(--pink); font-weight: 800;
}
@media (max-width: 480px) {
  .do-dont { grid-template-columns: 1fr; }
}

/* (legacy .role-list styles kept) */
.role-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.role-list li {
  padding: 10px 12px;
  border-radius: var(--r-sm);
  background: var(--bg-card-hover);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  border: 1px solid var(--border);
}
.role-list li strong {
  color: var(--white);
  font-weight: 600;
}

/* Interactive role selector */
.role-card .role-intro {
  font-size: 13.5px;
  color: var(--text-muted);
  margin-bottom: var(--s-3);
  line-height: 1.55;
}
.role-selector-wrap {
  position: relative;
  margin-bottom: var(--s-4);
}
.role-select {
  width: 100%;
  padding: 12px 36px 12px 16px;
  border-radius: var(--r-md);
  background: var(--bg-card-hover);
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-size: 14.5px;
  font-weight: 600;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9cdde' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  transition: border-color var(--t-fast);
}
.role-select:hover { border-color: var(--pink); }
.role-select:focus { outline: none; border-color: var(--turquoise); }

.role-output {
  display: flex; flex-direction: column;
  gap: var(--s-3);
  margin-top: var(--s-3);
}
.role-tier {
  padding: var(--s-3);
  border-radius: var(--r-sm);
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-left: 3px solid var(--turquoise);
}
.role-tier-2 { border-left-color: var(--pink); }
.role-tier-3 { border-left-color: var(--lilac); }
.role-tier-head {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--turquoise);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 8px;
}
.role-tier-2 .role-tier-head { color: var(--pink); }
.role-tier-3 .role-tier-head { color: var(--lilac); }
.role-tier-desc {
  font-size: 12.5px;
  color: var(--text-dim);
  margin: 0 0 8px;
  line-height: 1.5;
}
.role-tier-tools {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.role-tier-tool {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all var(--t-fast);
}
.role-tier-tool:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(250, 47, 181, 0.06);
}
.role-tier-tool .role-tool-cat {
  font-size: 10.5px;
  color: var(--text-dim);
  font-weight: 400;
}
.role-empty {
  text-align: center;
  padding: var(--s-5);
  color: var(--text-dim);
  font-size: 13px;
}

/* How-to list */
.howto-list {
  list-style: none; padding: 0; margin: 0 0 var(--s-3);
  display: flex; flex-direction: column; gap: 8px;
}
.howto-list li {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}
.howto-list li::before {
  content: '→';
  position: absolute; left: 0; top: 0;
  color: var(--turquoise);
  font-weight: 700;
}
.icon-mini {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(33, 225, 225, 0.14);
  color: var(--turquoise);
  font-size: 11px;
  font-weight: 700;
  margin-right: 4px;
}

.legend-inline {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}

/* Security CTA button v Bezpečnosť karte */
.security-cta {
  display: flex; align-items: center; gap: 14px;
  width: 100%;
  margin-top: var(--s-4);
  padding: 14px 16px;
  background: linear-gradient(135deg, rgba(33, 225, 225, 0.08), rgba(250, 47, 181, 0.06));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: inherit;
  transition: all var(--t-fast);
}
.security-cta:hover {
  border-color: var(--pink);
  background: linear-gradient(135deg, rgba(33, 225, 225, 0.10), rgba(250, 47, 181, 0.12));
  transform: translateY(-1px);
}
.security-cta-icon {
  font-size: 24px;
  flex-shrink: 0;
}
.security-cta-text {
  flex: 1;
  display: flex; flex-direction: column;
  line-height: 1.4;
}
.security-cta-text strong {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}
.security-cta-text small {
  color: var(--text-dim);
  font-size: 12px;
}
.security-cta-arrow {
  color: var(--text-muted);
  font-size: 18px;
  flex-shrink: 0;
  transition: transform var(--t-fast), color var(--t-fast);
}
.security-cta:hover .security-cta-arrow {
  color: var(--pink);
  transform: translateX(4px);
}

/* Security modal — same base ako tool-modal, vlastné sekcie */
.security-modal { width: min(820px, calc(100vw - 32px)); }
.security-modal-head {
  display: flex; gap: var(--s-4);
  align-items: flex-start;
  margin-bottom: var(--s-5);
  padding-right: 56px;
}
.security-modal-icon {
  font-size: 36px;
  flex-shrink: 0;
  line-height: 1;
}
.security-section {
  margin-top: var(--s-5);
  padding: var(--s-4);
  background: var(--bg-card);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
}
.security-section h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 var(--s-3);
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
  letter-spacing: -0.01em;
}
.security-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--midnight);
  font-weight: 800;
  font-size: 13px;
  flex-shrink: 0;
}
.security-list, .security-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.security-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.security-list li::before {
  content: '→';
  position: absolute; left: 0; top: 0;
  color: var(--turquoise);
  font-weight: 800;
}
.security-list li strong { color: var(--white); font-weight: 600; }
.security-list li em { color: var(--turquoise); font-style: normal; }

.security-section-highlight {
  background: linear-gradient(135deg, rgba(33, 225, 225, 0.06), rgba(250, 47, 181, 0.04));
  border: 1px solid var(--turquoise);
}
.security-checklist {
  counter-reset: checkCount;
}
.security-checklist li {
  counter-increment: checkCount;
  position: relative;
  padding-left: 32px;
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.55;
}
.security-checklist li::before {
  content: counter(checkCount);
  position: absolute; left: 0; top: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(33, 225, 225, 0.15);
  color: var(--turquoise);
  border: 1px solid var(--turquoise);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 12px;
}
.security-checklist li strong { color: var(--white); }
.security-callout {
  margin-top: var(--s-4);
  padding: 12px 16px;
  background: rgba(33, 225, 225, 0.1);
  border-left: 3px solid var(--turquoise);
  border-radius: var(--r-sm);
  font-size: 14px;
  color: var(--turquoise);
}
.security-disclaimer {
  margin-top: var(--s-5);
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--r-sm);
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.55;
  border: 1px dashed var(--border);
}
.security-disclaimer strong { color: var(--text-muted); }

/* About foot */
.about-foot {
  margin-top: var(--s-7);
  padding-top: var(--s-5);
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.about-foot a { color: var(--turquoise); }
.about-foot a:hover { color: var(--pink); }

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  margin-top: var(--s-8);
  border-top: 1px solid var(--border);
  padding: var(--s-7) 0 var(--s-8);
  background: var(--midnight-2);
}
.footer-inner {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .footer-inner { grid-template-columns: 1fr 1fr; align-items: end; }
}

.footer-logo { width: 160px; margin-bottom: var(--s-3); }
.footer-brand p { color: var(--text-muted); margin: 0; }
.footer-meta { color: var(--text-dim); font-size: 13px; text-align: left; }
@media (min-width: 768px) { .footer-meta { text-align: right; } }
.footer-disclaimer { color: var(--text-dim); font-size: 12px; margin-top: 8px; max-width: 380px; }
@media (min-width: 768px) { .footer-disclaimer { margin-left: auto; } }

/* ============================================================
   NEWSLETTER SIGNUP — lead generation placeholder
   ============================================================ */
.newsletter-section {
  padding: var(--s-7) 0;
  background:
    radial-gradient(circle at 100% 50%, rgba(33, 225, 225, 0.06), transparent 55%),
    radial-gradient(circle at 0% 50%, rgba(250, 47, 181, 0.05), transparent 55%);
}
.newsletter-section-bottom { padding: var(--s-8) 0 var(--s-6); }

.newsletter-card {
  display: grid;
  gap: var(--s-5);
  grid-template-columns: 1fr;
  padding: var(--s-6) var(--s-5);
  background:
    linear-gradient(135deg, rgba(33, 225, 225, 0.05), rgba(250, 47, 181, 0.04)),
    var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  position: relative;
  overflow: hidden;
}
@media (min-width: 860px) {
  .newsletter-card {
    grid-template-columns: 1.1fr 1fr;
    gap: var(--s-7);
    align-items: center;
    padding: var(--s-7);
  }
}
.newsletter-card::before {
  content: '';
  position: absolute; inset: 0 auto 0 0;
  width: 4px;
  background: var(--grad-primary);
}

.newsletter-left h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
  color: var(--white);
  line-height: 1.2;
}
.newsletter-left p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.55;
  margin: 0;
}
.newsletter-left .newsletter-disclaimer {
  margin-top: 12px;
  font-size: 12px;
  color: var(--text-dim);
  line-height: 1.5;
}

.newsletter-right {
  display: flex; flex-direction: column;
  gap: 10px;
}
.newsletter-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  text-transform: none;
}
.newsletter-required { color: var(--pink); }
.newsletter-input {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-strong);
  background: var(--midnight-3);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color var(--t-fast);
}
.newsletter-input:focus {
  outline: none;
  border-color: var(--turquoise);
}
.newsletter-input::placeholder { color: var(--text-dim); }

.newsletter-consent {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 4px;
}
.newsletter-consent input[type="checkbox"] {
  accent-color: var(--turquoise);
  width: 18px; height: 18px;
  cursor: pointer;
}

.newsletter-submit {
  margin-top: 4px;
  padding: 12px 22px;
  border-radius: var(--r-full);
  background: var(--grad-primary);
  border: 0;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: transform var(--t-fast), box-shadow var(--t-base);
  align-self: flex-start;
  letter-spacing: -0.01em;
}
.newsletter-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 32px rgba(250, 47, 181, 0.3);
}
.newsletter-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.newsletter-status {
  margin: 6px 0 0;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
}
.newsletter-status.is-success {
  color: var(--turquoise);
  background: rgba(33, 225, 225, 0.08);
  border: 1px solid rgba(33, 225, 225, 0.25);
}
.newsletter-status.is-error {
  color: var(--pink);
  background: rgba(250, 47, 181, 0.08);
  border: 1px solid rgba(250, 47, 181, 0.25);
}

/* ============================================================
   QUIZ — Ako si vybrať vhodný AI nástroj
   ============================================================ */

.quiz {
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  background:
    radial-gradient(circle at 80% 20%, rgba(33, 225, 225, 0.08), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(250, 47, 181, 0.06), transparent 55%);
}
.quiz-intro { max-width: 760px; margin-bottom: var(--s-6); }
.quiz-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: var(--r-full);
  background: rgba(33, 225, 225, 0.1);
  border: 1px solid rgba(33, 225, 225, 0.25);
  font-size: 12px;
  font-weight: 600;
  color: var(--turquoise);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--s-3);
}

.quiz-card {
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  position: relative;
  overflow: hidden;
}
.quiz-progress {
  height: 4px;
  border-radius: 2px;
  background: var(--bg-card-hover);
  overflow: hidden;
  margin-bottom: var(--s-4);
}
.quiz-progress-bar {
  height: 100%;
  width: 16%;
  background: var(--grad-primary);
  border-radius: 2px;
  transition: width var(--t-slow);
}
.quiz-meta {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: var(--s-5);
}
.quiz-meta strong { color: var(--white); font-weight: 700; }
.quiz-restart {
  font-size: 12px;
  color: var(--text-dim);
  padding: 6px 12px;
  border-radius: var(--r-full);
  border: 1px solid var(--border);
  background: transparent;
}
.quiz-restart:hover { color: var(--white); border-color: var(--border-strong); }

.quiz-body { min-height: 200px; }
.quiz-question {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  margin-bottom: var(--s-5);
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.quiz-hint {
  display: block;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Option pills (radio-like cards) */
.quiz-options {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) {
  .quiz-options { grid-template-columns: repeat(2, 1fr); }
}
.quiz-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast);
  text-align: left;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}
.quiz-option:hover {
  border-color: var(--border-strong);
  background: var(--bg-card-hover);
}
.quiz-option.is-selected {
  border-color: var(--turquoise);
  background: rgba(33, 225, 225, 0.08);
  color: var(--white);
}
.quiz-option-radio {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid var(--border-strong);
  flex-shrink: 0;
  position: relative;
  transition: all var(--t-fast);
}
.quiz-option.is-selected .quiz-option-radio {
  border-color: var(--turquoise);
  background: var(--grad-primary);
}
.quiz-option.is-selected .quiz-option-radio::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--midnight);
  font-weight: 800;
  font-size: 13px;
}
/* Multi-select uses square checkboxes */
.quiz-option-multi .quiz-option-radio {
  border-radius: 6px;
}
.quiz-option-multi.is-selected .quiz-option-radio {
  border-radius: 6px;
}
.quiz-option-text { flex: 1; }
.quiz-option-text small {
  display: block;
  color: var(--text-dim);
  font-weight: 400;
  font-size: 12.5px;
  margin-top: 2px;
}

/* Free text input */
.quiz-input {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--text);
  font-family: inherit;
  resize: vertical;
  min-height: 80px;
}
.quiz-input:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--bg-card-hover);
}

.quiz-nav {
  display: flex; justify-content: space-between; align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-5);
  padding-top: var(--s-4);
  border-top: 1px solid var(--border);
}
.quiz-nav .btn { min-width: 120px; }
.quiz-nav .btn-ghost:not([hidden]) + #quiz-next { margin-left: auto; }

/* Result */
.quiz-result-head {
  text-align: center;
  margin-bottom: var(--s-5);
}
.quiz-result-head h3 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 8px;
}
.quiz-result-head p { color: var(--text-muted); }

.recommendation-list {
  display: flex; flex-direction: column;
  gap: var(--s-3);
}
.quiz-recap {
  display: block;
  padding: 12px 16px;
  margin-bottom: var(--s-5);
  background: rgba(33, 225, 225, 0.06);
  border: 1px solid rgba(33, 225, 225, 0.18);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.quiz-recap strong { color: var(--turquoise); margin-right: 4px; }

.recommendation {
  display: flex; align-items: flex-start; gap: var(--s-4);
  padding: var(--s-5);
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  position: relative;
  transition: border-color var(--t-fast);
}
.recommendation:hover { border-color: var(--turquoise); }

.recommendation-logo {
  width: 56px; height: 56px;
  border-radius: var(--r-sm);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  color: var(--midnight);
  flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.recommendation-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 6px;
  background: var(--white);
}
.recommendation-logo.is-fallback {
  background: linear-gradient(135deg, rgba(33, 225, 225, 0.25), rgba(250, 47, 181, 0.25));
  color: var(--white);
}
.recommendation-score {
  font-size: 12px;
  font-weight: 600;
  color: var(--turquoise);
  letter-spacing: 0.02em;
}

/* Why for you — reasons block */
.recommendation-why {
  margin: var(--s-3) 0;
  padding: 10px 14px;
  background: rgba(33, 225, 225, 0.04);
  border-left: 3px solid var(--turquoise);
  border-radius: var(--r-sm);
}
.recommendation-why-label {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--turquoise);
  font-weight: 700;
  margin-bottom: 6px;
}
.recommendation-why ul.recommendation-reasons {
  margin: 0;
}

/* Benefits + Limits side-by-side grid */
.recommendation-details {
  display: grid;
  gap: var(--s-3);
  grid-template-columns: 1fr;
  margin: var(--s-3) 0;
}
@media (min-width: 560px) {
  .recommendation-details {
    grid-template-columns: 1fr 1fr;
  }
}
.rec-detail-col {
  padding: 10px 14px;
  border-radius: var(--r-sm);
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.rec-detail-benefits { border-top: 2px solid var(--turquoise); }
.rec-detail-limits { border-top: 2px solid var(--pink); }
.rec-detail-head {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 8px;
}
.rec-detail-benefits .rec-detail-head { color: var(--turquoise); }
.rec-detail-limits .rec-detail-head { color: var(--pink); }
.rec-detail-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 4px;
}
.rec-detail-col li {
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.rec-detail-benefits li::before {
  content: '+';
  position: absolute; left: 0; top: 0;
  color: var(--turquoise);
  font-weight: 800;
}
.rec-detail-limits li::before {
  content: '−';
  position: absolute; left: 0; top: 0;
  color: var(--pink);
  font-weight: 800;
}

/* Privacy note in recommendation */
.recommendation-note {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 10px 14px;
  margin: var(--s-3) 0 0;
  background: rgba(223, 255, 36, 0.06);
  border: 1px solid rgba(223, 255, 36, 0.2);
  border-radius: var(--r-sm);
  font-size: 12.5px;
  color: var(--text-muted);
  line-height: 1.5;
}
.recommendation-note-icon { color: var(--yellow); font-weight: 800; flex-shrink: 0; }

/* Push actions to bottom with space */
.recommendation-actions { margin-top: var(--s-4); }

/* Share bar pod recommendations */
.quiz-share {
  margin-top: var(--s-5);
  padding-top: var(--s-5);
  border-top: 1px dashed var(--border);
}
.quiz-share-label {
  font-size: 12px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin-bottom: 12px;
}
.quiz-share-actions {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.quiz-share-actions .btn { font-size: 13px; padding: 9px 14px; }
.quiz-share-actions .btn.is-success {
  border-color: var(--turquoise);
  color: var(--turquoise);
  background: rgba(33, 225, 225, 0.08);
}
.recommendation-rank {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--grad-primary);
  color: var(--midnight);
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
}
.recommendation-body { flex: 1; min-width: 0; }
.recommendation-name {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.recommendation-cat {
  font-size: 11px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.recommendation-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.recommendation-reasons {
  list-style: none;
  padding: 0; margin: 0 0 var(--s-3);
  display: flex; flex-direction: column; gap: 4px;
}
.recommendation-reasons li {
  font-size: 12.5px;
  color: var(--turquoise);
  padding-left: 18px;
  position: relative;
}
.recommendation-reasons li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  font-weight: 700;
}
.recommendation-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.recommendation-actions .btn { padding: 8px 14px; font-size: 13px; }

/* ============================================================
   ŠABLÓNY PROMPTOV
   ============================================================ */
.prompts-section {
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
  background: radial-gradient(circle at 10% 20%, rgba(128, 107, 236, 0.05), transparent 60%);
}
.prompts-section code {
  background: var(--bg-card-hover);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.92em;
  color: var(--turquoise);
}
.prompts-controls {
  display: flex; flex-direction: column; gap: var(--s-3);
  margin-bottom: var(--s-5);
}
.prompts-controls-row {
  display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap;
}
.prompts-search-input {
  width: 100%;
  max-width: 480px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  font-size: 15px;
  color: var(--text);
}
.prompts-search-input:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--bg-card-hover);
}
.prompts-search-input::placeholder { color: var(--text-dim); }

.prompts-cat-tabs {
  display: flex; gap: 6px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  flex-wrap: wrap;
}
.prompts-cat-tabs::-webkit-scrollbar { display: none; }
.prompts-cat-tab {
  flex: 0 0 auto;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-full);
  background: var(--bg-card);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--t-fast);
  white-space: nowrap;
}
.prompts-cat-tab:hover { color: var(--pink); border-color: var(--pink); }
.prompts-cat-tab.is-active {
  color: var(--midnight); background: var(--white); border-color: var(--white);
}
.prompts-cat-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 20px; height: 18px; padding: 0 6px;
  border-radius: var(--r-full);
  background: rgba(255,255,255,0.06);
  color: var(--text-dim);
  font-size: 10.5px; font-weight: 700;
  line-height: 1;
}
.prompts-cat-tab.is-active .prompts-cat-count { background: var(--midnight); color: var(--white); }

/* Prompts ako collapsible rows (default zbalené) */
.prompts-grid {
  display: flex; flex-direction: column; gap: 8px;
}
.prompts-hint {
  margin: 0 0 var(--s-3);
  font-size: 12px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

.prompt-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--t-fast), background var(--t-fast);
}
.prompt-row:hover {
  border-color: var(--pink);
  background: var(--bg-card-hover);
}
.prompt-row[aria-expanded="true"] {
  background: var(--bg-card-hover);
}

.prompt-row-head {
  width: 100%;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.prompt-row-icon {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: rgba(128, 107, 236, 0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}
.prompt-row-title-block { flex: 1; min-width: 0; }
.prompt-row-title {
  display: block;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}
.prompt-row:hover .prompt-row-title { color: var(--pink); }
.prompt-row-meta {
  display: block;
  font-size: 11.5px;
  color: var(--text-dim);
  margin-top: 2px;
}
.prompt-row-cat {
  color: var(--turquoise);
  font-weight: 600;
}
.prompt-row-sep { padding: 0 6px; }
.prompt-row-arrow {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
}
.prompt-row:hover .prompt-row-arrow {
  background: rgba(250, 47, 181, 0.1);
  color: var(--pink);
  border-color: var(--pink);
}
.prompt-row[aria-expanded="true"] .prompt-row-arrow {
  transform: rotate(180deg);
}

.prompt-row-body {
  display: none;
  padding: 0 16px 16px;
  border-top: 1px solid var(--border);
  margin-top: -1px;
}
.prompt-row[aria-expanded="true"] .prompt-row-body { display: block; padding-top: 14px; }

.prompt-row-prompt {
  font-family: 'Consolas', 'Monaco', 'Menlo', monospace;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  background: var(--midnight);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 14px;
  margin: 0 0 12px;
  max-height: 360px;
  overflow: auto;
  white-space: pre-wrap;
  word-break: break-word;
}

.prompt-row-actions { display: flex; gap: 8px; }
.prompt-copy-btn {
  flex: 1;
  padding: 10px 14px;
  border-radius: var(--r-full);
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
}
.prompt-copy-btn:hover { border-color: var(--pink); color: var(--pink); }
.prompt-copy-btn.is-success {
  border-color: var(--turquoise);
  color: var(--turquoise);
  background: rgba(33, 225, 225, 0.08);
}

.prompts-empty {
  text-align: center;
  padding: var(--s-6);
  color: var(--text-dim);
}

/* ============================================================
   GLOSSARY — Slovník AI
   ============================================================ */

.glossary {
  padding: var(--s-8) 0;
  border-top: 1px solid var(--border);
}
.glossary-controls {
  display: flex; gap: var(--s-3); align-items: center; flex-wrap: wrap;
  margin-bottom: var(--s-5);
}
.glossary-search-input {
  flex: 1 1 280px;
  max-width: 480px;
  padding: 12px 18px;
  background: var(--bg-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-full);
  font-size: 15px;
  color: var(--text);
}
.glossary-search-input:focus {
  outline: none;
  border-color: var(--turquoise);
  background: var(--bg-card-hover);
}
.glossary-search-input::placeholder { color: var(--text-dim); }

.glossary-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) { .glossary-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .glossary-grid { grid-template-columns: repeat(3, 1fr); } }

.glossary-term {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
  align-self: start;
  overflow: hidden;
}
.glossary-term:hover {
  border-color: var(--pink);
  background: rgba(250, 47, 181, 0.04);
  transform: translateY(-1px);
}

.glossary-term-head {
  width: 100%;
  display: flex; align-items: flex-start; gap: 12px;
  padding: var(--s-3) var(--s-4);
  background: transparent;
  border: 0;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
}
.glossary-term-head-text { flex: 1; min-width: 0; }
.glossary-term h3 {
  font-size: 15.5px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--white);
  letter-spacing: -0.01em;
}
.glossary-term .short {
  font-size: 13px;
  color: var(--turquoise);
  font-weight: 500;
  line-height: 1.45;
}
.glossary-term:hover .short { color: var(--pink); }

.glossary-term-arrow {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 12px;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast);
  margin-top: 2px;
}
.glossary-term:hover .glossary-term-arrow {
  background: rgba(250, 47, 181, 0.1);
  color: var(--pink);
  border-color: var(--pink);
}
.glossary-term[aria-expanded="true"] .glossary-term-arrow {
  transform: rotate(180deg);
}

.glossary-term-body {
  padding: 0 var(--s-4) var(--s-4);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
  border-top: 1px solid var(--border);
  padding-top: var(--s-3);
  margin: 0 0 0;
}
.glossary-term[aria-expanded="true"] .glossary-term-body { display: block; }

.glossary-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: var(--s-6);
  color: var(--text-dim);
}

/* ============================================================
   CARD EXPANDABLE — "Viac info"
   ============================================================ */

/* "Viac info" button na karte — otvára popup modal */
.card-expand {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px;
  margin: var(--s-3) 0 0;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--t-fast);
  align-self: flex-start;
}
.card-expand:hover {
  color: var(--pink);
  border-color: var(--pink);
  background: rgba(250, 47, 181, 0.06);
}
.card-expand .expand-arrow {
  display: inline-block;
  font-size: 14px;
}

/* ============================================================
   TOOL DETAIL MODAL — popup pre "Viac info"
   ============================================================ */
.tool-modal-backdrop {
  position: fixed; inset: 0;
  z-index: 70;
  background: rgba(5, 7, 26, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity var(--t-base);
}
.tool-modal-backdrop.is-open { opacity: 1; }

.tool-modal {
  position: fixed;
  z-index: 71;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.98);
  width: min(720px, calc(100vw - 32px));
  max-height: calc(100dvh - 60px);
  background: var(--midnight-2);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.55);
  opacity: 0;
  transition: opacity var(--t-base), transform var(--t-base);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.tool-modal.is-open {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.tool-modal-scroll {
  overflow: auto;
  max-height: calc(100dvh - 60px);
}
.tool-modal-close {
  position: absolute; top: 14px; right: 14px;
  z-index: 2;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  display: inline-flex; align-items: center; justify-content: center;
  transition: all var(--t-fast);
}
.tool-modal-close:hover {
  background: rgba(250, 47, 181, 0.15);
  color: var(--pink);
  border-color: var(--pink);
  transform: rotate(90deg);
}

.tool-modal-content {
  padding: var(--s-6) var(--s-5);
}
.tool-modal-head {
  display: flex; gap: var(--s-4);
  align-items: flex-start;
  margin-bottom: var(--s-4);
  padding-right: 56px;
}
.tool-modal-logo {
  width: 64px; height: 64px;
  border-radius: var(--r-md);
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 22px;
  color: var(--midnight);
  flex-shrink: 0;
  border: 1px solid var(--border);
  overflow: hidden;
}
.tool-modal-logo img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 8px;
  background: var(--white);
}
.tool-modal-logo.is-fallback {
  background: linear-gradient(135deg, rgba(33, 225, 225, 0.25), rgba(250, 47, 181, 0.25));
  color: var(--white);
}
.tool-modal-title-block { min-width: 0; flex: 1; }
.tool-modal-title {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
}
.tool-modal-cat {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
  margin-bottom: 8px;
}
.tool-modal-tagline {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}
.tool-modal-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin: var(--s-3) 0 var(--s-4);
}

.tool-modal-section { margin-top: var(--s-5); }
.tool-modal-section h3 {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--turquoise);
  font-weight: 700;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.tool-modal-section h3 .section-bullet {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(33, 225, 225, 0.1);
  font-size: 12px;
}
.tool-modal-section ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 6px;
}
.tool-modal-section ul li {
  padding-left: 18px;
  position: relative;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-muted);
}
.tool-modal-section ul.benefits li::before {
  content: '+';
  position: absolute; left: 0; top: 0;
  color: var(--turquoise);
  font-weight: 800;
}
.tool-modal-section ul.features li::before {
  content: '◆';
  position: absolute; left: 0; top: 1px;
  color: var(--lilac);
  font-size: 10px;
}
.tool-modal-section ul.limits li::before {
  content: '−';
  position: absolute; left: 0; top: 0;
  color: var(--pink);
  font-weight: 800;
}
.tool-modal-section ul.usecases li::before {
  content: '';
  position: absolute; left: 0; top: 11px;
  width: 10px; height: 2px;
  background: var(--grad-primary);
  border-radius: 2px;
}
.tool-modal-section .pricing-detail-block {
  padding: 12px 14px;
  background: var(--bg-card-hover);
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
  font-size: 13.5px;
  color: var(--text);
  line-height: 1.5;
}
.tool-modal-note {
  margin-top: var(--s-4);
  padding: 12px 14px;
  background: rgba(223, 255, 36, 0.06);
  border: 1px solid rgba(223, 255, 36, 0.2);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
  display: flex; gap: 10px; align-items: flex-start;
}
.tool-modal-note .icon { color: var(--yellow); font-weight: 800; flex-shrink: 0; }

.tool-modal-actions {
  display: flex; flex-wrap: wrap; gap: 10px;
  padding-top: var(--s-5);
  margin-top: var(--s-5);
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .tool-modal-content { padding: var(--s-5) var(--s-4); }
  .tool-modal-head { padding-right: 48px; }
  .tool-modal-title { font-size: 19px; }
  .tool-modal-logo { width: 52px; height: 52px; }
}

/* Section count badge inline in section title */
.section-count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; height: 28px;
  padding: 0 10px;
  border-radius: var(--r-full);
  background: var(--grad-primary);
  color: var(--midnight);
  font-size: 13px; font-weight: 800;
  margin-left: 4px;
}

/* Callout link */
.callout-link {
  display: inline-block;
  margin-left: 12px;
  font-size: 13px;
  color: var(--turquoise);
  font-weight: 600;
}
.callout-link:hover { color: var(--pink); }

/* ============================================================
   UTILS
   ============================================================ */

.is-hidden { display: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

/* Print-friendly */
@media print {
  /* Default print: hide chrome */
  .site-header, .toolbar, .pills-bar, .nav-toggle, .compare-tray { display: none !important; }
  body { background: #fff; color: #000; }
  .card { break-inside: avoid; border: 1px solid #ccc; background: #fff; }
  a { color: #0066cc; }
}

/* Print only the quiz result when share-print is active */
body.printing-quiz {
  /* Defer to print media query */
}
@media print {
  body.printing-quiz > *:not(main) { display: none !important; }
  body.printing-quiz main > *:not(#vybrat) { display: none !important; }
  body.printing-quiz #vybrat { background: #fff !important; padding: 0 !important; border: 0 !important; }
  body.printing-quiz #vybrat .quiz-share { display: none !important; }
  body.printing-quiz #vybrat .quiz-nav { display: none !important; }
  body.printing-quiz #vybrat .quiz-progress,
  body.printing-quiz #vybrat .quiz-meta { display: none !important; }
  body.printing-quiz #vybrat .quiz-card { background: #fff !important; border: 0 !important; box-shadow: none !important; padding: 0 !important; }
  body.printing-quiz #vybrat * { color: #000 !important; }
  body.printing-quiz #vybrat .recommendation { background: #f8f8f8 !important; border: 1px solid #ccc !important; break-inside: avoid; page-break-inside: avoid; }
  body.printing-quiz #vybrat .recommendation-rank { background: #333 !important; color: #fff !important; }
  body.printing-quiz #vybrat .recommendation-reasons li::before { color: #008080 !important; }
  body.printing-quiz #vybrat .recommendation-actions { display: none !important; }
  body.printing-quiz #vybrat .quiz-recap { background: #f0f7f8 !important; border: 1px solid #80c5d0 !important; }
}
