/* ========== ZÁKLAD ========== */
:root {
  --purple: #7c3aed;
  --pink: #ec4899;
  --blue: #4f46e5;
  --bg: #fbfaff;
  --ink: #1e1b2e;
  --muted: #6b6680;
  --card: #ffffff;
  --border: #ece9f7;
  --radius: 18px;
  --shadow: 0 10px 40px rgba(124, 58, 237, 0.12);
  --gradient: linear-gradient(135deg, var(--purple), var(--pink));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

/* ========== IKONY (SVG) ========== */
.ic {
  width: 24px;
  height: 24px;
  display: inline-block;
  vertical-align: middle;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

h1, h2, h3, h4 { font-weight: 800; letter-spacing: -0.02em; }

.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
  background: rgba(124, 58, 237, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 { font-size: 36px; margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 17px; }

/* ========== TLAČÍTKA ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(236, 72, 153, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple); }
.btn-light {
  background: #fff;
  color: var(--purple);
}
.btn-light:hover { transform: translateY(-2px); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-block { width: 100%; }
.btn .ic { width: 18px; height: 18px; }

/* ========== NAVIGACE ========== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 255, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
/* navbar má víc položek, potřebuje víc šířky než obsah stránky */
.navbar .container { max-width: 1320px; }
/* mezery kolem přepínače jazyka, ať není vmáčknutý mezi menu a tlačítka */
.navbar .lang-mount { margin: 0 18px; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-right: 40px;
}
.logo span { color: var(--pink); }

/* Zabraňuje osamoceným slovům na konci řádku a balancuje nadpisy */
h1, h2, h3, h4, .hero-tagline, .hero-superline { text-wrap: balance; }
p, li, .feat-lead, blockquote, figcaption { text-wrap: pretty; }
.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 600;
  font-size: 15px;
}
.nav-links a:hover { color: var(--purple); }
.nav-links a.active { color: var(--purple); }
.nav-links a.active::after {
  content: "";
  display: block;
  height: 2px;
  background: var(--gradient);
  border-radius: 2px;
  margin-top: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
/* na desktopu wrapper "zmizí" z layoutu, takže odkazy a CTA zůstávají v původním rozložení */
.nav-menu { display: contents; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; margin: -8px; }
.nav-burger span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; }

/* ---- rozbalovací menu "Funkce" (mega-menu) ---- */
.nav-item-dd { position: relative; display: flex; align-items: center; }
.nav-dd-toggle { display: inline-flex; align-items: center; gap: 5px; }
.nav-chevron { width: 14px; height: 14px; transition: transform 0.2s ease; }
.nav-item-dd:hover .nav-chevron { transform: rotate(180deg); }
.nav-mega {
  position: absolute;
  top: 100%; left: 0;
  width: 600px; max-width: calc(100vw - 40px);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(30, 27, 46, 0.16);
  padding: 16px;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 200;
  max-height: 80vh; overflow-y: auto;
}
/* neviditelný "můstek", ať hover nepřeskočí mezeru mezi odkazem a panelem */
.nav-mega::before { content: ""; position: absolute; top: -14px; left: 0; width: 100%; height: 14px; }
.nav-item-dd:hover .nav-mega { opacity: 1; visibility: visible; transform: translateY(4px); }
.nav-mega-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.nav-mega-item { display: flex; gap: 12px; padding: 10px 12px; border-radius: 12px; transition: background 0.15s ease; }
a.nav-mega-item:hover { background: #f6f3ff; }
.nmi-ic {
  flex-shrink: 0; width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  color: var(--purple);
}
.nmi-ic .ic { width: 20px; height: 20px; }
.nmi-txt { display: flex; flex-direction: column; gap: 2px; }
.nmi-txt strong { font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.nmi-txt small { font-size: 12.5px; color: var(--muted); line-height: 1.35; font-weight: 500; }
.nmi-txt strong em {
  font-style: normal; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em;
  color: var(--purple); background: rgba(124,58,237,0.1); padding: 2px 7px; border-radius: 999px; margin-left: 6px; vertical-align: middle;
}
.nav-mega-item.nmi-soon { cursor: default; }
.nav-mega-all { display: block; text-align: center; margin-top: 8px; padding: 11px; border-top: 1px solid var(--border); color: var(--purple); font-weight: 700; font-size: 14px; }
.nav-mega-all:hover { color: var(--pink); }

/* ---- jazykový přepínač (malé tlačítko, styl Notta) ---- */
#google_translate_element { display: none !important; }
.lang-mount, .topbar-lang { display: inline-flex; align-items: center; }
.lang-switch { position: relative; display: inline-flex; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 6px;
  background: #fff; border: 1px solid var(--border); border-radius: 999px;
  padding: 7px 12px; font-size: 14px; font-weight: 600; color: var(--ink);
  cursor: pointer; font-family: inherit;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.lang-btn:hover { border-color: var(--purple); color: var(--purple); }
.lang-btn .ic { width: 16px; height: 16px; }
.lang-chevron { width: 13px; height: 13px; transition: transform 0.2s ease; }
.lang-switch.open .lang-chevron { transform: rotate(180deg); }
.lang-menu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 16px 40px rgba(30, 27, 46, 0.16);
  padding: 6px; min-width: 184px; display: none; z-index: 300;
  max-height: 360px; overflow-y: auto;
}
.lang-switch.open .lang-menu { display: block; }
.lang-opt {
  display: block; width: 100%; text-align: left; background: none; border: none;
  padding: 9px 12px; border-radius: 9px; font-size: 14px; font-weight: 600;
  color: var(--ink); cursor: pointer; font-family: inherit;
}
.lang-opt:hover { background: #f6f3ff; color: var(--purple); }
.lang-opt.active { background: rgba(124,58,237,0.1); color: var(--purple); }
/* skrýt horní Google lištu i bublinu, ať nestrká stránku dolů */
.goog-te-banner-frame, .skiptranslate > iframe { display: none !important; }
body { top: 0 !important; position: static !important; }
#goog-gt-tt, .goog-te-balloon-frame { display: none !important; }
.goog-text-highlight { background: none !important; box-shadow: none !important; }

/* ========== HLAVIČKA PODSTRÁNEK ========== */
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 80px 0 60px;
  background: linear-gradient(180deg, #f6f3ff, var(--bg));
  border-bottom: 1px solid var(--border);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  font-size: 44px;
  max-width: 760px;
  margin: 12px auto 16px;
  line-height: 1.15;
}
.page-hero p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 60px;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
}
.blob-1 {
  width: 420px; height: 420px;
  background: var(--purple);
  top: -160px; left: -120px;
}
.blob-2 {
  width: 380px; height: 380px;
  background: var(--pink);
  top: 40px; right: -140px;
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.badge {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 18px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.hero h1 {
  font-size: 56px;
  max-width: 760px;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  max-width: 600px;
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.page-hero-actions { margin-top: 28px; }
.hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 34px;
}
.stars { color: #f59e0b; font-weight: 700; }
.stars span { color: var(--ink); margin-left: 4px; }
.trust-sep { width: 1px; height: 16px; background: var(--border); }
.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 14px;
  padding: 11px 18px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
  color: #059669;
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}
.hero-guarantee svg { width: 20px; height: 20px; flex-shrink: 0; }
.hero-guarantee strong { color: #047857; }
.hero-guarantee span { white-space: nowrap; }
.hero-onboarding-note { font-size: 13px; color: var(--muted); text-align: center; margin: 0 auto 48px; max-width: none; white-space: nowrap; }
@media (max-width: 760px) {
  .hero-guarantee span { white-space: normal; }
  .hero-onboarding-note { white-space: normal; max-width: 480px; }
}

.hero-superline {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.4rem 0 0.6rem;
}
.hero-tagline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}
.hero-tagline span {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-pitch {
  font-size: clamp(21px, 2.7vw, 28px);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 1.1rem auto 1rem;
  max-width: 660px;
}
.hero-pitch .grad {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-pitch-sub {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto 2.4rem;
}

.hero-counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(99,102,241,0.2);
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 40px;
  backdrop-filter: blur(8px);
}
.hero-counter strong { color: var(--ink); }
.hero-counter-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ---- hero CTA podtitulek + fajfky výhod ---- */
.hero-cta-note { font-size: 14.5px; font-weight: 500; color: var(--ink); line-height: 1.5; max-width: 500px; margin: 16px auto 0; }
.hero-cta-note strong { color: var(--purple); font-weight: 700; }
.trust-perks { display: flex; flex-wrap: wrap; gap: 7px 16px; }
.trust-perks span { display: inline-flex; align-items: center; gap: 6px; }
.trust-perks span svg { width: 15px; height: 15px; flex-shrink: 0; }

/* ---- hero PŘED / PO split ---- */
.hero-prepo {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 18px; align-items: stretch;
  max-width: 880px; margin: 46px auto 0; text-align: left;
}
.pp-side { background: #fff; border: 1px solid var(--border); border-radius: 18px; padding: 18px 18px 16px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.pp-before { background: #fbfaf7; border-color: #efe6d9; }
.pp-tag { align-self: flex-start; font-size: 11px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.pp-tag-bad { background: #fef2f2; color: #dc2626; }
.pp-tag-good { background: rgba(124,58,237,.1); color: var(--purple); }
.pp-notes { list-style: none; margin: 0 0 auto; padding: 0; }
.pp-notes li { font-family: 'Segoe Print','Bradley Hand','Comic Sans MS',cursive; color: #5b5566; font-size: 15px; line-height: 1.95; }
.pp-strike { text-decoration: line-through; opacity: .6; }
.pp-faded { opacity: .45; }
.pp-card { background: #f9f7ff; border: 1px solid var(--border); border-radius: 12px; padding: 10px 12px; margin-bottom: 8px; }
.pp-card strong { display: flex; align-items: center; gap: 6px; font-size: 13px; margin-bottom: 3px; color: var(--ink); }
.pp-card strong svg { width: 15px; height: 15px; color: var(--purple); }
.pp-card p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.4; }
.pp-cap { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--muted); margin: 12px 0 0; font-weight: 600; }
.pp-cap svg { width: 14px; height: 14px; flex-shrink: 0; }
.pp-cap-good { color: #059669; }
.pp-arrow { display: flex; align-items: center; justify-content: center; color: var(--purple); }
.pp-arrow svg { width: 34px; height: 34px; }
@media (max-width: 680px) {
  .hero-prepo { grid-template-columns: 1fr; gap: 10px; }
  .pp-arrow { transform: rotate(90deg); margin: 2px 0; }
}

/* ---- mock dashboard preview ---- */
.hero-mock { width: 100%; max-width: 920px; }
.mock-window {
  background: #fff;
  border-radius: 20px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.mock-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: #f5f3fc;
  border-bottom: 1px solid var(--border);
}
.mock-bar span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--border);
}
.mock-bar span:nth-child(1) { background: #f87171; }
.mock-bar span:nth-child(2) { background: #fbbf24; }
.mock-bar span:nth-child(3) { background: #34d399; }
.mock-bar p { margin-left: 12px; font-size: 13px; color: var(--muted); }
.mock-body {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  padding: 28px;
  text-align: left;
}
.mock-line {
  height: 12px;
  border-radius: 6px;
  background: #ece9f7;
  margin-bottom: 12px;
}
.w-90 { width: 90%; } .w-80 { width: 80%; } .w-70 { width: 70%; }
.w-60 { width: 60%; } .w-50 { width: 50%; }
.mock-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--purple);
  font-size: 13px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 999px;
  margin: 6px 0 16px;
}
.mock-chip .ic { width: 15px; height: 15px; }
.mock-card strong .ic { width: 16px; height: 16px; color: var(--purple); }
.mock-card {
  background: #f9f7ff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 16px;
  font-size: 14px;
}
.mock-card strong { display: flex; align-items: center; gap: 6px; margin-bottom: 6px; font-size: 14px; }
.mock-card p { color: var(--muted); font-size: 13px; margin: 0; }

/* ========== ZAPSIO V AKCI (ruční vs. ZAPSIO) ========== */
.inaction { padding: 80px 0; background: linear-gradient(180deg, #ffffff, #faf8ff); }
.inaction-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  max-width: 1000px;
  margin: 40px auto 0;
}
.ia-side { display: flex; flex-direction: column; }
.ia-tag {
  align-self: flex-start;
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 14px;
}
.ia-tag .ic { width: 15px; height: 15px; }
.ia-tag-bad { background: #fef2f2; color: #dc2626; }
.ia-tag-good { background: rgba(124, 58, 237, 0.1); color: var(--purple); }

.ia-paper {
  position: relative;
  background: #fffdf2;
  background-image: repeating-linear-gradient(#fffdf2 0 27px, #e8e3cf 27px 28px);
  border: 1px solid #ece4c7;
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.09);
  padding: 24px 22px 30px 48px;
  min-height: 300px;
  transform: rotate(-1.5deg);
}
.ia-paper::before {
  content: ""; position: absolute; left: 34px; top: 0; bottom: 0;
  width: 2px; background: #f0a8a8;
}
.hw {
  font-family: 'Segoe Print', 'Bradley Hand', 'Comic Sans MS', cursive;
  color: #28408b; font-size: 17px; line-height: 28px;
  margin: 0 0 1px; transform: rotate(-0.5deg);
}
.hw-title { font-size: 21px; font-weight: 700; text-decoration: underline; margin-bottom: 6px; }
.hw.strike { text-decoration: line-through; opacity: .65; }
.hw.faded { opacity: .45; }
.hw.scribble { color: #8a8a8a; font-style: italic; }
.ia-caption { text-align: center; font-size: 13px; color: var(--muted); margin: 18px 0 0; }

.ia-arrow { display: flex; align-items: center; justify-content: center; color: var(--purple); }
.ia-arrow svg { width: 48px; height: 48px; }

.ia-side .mock-window { transform: none; }
.inaction-grid { align-items: start; }
/* ---- bohatý výstup (všechny funkce) ---- */
.mw-rich .ia-out { gap: 9px; padding: 16px; }
.mw-audio { display: flex; align-items: center; gap: 9px; background: #f4f0ff; border: 1px solid var(--border); border-radius: 10px; padding: 8px 12px; }
.mw-play { width: 24px; height: 24px; border-radius: 50%; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mw-play svg { width: 11px; height: 11px; }
.mw-track { flex: 1; height: 4px; border-radius: 999px; background: #e3dbf5; position: relative; }
.mw-track span { position: absolute; left: 0; top: 0; bottom: 0; width: 32%; background: var(--gradient); border-radius: 999px; }
.mw-audio em { font-style: normal; font-size: 11px; color: var(--muted); font-weight: 600; }
.mw-bul { list-style: none; margin: 0; padding: 0; }
.mw-bul li { position: relative; padding-left: 14px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }
.mw-bul li::before { content: ""; position: absolute; left: 2px; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--purple); }
.mw-spk { display: flex; flex-wrap: wrap; gap: 6px; }
.mw-spk-tag { display: inline-flex; align-items: center; gap: 5px; background: #f3effe; color: var(--ink); font-size: 11.5px; font-weight: 600; padding: 3px 9px; border-radius: 999px; }
.mw-spk-tag i { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.mw-tr { font-size: 12.5px; color: #2d2d3a; line-height: 1.45; margin: 0 0 5px; }
.mw-tr:last-child { margin-bottom: 0; }
.mw-tr b { color: var(--purple); font-weight: 700; margin-right: 4px; }
.mw-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
.mw-metric { background: #f9f7ff; border: 1px solid var(--border); border-radius: 12px; padding: 11px 10px; text-align: center; }
.mw-metric strong { display: block; font-size: 21px; font-weight: 900; color: var(--ink); line-height: 1; }
.mw-metric strong i { font-style: normal; font-size: 11px; color: var(--muted); font-weight: 700; }
.mw-metric small { display: block; font-size: 10.5px; color: var(--muted); margin-top: 4px; line-height: 1.25; }
.mw-bar { display: block; height: 4px; border-radius: 999px; background: #e8e1f6; margin: 6px 0 0; overflow: hidden; }
.mw-bar span { display: block; height: 100%; background: linear-gradient(90deg, #34d399, #10b981); border-radius: 999px; }
.mw-metric-mood strong { font-size: 22px; }
.mw-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.mw-chips span { background: #fff; border: 1px solid var(--border); color: var(--purple); font-size: 11.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.mw-actions { display: flex; gap: 8px; }
.mw-actions span { flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 5px; background: var(--gradient); color: #fff; font-size: 11.5px; font-weight: 700; padding: 8px 6px; border-radius: 10px; }
.mw-actions span svg { width: 13px; height: 13px; }
/* ---- "Co všechno dostanete" seznam ---- */
.get-panel { background: #fff; border: 1px solid var(--border); border-radius: 18px; box-shadow: var(--shadow); padding: 22px 22px 24px; }
.get-inputs { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; margin: 0 0 16px; }
.get-inputs span { display: inline-flex; align-items: center; gap: 6px; background: rgba(124,58,237,.08); border: 1px solid rgba(124,58,237,.16); color: var(--purple); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.get-inputs span svg { width: 14px; height: 14px; flex-shrink: 0; }
.get-lead { font-size: 14px; font-weight: 800; color: var(--ink); margin: 0 0 14px; }
.get-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px; }
.get-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 13.5px; font-weight: 600; color: var(--ink); line-height: 1.35; text-align: left; }
.get-list li svg { width: 17px; height: 17px; color: #059669; flex-shrink: 0; margin-top: 1px; }
@media (max-width: 560px) { .get-list { grid-template-columns: 1fr; } }
.ia-out { padding: 20px; display: flex; flex-direction: column; gap: 12px; text-align: left; }
.ia-out-card { background: #f9f7ff; border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; }
.ia-out-card strong { display: flex; align-items: center; gap: 7px; font-size: 14px; margin-bottom: 6px; }
.ia-out-card strong .ic { width: 16px; height: 16px; color: var(--purple); }
.ia-out-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.5; }
.ia-tasks { list-style: none; margin: 0; padding: 0; }
.ia-tasks li { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; padding: 3px 0; font-size: 13px; color: var(--muted); }
.ia-tasks .who { font-weight: 700; color: var(--ink); background: rgba(124, 58, 237, .1); padding: 1px 9px; border-radius: 999px; font-size: 12px; }
.ia-tasks .due { margin-left: auto; font-size: 11px; color: var(--purple); background: #f3effe; padding: 1px 9px; border-radius: 999px; }

@media (max-width: 760px) {
  .inaction-grid { grid-template-columns: 1fr; gap: 8px; }
  .ia-arrow { transform: rotate(90deg); margin: 6px 0; }
  .ia-paper, .ia-side .mock-window { transform: none; }
  .ia-side { align-items: stretch; }
}

/* ========== BEZPEČNOST – BADGE (ceník) ========== */
.security-section { padding: 70px 0; }
.security-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px 24px; margin-top: 42px; }
.sec-badge { display: flex; flex-direction: column; align-items: center; text-align: center; width: 150px; }
.sec-shield {
  width: 70px; height: 70px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--purple), var(--pink));
  border-radius: 18px; margin-bottom: 12px;
  box-shadow: 0 10px 26px rgba(124, 58, 237, .22);
}
.sec-shield svg { width: 34px; height: 34px; color: #fff; }
.sec-badge strong { font-size: 15px; color: var(--ink); }
.sec-badge span { font-size: 12.5px; color: var(--muted); margin-top: 2px; }

/* ========== VIDEO HOVOR + ŽIVÝ PŘEPIS ========== */
.callshow { padding: 80px 0; }
.callshow-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 30px; align-items: stretch; margin-top: 42px; }
.callwin { background: #1b1828; border-radius: 22px; padding: 14px; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.callwin-bar { display: flex; align-items: center; gap: 8px; color: #d2cce8; font-size: 13px; font-weight: 600; padding: 4px 6px 12px; }
.cw-dot { width: 8px; height: 8px; border-radius: 50%; background: #34d399; flex-shrink: 0; animation: pulse-dot 2s ease-in-out infinite; }
.cw-rec { margin-left: auto; color: #fb7185; font-size: 12px; font-weight: 800; letter-spacing: .02em; animation: pulse-dot 1.4s ease-in-out infinite; }
.callwin-tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ctile { position: relative; aspect-ratio: 4 / 3; border-radius: 12px; overflow: hidden; }
.ctile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ctile span { position: absolute; left: 8px; bottom: 8px; background: rgba(0,0,0,.55); color: #fff; font-size: 11px; font-weight: 600; padding: 2px 8px; border-radius: 6px; }
.callwin-foot { display: flex; align-items: center; gap: 10px; color: #a99fd0; font-size: 12px; padding: 12px 6px 4px; }
.callwin-foot svg { width: 70px; height: 18px; color: #a78bfa; flex-shrink: 0; }
.callpanel { background: #fff; border: 1px solid var(--border); border-radius: 22px; box-shadow: var(--shadow); padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.cp-head { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 15px; }
.cp-head svg { width: 18px; height: 18px; color: var(--purple); }
.cp-line { display: flex; gap: 10px; }
.cp-av { width: 34px; height: 34px; border-radius: 50%; color: #fff; font-weight: 800; font-size: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cp-line b { font-size: 13px; color: var(--ink); }
.cp-line b i { font-style: normal; color: var(--muted); font-weight: 600; margin-left: 6px; font-size: 11px; }
.cp-line p { margin: 2px 0 0; font-size: 13px; color: #2d2d3a; line-height: 1.4; }
.cp-card { background: #f9f7ff; border: 1px solid var(--border); border-radius: 14px; padding: 14px; }
.cp-card strong { display: flex; align-items: center; gap: 6px; font-size: 14px; margin-bottom: 5px; }
.cp-card strong svg { width: 16px; height: 16px; color: var(--purple); }
.cp-card p { margin: 0; font-size: 13px; color: var(--muted); line-height: 1.45; }
.cp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.cp-tag { display: inline-flex; align-items: center; gap: 5px; background: rgba(124,58,237,.08); color: var(--purple); font-size: 12px; font-weight: 700; padding: 5px 11px; border-radius: 999px; }
.cp-tag svg { width: 13px; height: 13px; }
@media (max-width: 820px) { .callshow-grid { grid-template-columns: 1fr; } }

/* ========== SHOWCASE (osoba + plovoucí karty) ========== */
.showcase { padding: 80px 0; }
.showcase-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.showcase-media { position: relative; }
.showcase-photo { border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 1 / 1; }
.showcase-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.showcase-float {
  position: absolute; background: #fff;
  border: 1px solid var(--border); border-radius: 14px;
  box-shadow: 0 14px 34px rgba(124, 58, 237, .16); padding: 12px 16px;
}
.showcase-float-1 { top: 26px; right: -22px; max-width: 235px; text-align: left; }
.showcase-float-1 strong { display: flex; align-items: center; gap: 6px; font-size: 14px; margin-bottom: 5px; }
.showcase-float-1 strong .ic { width: 16px; height: 16px; color: var(--purple); }
.showcase-float-1 p { font-size: 12.5px; color: var(--muted); margin: 0; line-height: 1.45; }
.showcase-float-2 { bottom: 30px; left: -22px; display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 700; color: var(--ink); }
.showcase-float-2 .ic { width: 18px; height: 18px; color: #059669; }
.showcase-text h2 { font-size: 32px; margin: 10px 0 14px; }
.showcase-text > p { color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 22px; }
@media (max-width: 860px) {
  .showcase-inner { grid-template-columns: 1fr; gap: 40px; }
  .showcase-float-1 { right: 8px; }
  .showcase-float-2 { left: 8px; }
}

/* ========== ČASOVÁ OSA (stres vs. svoboda) ========== */
.timeline-grid { display: grid; grid-template-columns: 1fr auto 1fr; gap: 26px; align-items: center; max-width: 1000px; margin: 42px auto 0; }
.tl-side { display: flex; flex-direction: column; }
.tl-photo { position: relative; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 5 / 4; }
.tl-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tl-clock { position: absolute; top: 14px; left: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 800; padding: 6px 12px; border-radius: 999px; color: #fff; }
.tl-clock svg { width: 15px; height: 15px; }
.tl-clock-bad { background: rgba(220, 38, 38, .92); }
.tl-clock-good { background: rgba(16, 185, 129, .94); }
.tl-notif { position: absolute; bottom: 16px; left: 16px; right: 16px; display: flex; gap: 10px; align-items: center; background: #fff; border-radius: 12px; padding: 10px 12px; box-shadow: 0 12px 28px rgba(0, 0, 0, .22); }
.tl-notif-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--gradient); color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.tl-notif-ic svg { width: 16px; height: 16px; }
.tl-notif strong { font-size: 13px; display: block; color: var(--ink); }
.tl-notif p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.3; }
.tl-cap { margin-top: 16px; }
.tl-cap strong { display: block; font-size: 18px; color: var(--ink); margin-bottom: 4px; }
.tl-cap p { margin: 0; font-size: 14px; color: var(--muted); line-height: 1.5; }
.tl-arrow { display: flex; align-items: center; justify-content: center; color: var(--purple); }
.tl-arrow svg { width: 36px; height: 36px; }
@media (max-width: 760px) {
  .timeline-grid { grid-template-columns: 1fr; gap: 14px; }
  .tl-arrow { transform: rotate(90deg); margin: 4px 0; }
}

/* ========== NAVRŽENO PRO VÁS (profese) ========== */
.builtfor { padding: 80px 0; }
.builtfor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.bf-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.05);
  transition: transform .2s ease, box-shadow .2s ease;
}
.bf-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.bf-photo { aspect-ratio: 4 / 3; overflow: hidden; background: #f3f0fb; }
.bf-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.bf-card:hover .bf-photo img { transform: scale(1.05); }
.bf-body { padding: 20px 22px 24px; }
.bf-body h3 { font-size: 18px; margin-bottom: 8px; }
.bf-body p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0; }

@media (max-width: 980px) { .builtfor-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .builtfor-grid { grid-template-columns: 1fr; } }

/* ========== PLATFORMY / NAHRÁVÁNÍ ========== */
.platforms { padding: 40px 0 14px; }
.platforms-label {
  text-align: center; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 22px;
}
.platforms-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.pf-chip {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 999px; padding: 8px 18px 8px 9px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  box-shadow: 0 4px 14px rgba(124, 58, 237, .05);
}
.pf-chip svg { width: 30px; height: 30px; flex-shrink: 0; }
.pf-chip img { height: 27px; width: auto; max-width: 36px; flex-shrink: 0; display: block; }
.platforms-note { text-align: center; font-size: 13px; color: var(--muted); max-width: 600px; margin: 24px auto 0; }

/* ========== TŘI ZPŮSOBY NAHRÁVÁNÍ ========== */
.record3 { padding: 70px 0; }
.record3-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 42px; }
.rec-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; box-shadow: 0 6px 20px rgba(124,58,237,.05); transition: transform .2s ease, box-shadow .2s ease; }
.rec-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.rec-photo { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: #f3f0fb; }
.rec-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.rec-card:hover .rec-photo img { transform: scale(1.05); }
.rec-badge { position: absolute; top: 12px; left: 12px; width: 30px; height: 30px; border-radius: 50%; background: var(--gradient); color: #fff; font-weight: 800; font-size: 15px; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 12px rgba(124,58,237,.3); }
.rec-card h3 { font-size: 18px; margin: 18px 22px 8px; }
.rec-card > p { font-size: 14px; color: var(--muted); line-height: 1.5; margin: 0 22px 22px; }
@media (max-width: 880px) { .record3-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; } }
.platforms-note strong { color: var(--ink); }

/* ========== PRO KOHO ========== */
.for-you { padding: 70px 0 90px; }
.for-you-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.for-you-card {
  display: flex;
  gap: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
}
.for-you-icon {
  flex-shrink: 0;
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  border-radius: 14px;
  color: var(--purple);
}
.for-you-icon .ic { width: 26px; height: 26px; }
.for-you-card h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.35; }
.for-you-card p { color: var(--muted); font-size: 14.5px; }
.for-you-note {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  font-weight: 600;
  color: var(--purple);
  font-size: 16px;
}

/* ========== STATISTIKY ========== */
.stats {
  background: var(--gradient);
  padding: 44px 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 22px;
  align-items: start;
  text-align: center;
  color: #fff;
}
.stat-num {
  display: flex; align-items: center; justify-content: center;
  font-size: 27px; font-weight: 900; letter-spacing: -0.02em;
  white-space: nowrap; line-height: 1.1;
}
.stat-arrow { display: inline-flex; align-items: center; margin-left: 4px; color: #5ef2a6; }
.stat-arrow svg { width: 18px; height: 18px; }
.stat-label { font-size: 13px; opacity: 0.92; }
.stat-sub { display: block; font-size: 11px; opacity: 0.65; margin-top: 3px; }

/* ========== NOVÁ CESTA (stará vs nová) ========== */
.newway { padding: 80px 0; }
.newway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.way-card {
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
}
.way-old { background: #faf9fc; }
.way-new {
  background: #fff;
  border: 2px solid var(--purple);
  box-shadow: var(--shadow);
}
.way-label {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}
.way-old .way-label { color: var(--muted); }
.way-new .way-label { color: var(--purple); }
.way-card ul { display: flex; flex-direction: column; gap: 14px; }
.way-card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
}
.way-card li .ic { width: 20px; height: 20px; margin-top: 1px; }
.way-old li { color: var(--muted); }
.way-old li .ic { color: #c9c4d8; }
.way-new li { color: var(--ink); font-weight: 500; }
.way-new li .ic { color: var(--purple); }
.newway-note {
  text-align: center;
  max-width: 620px;
  margin: 40px auto 0;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}

/* ========== USE CASES ========== */
.usecases { padding: 80px 0; }
.usecase-row {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 56px;
}
.usecase-row:last-child { margin-bottom: 0; }
.usecase-row-reverse .usecase-text { order: 2; }
.usecase-row-reverse .usecase-visual { order: 1; }
.usecase-text h3 { font-size: 24px; margin-bottom: 12px; }
.usecase-text > p { color: var(--muted); font-size: 16px; margin-bottom: 20px; }
.usecase-visual {
  text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
  border-radius: 24px;
  padding: 60px 0;
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.usecase-visual .ic { width: 90px; height: 90px; stroke-width: 1.5; }
.usecase-visual.usecase-photo { padding: 0; overflow: hidden; aspect-ratio: 4 / 3; }
.usecase-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.checklist { margin-bottom: 24px; }
.checklist li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--ink);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px; height: 20px;
  background: var(--gradient);
  color: #fff;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ========== PROČ ZAPSIO ========== */
.why { padding: 80px 0; background: linear-gradient(180deg, #fff, #f6f3ff); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.why-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--purple);
}
.why-icon .ic { width: 26px; height: 26px; }
.why-card h3 { font-size: 18px; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 14.5px; }
.why-cta { text-align: center; margin-top: 48px; }

/* ========== BLOG ========== */
.blog { padding: 80px 0; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-thumb {
  height: 180px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  color: var(--purple);
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-thumb .ic { width: 48px; height: 48px; stroke-width: 1.5; }
.blog-link .ic { width: 16px; height: 16px; }
.blog-body { padding: 22px; }
.blog-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--purple);
  background: rgba(124,58,237,0.1);
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 12px;
}
.blog-body h3 { font-size: 17px; margin-bottom: 8px; line-height: 1.35; }
.blog-body p { color: var(--muted); font-size: 14px; margin-bottom: 14px; }
.blog-link { font-weight: 700; color: var(--purple); font-size: 14px; }
/* karta blogu jako klikací odkaz + meta (datum / doba čtení) */
a.blog-card { display: block; text-decoration: none; color: inherit; }
.blog-meta { font-size: 12px; color: var(--muted); margin-top: 10px; display: flex; align-items: center; gap: 6px; }
.blog-meta .ic { width: 14px; height: 14px; }
/* banner uvnitř článku */
.article-hero-img { margin: 0 0 34px; border-radius: 16px; overflow: hidden; box-shadow: var(--shadow); }
.article-hero-img img { width: 100%; height: auto; display: block; aspect-ratio: 16 / 9; object-fit: cover; }

/* ========== ČLÁNEK (detail blogu) ========== */
.article-page { padding: 48px 0 80px; }
.article-meta { color: var(--muted); font-size: 14px; margin-top: 14px; }
.article-page .container > p,
.article-page .container > ul,
.article-page .container > ol { color: #443f57; line-height: 1.85; font-size: 17px; margin-bottom: 18px; }
.article-page .lead { font-size: 19px; color: var(--ink); font-weight: 500; margin-bottom: 28px; }
.article-page h2 { font-size: 24px; margin: 38px 0 14px; color: var(--ink); line-height: 1.3; }
.article-page h3 { font-size: 19px; margin: 26px 0 10px; color: var(--ink); }
.article-page ul, .article-page ol { padding-left: 24px; }
.article-page li { margin-bottom: 8px; line-height: 1.7; color: #443f57; }
.article-page blockquote {
  border-left: 4px solid var(--purple);
  background: rgba(124,58,237,0.06);
  padding: 16px 22px; margin: 24px 0; border-radius: 0 12px 12px 0;
  font-size: 18px; color: var(--ink); font-style: italic;
}
.article-page strong { color: var(--ink); }
.article-cta {
  margin: 48px 0 8px; padding: 36px; text-align: center;
  background: var(--gradient); border-radius: var(--radius); color: #fff;
}
.article-cta h3 { color: #fff; font-size: 22px; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.92); margin-bottom: 22px; font-size: 16px; }
.article-cta .btn { background: #fff; color: var(--purple); }
.article-cta .btn:hover { transform: translateY(-2px); }
.article-back { display: inline-flex; align-items: center; gap: 6px; margin-top: 36px; font-weight: 700; color: var(--purple); }

/* ========== KOMUNITA ========== */
.community { padding: 80px 0; background: linear-gradient(180deg, #f6f3ff, #fff); }
.community-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}
.community-text h2 { font-size: 32px; margin: 6px 0 14px; }
.community-text > p { color: var(--muted); font-size: 16px; margin-bottom: 24px; }
.community-socials { display: flex; flex-wrap: wrap; gap: 12px; }
.social-btn {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-weight: 700;
  font-size: 14px;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.social-btn:hover { border-color: var(--purple); color: var(--purple); }
.community-visual {
  text-align: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.1), rgba(236,72,153,0.1));
  border-radius: 24px;
  padding: 50px 0;
  color: var(--purple);
  display: flex; align-items: center; justify-content: center;
}
.community-visual .ic { width: 110px; height: 110px; stroke-width: 1.5; }

/* ========== O NÁS ========== */
.about { padding: 40px 0 90px; }
.about-inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 56px;
  align-items: center;
}
/* Kruhový avatar */
.about-photo { text-align: center; }
.about-avatar-circle {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(124,58,237,0.15), rgba(236,72,153,0.15));
  padding: 6px;
  box-shadow: 0 0 0 2px rgba(124,58,237,0.25), var(--shadow);
}
.about-avatar-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}
.about-avatar-fallback {
  position: absolute;
  inset: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  border: 2px dashed var(--purple);
  border-radius: 50%;
  color: var(--purple);
  z-index: 0; /* je pod obrázkem; odkryje se, když obrázek chybí */
}
.about-avatar-fallback .ic { width: 44px; height: 44px; stroke-width: 1.5; }
.about-avatar-fallback span { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; }
.about-avatar-name { margin-top: 20px; }
.about-avatar-name strong {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--ink);
}
.about-avatar-name span {
  font-size: 14px;
  font-weight: 600;
  color: var(--purple);
}
.about-text h2 { font-size: 30px; margin: 6px 0 18px; }
.about-text p { color: var(--muted); font-size: 15.5px; margin-bottom: 16px; }
.about-signature { color: var(--ink) !important; font-weight: 700; margin-top: 8px; }
.about-text p.about-cta-line {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 25px;
  font-weight: 800;
  line-height: 1.4;
  color: var(--ink);
}
.about-cta-line strong {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ========== POWERED BY AI ========== */
.powered-by { padding: 36px 0; }
.powered-by-inner { text-align: center; }
.powered-by-label {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 18px;
}
.powered-by-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.powered-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 800;
  font-size: 14px;
  box-shadow: var(--shadow);
}
.powered-chip-logo { width: 18px; height: 18px; flex-shrink: 0; display: block; }
.powered-chip em {
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  font-size: 12px;
  margin-left: 6px;
}
.powered-by-note { color: var(--muted); font-size: 14px; max-width: 480px; margin: 0 auto; }

/* ========== KONTAKT ========== */
.contact { padding: 80px 0; background: linear-gradient(180deg, #f6f3ff, #fff); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
  max-width: 980px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
}
.contact-icon {
  color: var(--purple);
  width: 44px; height: 44px;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  border-radius: 12px;
}
.contact-icon .ic { width: 22px; height: 22px; }
.contact-item strong { display: block; font-size: 14.5px; margin-bottom: 4px; }
.contact-item p { color: var(--muted); font-size: 14px; margin: 0; }
.contact-item p a { color: var(--purple); font-weight: 600; }
.contact-item p a:hover { text-decoration: underline; }
.contact-form {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label {
  font-size: 13.5px;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 14.5px;
  font-weight: 400;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--purple);
}

/* Fakturační údaje */
.billing-info {
  max-width: 980px;
  margin: 40px auto 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}
.billing-info h3 { font-size: 19px; margin-bottom: 22px; }
.billing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px 40px;
}
.billing-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.billing-label {
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.billing-value { font-size: 15px; font-weight: 600; color: var(--ink); }

/* ========== LOGOS ========== */
.logos { padding: 40px 0; }
.logos-label {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
.logos-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0.05em;
  opacity: 0.6;
}

/* ========== FEATURES ========== */
.features { padding: 80px 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon {
  width: 56px; height: 56px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(124,58,237,0.12), rgba(236,72,153,0.12));
  border-radius: 14px;
  margin-bottom: 16px;
  color: var(--purple);
}
.feature-icon .ic { width: 26px; height: 26px; }
.feature-card.has-photo { padding-top: 0; overflow: hidden; }
.feature-photo { margin: 0 -28px 18px; height: 160px; overflow: hidden; background: #f3f0fb; }
.feature-photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .35s ease; }
.feature-card.has-photo:hover .feature-photo img { transform: scale(1.05); }
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
/* oborový banner na detailní stránce řešení */
.reseni-photo { padding: 8px 0 4px; }
.reseni-photo .container { max-width: 1000px; }
.reseni-photo-fig { margin: 0; border-radius: 24px; overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 21 / 9; }
.reseni-photo-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }
.feature-card p { color: var(--muted); font-size: 14.5px; }

.more-features {
  margin-top: 48px;
  text-align: center;
}
.more-features > p {
  font-weight: 700;
  margin-bottom: 18px;
}
.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.chip {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

/* ========== RECENZE ========== */
.reviews { padding: 80px 0; background: linear-gradient(180deg, #fff, #f6f3ff); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 15px;
  color: var(--ink);
  flex-grow: 1;
  margin-bottom: 22px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 14.5px; }
.review-author span { font-size: 13px; color: var(--muted); }
.reviews-summary {
  margin-top: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 15px;
}
.reviews-score { font-weight: 900; font-size: 22px; }
.reviews-stars-big { color: #f59e0b; letter-spacing: 2px; font-size: 18px; }
.reviews-count { color: var(--muted); }

/* ========== JAK TO FUNGUJE ========== */
.how { padding: 80px 0; background: linear-gradient(180deg, #fff, #f6f3ff); }
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.how-step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
}
.how-num {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 18px;
}
.how-step h3 { font-size: 19px; margin-bottom: 10px; }
.how-step p { color: var(--muted); font-size: 14.5px; }

/* ========== PRICING ========== */
.pricing { padding: 80px 0; }

/* přepínač měsíčně / ročně */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.bt-label { font-weight: 700; font-size: 15px; color: var(--muted); transition: color 0.2s ease; }
.bt-label.bt-active { color: var(--ink); }
.bt-switch {
  width: 56px;
  height: 30px;
  border-radius: 999px;
  background: var(--border);
  border: none;
  cursor: pointer;
  position: relative;
  transition: background 0.25s ease;
  padding: 0;
}
.bt-switch.on { background: var(--purple); }
.bt-knob {
  position: absolute;
  top: 3px; left: 3px;
  width: 24px; height: 24px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  transition: transform 0.25s ease;
}
.bt-switch.on .bt-knob { transform: translateX(26px); }
.bt-save {
  background: rgba(124,58,237,0.1);
  color: var(--purple);
  font-weight: 800;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 999px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card-highlight {
  border: 2px solid var(--purple);
  box-shadow: var(--shadow);
  transform: scale(1.03);
}
.price-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gradient);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
}
.price-card h3 { font-size: 20px; margin-bottom: 6px; }
.price { font-size: 34px; font-weight: 900; margin-bottom: 4px; }
.price span { font-size: 15px; font-weight: 600; color: var(--muted); }
.price-billed { font-size: 13px; color: var(--purple); font-weight: 700; margin-bottom: 16px; }
.price-desc { color: var(--muted); font-size: 14px; margin-bottom: 24px; }
.price-card ul { margin-bottom: 28px; flex-grow: 1; }
.price-card li {
  font-size: 14.5px;
  margin-bottom: 12px;
  color: var(--ink);
  position: relative;
  padding-left: 28px;
}
.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0; top: 2px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pricing-note {
  text-align: center;
  margin-top: 36px;
  color: var(--muted);
  font-size: 14.5px;
}

/* ========== FAQ ========== */
.faq { padding: 80px 0; background: linear-gradient(180deg, #f6f3ff, #fff); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px 24px;
}
.faq-item summary {
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after {
  content: "+";
  font-size: 20px;
  color: var(--purple);
  margin-left: 16px;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin-top: 14px; color: var(--muted); font-size: 14.5px; }

/* ========== DETAIL FUNKCE (stránka jednotlivé funkce) ========== */
.feat-crumb { font-size: 14px; color: var(--muted); margin-bottom: 18px; }
.feat-crumb a { color: var(--purple); font-weight: 600; }
.feat-crumb span { margin: 0 6px; opacity: 0.6; }
.feat-lead { max-width: 660px !important; font-size: 18px !important; margin: 0 auto 4px !important; }
.feat-hero-cta { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 30px 0 8px; }
.feat-proof { justify-content: center; margin: 8px auto 0; }
.feat-mock { margin: 46px auto 0; }
a.feature-card { display: block; color: inherit; }
a.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(124,58,237,0.3); }
.feature-more { display: inline-block; margin-top: 12px; color: var(--purple); font-weight: 700; font-size: 14px; }
a.feature-card:hover .feature-more { text-decoration: underline; }
.feature-card.feature-soon { position: relative; }
.feature-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(124,58,237,0.1); color: var(--purple);
  font-size: 11px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 11px; border-radius: 999px;
}
.feature-soon.has-photo .feature-badge { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.15); z-index: 2; }

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 90px 0;
  background: var(--gradient);
  color: #fff;
}
.final-cta-inner { text-align: center; max-width: 620px; margin: 0 auto; }
.final-cta h2 { font-size: 34px; margin-bottom: 14px; }
.final-cta p { font-size: 17px; opacity: 0.9; margin-bottom: 32px; }

/* ========== FOOTER ========== */
.footer { background: var(--ink); color: #cfc9e6; padding: 60px 0 0; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand { max-width: 280px; }
.footer-brand p { margin-top: 12px; font-size: 14px; color: #a39cc4; }
.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-cols h4 { font-size: 14px; margin-bottom: 16px; color: #fff; }
.footer-cols a {
  display: block;
  font-size: 14px;
  color: #a39cc4;
  margin-bottom: 10px;
}
.footer-cols a:hover { color: #fff; }
.footer-cols .footer-logo-sm { font-size: 20px; font-weight: 900; letter-spacing: -0.03em; color: #fff; display: block; margin-bottom: 14px; }
.footer-cols .footer-logo-sm span { color: var(--pink); }
.footer-bottom {
  padding: 24px;
  text-align: center;
  font-size: 13px;
  color: #807a9c;
}

/* ========== COOKIE LIŠTA ========== */
.cookie-bar {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 860px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(30,27,46,0.18);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  z-index: 200;
}
.cookie-bar.hidden { display: none; }
.cookie-bar p { font-size: 13.5px; color: var(--muted); margin: 0; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-actions .btn { padding: 10px 18px; font-size: 14px; }

/* ========== PLOVOUCÍ CTA ========== */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--gradient);
  color: #fff;
  font-weight: 800;
  font-size: 15px;
  padding: 14px 24px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(236, 72, 153, 0.4);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
.floating-cta.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.floating-cta:hover { transform: translateY(-3px); }

/* ========== CHAT BUBLINA (vlevo dole) ========== */
.chat-widget { position: fixed; bottom: 24px; left: 24px; z-index: 180; }
.chat-bubble {
  width: 58px; height: 58px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.4);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.15s ease;
}
.chat-bubble:hover { transform: scale(1.05); }
.chat-bubble .ic { width: 26px; height: 26px; }
.chat-panel {
  position: absolute;
  bottom: 72px;
  left: 0;
  width: 340px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 16px 50px rgba(30,27,46,0.22);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.chat-panel.open { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-head {
  background: var(--gradient);
  color: #fff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chat-logo { font-size: 19px; font-weight: 900; letter-spacing: -0.04em; color: #fff; }
.chat-logo span { color: #ffd1ec; }
.chat-close { background: none; border: none; color: #fff; font-size: 24px; cursor: pointer; line-height: 1; }
.chat-head-avs { display: flex; }
.chat-head-avs .zap-av { width: 40px; height: 40px; font-size: 14px; margin-left: -9px; border: 2px solid rgba(255,255,255,0.3); }
.chat-head-avs .zap-av:first-child { margin-left: 0; }
.chat-team-strip { background: var(--gradient); color: rgba(255,255,255,0.9); font-size: 12.5px; font-weight: 600; padding: 0 18px 12px; }
.chat-greet { background: var(--gradient); padding: 2px 18px 22px; color: #fff; }
.chat-greet-name { font-size: 21px; font-weight: 800; line-height: 1.25; margin-bottom: 5px; }
.chat-greet-sub { font-size: 14px; opacity: 0.88; }
.chat-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.chat-btn-msg {
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gradient); color: #fff; border-radius: 12px;
  padding: 14px 18px; font-size: 15px; font-weight: 700;
  transition: opacity 0.15s;
}
.chat-btn-msg:hover { opacity: 0.9; }
.chat-btn-mail {
  display: flex; align-items: center; justify-content: center;
  background: #fff; color: var(--purple);
  border: 1.5px solid var(--border);
  border-radius: 12px; padding: 13px 18px;
  font-size: 15px; font-weight: 700;
  transition: border-color 0.15s, background 0.15s;
}
.chat-btn-mail:hover { border-color: var(--purple); background: #faf5ff; }
.chat-hours { font-size: 12px; color: var(--muted); text-align: center; margin: 0; }
.chat-tabs { display: flex; border-top: 1px solid var(--border); }
.chat-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  gap: 3px; padding: 11px 0; background: none; border: none;
  font-size: 12px; font-weight: 500; cursor: pointer; color: var(--muted);
  transition: color 0.15s;
}
.chat-tab-on { color: var(--purple); font-weight: 700; }

/* ========== RESPONZIVITA ========== */
@media (max-width: 960px) {
  .feature-grid, .how-grid, .pricing-grid, .reviews-grid, .for-you-grid, .why-grid, .blog-grid, .newway-grid { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 42px; }
  .page-hero h1 { font-size: 36px; }
  .mock-body { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; text-align: center; }
  .about-avatar-card { max-width: 300px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .usecase-row, .usecase-row-reverse { grid-template-columns: 1fr; gap: 24px; }
  .usecase-row-reverse .usecase-text { order: 1; }
  .usecase-row-reverse .usecase-visual { order: 2; }
  .usecase-visual { font-size: 60px; padding: 40px 0; }
  .community-inner { grid-template-columns: 1fr; }
  .community-visual { font-size: 90px; padding: 36px 0; }
}
@media (max-width: 720px) {
  .for-you-grid, .reviews-grid, .why-grid, .blog-grid, .newway-grid, .billing-grid { grid-template-columns: 1fr; }
  .for-you-card { flex-direction: column; }
  .stats-inner { grid-template-columns: 1fr; }
  .cookie-bar { flex-direction: column; text-align: center; bottom: 0; left: 0; right: 0; border-radius: 16px 16px 0 0; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
  .floating-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: 14px; }
  .chat-widget { bottom: 16px; left: 16px; }
  .chat-bubble { width: 50px; height: 50px; }
  .chat-panel { width: calc(100vw - 32px); max-width: 300px; }
  /* mobilní rozbalovací menu – jeden panel pod hlavičkou (žádné napevno dané pozice) */
  .nav-menu {
    display: none;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 14px 30px rgba(30, 27, 46, 0.1);
    flex-direction: column;
    padding: 12px 24px 24px;
    gap: 8px;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-links {
    flex-direction: column;
    gap: 0;
    font-size: 16px;
  }
  .nav-links a { padding: 13px 4px; border-bottom: 1px solid var(--border); }
  /* mega-menu na mobilu: rozbalovací accordion místo hoveru */
  .nav-item-dd { flex-direction: column; align-items: stretch; }
  .nav-dd-toggle { display: flex; justify-content: space-between; align-items: center; width: 100%; }
  .nav-mega {
    position: static; width: auto; max-width: none;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0;
    padding: 2px 0 6px 8px; display: none; z-index: auto;
  }
  .nav-mega::before { display: none; }
  .nav-item-dd.open .nav-mega { display: block; }
  .nav-item-dd.open .nav-chevron { transform: rotate(180deg); }
  .nav-mega-grid { grid-template-columns: 1fr; gap: 0; }
  .nav-mega a.nav-mega-item { padding: 11px 6px; border-bottom: 1px solid var(--border); }
  .nav-mega .nav-mega-item.nmi-soon { padding: 11px 6px; }
  .nav-mega a.nav-mega-all { padding: 13px 6px; border-bottom: none; text-align: left; }
  /* jazykový přepínač v mobilním menu = celá šířka, rozbalení pod tlačítkem */
  .nav-menu .lang-switch { width: 100%; }
  .nav-menu .lang-btn { width: 100%; justify-content: space-between; }
  .nav-menu .lang-menu { position: static; box-shadow: none; border: none; min-width: 0; padding: 4px 0 4px 6px; max-height: none; }
  .nav-cta { flex-direction: column; align-items: stretch; gap: 10px; margin-top: 12px; }
  .nav-cta .btn { width: 100%; text-align: center; padding: 14px; font-size: 16px; }
  .nav-burger { display: flex; }
  .feature-grid, .how-grid, .pricing-grid { grid-template-columns: 1fr; }
  .price-card-highlight { transform: none; }
  .hero h1 { font-size: 34px; }
  .page-hero h1 { font-size: 28px; }
  .hero-sub { font-size: 16px; }
  .logos-row { gap: 24px; }
}

/* ========== AVATAR SOCIAL PROOF (sdílené) ========== */
.zap-av {
  display: inline-block;
  width: 36px; height: 36px;
  border-radius: 50%;
  overflow: hidden;
  border: 2.5px solid #fff;
  margin-left: -11px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.14);
  flex-shrink: 0;
  background: #eee;
}
.zap-av:first-child { margin-left: 0; }
.zap-av svg { display: block; width: 100%; height: 100%; }
.zap-av-ini { display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 13px; letter-spacing: 0.3px; }
.zap-av-photo { background-size: cover; background-position: 50% 30%; background-repeat: no-repeat; }
.zap-avatars { display: flex; align-items: center; }
.zap-proof-row { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.zap-proof-row.center { justify-content: center; }
/* V hero už hvězdy jsou v badge nahoře i v trust pod tím – tady jsou navíc */
.hero .zap-proof-stars { display: none; }
.hero .zap-proof-row { margin-bottom: 26px; }
.zap-proof-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1.5px; line-height: 1; margin-bottom: 3px; }
.zap-proof-text { font-size: 14px; color: var(--muted); font-weight: 600; line-height: 1.35; }
.zap-proof-text strong { color: var(--ink); font-weight: 800; }
/* varianta na tmavém pozadí */
.zap-proof-light .zap-proof-text { color: rgba(255,255,255,0.82); }
.zap-proof-light .zap-proof-text strong { color: #fff; }
