/* ===========================================================
   HVĚZDOMAT — prezentační web
   Design system + komponenty
   =========================================================== */

:root {
  /* Brand */
  --teal:      #189B9A;
  --teal-d:    #0E7B7A;
  --teal-dd:   #0a5e5d;
  --teal-l:    #38B6B5;
  --teal-tint: #E4F2F1;
  --navy:      #052327;
  --navy-2:    #0a3338;
  --gold:      #FFD500;
  --gold-d:    #E8BE00;

  /* Neutrals (warm) */
  --cream:   #FBF8EF;
  --cream-2: #F4EFE1;
  --paper:   #ffffff;
  --ink:     #052327;
  --muted:   #5E7271;
  --line:    rgba(5, 35, 39, 0.10);

  /* Type */
  --hand: "Annie Use Your Telescope", "Comic Sans MS", cursive;
  --sans: "Quicksand", system-ui, -apple-system, sans-serif;

  /* Layout */
  --maxw: 1180px;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow-sm: 0 2px 10px rgba(5,35,39,.05);
  --shadow:    0 12px 34px rgba(5,35,39,.07);
  --shadow-lg: 0 26px 60px rgba(5,35,39,.12);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 92px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 18px;
  overflow-x: clip;
}

h1, h2, h3 { margin: 0; line-height: 1.05; font-weight: 700; }

p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

/* ---- Typographic scale ---- */
.display {
  font-family: var(--hand);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: .5px;
}
.h-xl { font-size: clamp(3.2rem, 7.6vw, 6.4rem); }
.h-lg { font-size: clamp(2.4rem, 5vw, 3.8rem); }
.eyebrow {
  font-family: var(--sans);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: .8rem;
  color: var(--teal-d);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 22px; height: 2px; background: var(--gold-d); border-radius: 2px;
  flex: none;
}
/* Hero eyebrow: na jednom řádku */
.hero .eyebrow { white-space: nowrap; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--muted); font-weight: 500; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-weight: 700; font-size: 1.02rem;
  padding: 15px 26px; border-radius: 999px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary {
  background: var(--gold); color: var(--navy);
  box-shadow: 0 8px 22px rgba(255,213,0,.4);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(255,213,0,.5); }
.btn-dark {
  background: var(--navy); color: #fff;
}
.btn-dark:hover { transform: translateY(-2px); background: var(--navy-2); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 8px 22px rgba(24,155,154,.35); }
.btn-teal:hover { transform: translateY(-2px); background: var(--teal-d); }
.btn-ghost { background: transparent; color: var(--navy); border: 2px solid var(--line); }
.btn-ghost:hover { border-color: var(--teal); color: var(--teal-d); }
.btn-lg { padding: 18px 34px; font-size: 1.12rem; }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .3s ease, box-shadow .3s ease, padding .3s ease;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(251,248,239,.86);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--line);
  padding: 11px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark { height: 40px; width: auto; flex: none; }
.brand .name { font-family: var(--hand); font-size: 2rem; color: var(--navy); line-height: 1; padding-top: 6px; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a {
  font-weight: 600; font-size: .98rem; color: var(--navy); position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px;
  background: var(--teal); transition: right .25s ease; border-radius: 2px;
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle { display: none; }

/* =========================================================
   ROBOT (CSS mascot, animovaný displej)
   ========================================================= */
.robot {
  --rw: 300px;
  width: var(--rw);
  position: relative;
  filter: drop-shadow(0 22px 38px rgba(5,35,39,.16));
}
.robot .antenna {
  position: absolute; top: -13%; width: 12%; height: 22%;
  display: flex; flex-direction: column; align-items: center;
  transition: top .26s cubic-bezier(.34,1.56,.64,1), height .26s cubic-bezier(.34,1.56,.64,1);
}
.robot .antenna.l { left: 23%; }
.robot .antenna.r { right: 23%; }
.robot .antenna .ball {
  width: 100%; aspect-ratio: 1; border-radius: 50%; background: var(--teal);
}
.robot .antenna .stem {
  width: 75%; flex: 1; background: var(--teal);
  border-radius: 0 0 99px 99px; margin-top: -22%;
}
/* vysunuté — základna zůstává na hlavě (top+height = 9 % konstantně), stonek se teleskopicky prodlouží */
.robot.ant-up .antenna { top: -32%; height: 41%; }
.robot.ant-pump .antenna { animation: antPump .75s ease-in-out infinite; }
.robot.ant-alt .antenna.l { animation: antPump 1.2s ease-in-out infinite; }
.robot.ant-alt .antenna.r { animation: antPump 1.2s ease-in-out infinite; animation-delay: -.6s; }
@keyframes antPump {
  0%,100% { top: -13%; height: 22%; }
  50%     { top: -32%; height: 41%; }
}
.robot .head {
  position: relative; background: var(--teal);
  border-radius: 17% / 24%;
  padding: 11% 9%;
  aspect-ratio: 1.4 / 1;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 6%;
}
.robot .screen {
  background: var(--navy);
  border-radius: 16px;
  width: 100%; aspect-ratio: 2.15 / 1; flex: none;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 4px 18px rgba(0,0,0,.4);
  padding: 5% 6%;
  container-type: inline-size;
}
.robot .smile {
  width: 34%; height: auto; display: block;
}
.robot .smile path { stroke: var(--navy); stroke-width: 11; stroke-linecap: round; fill: none; }

/* =========================================================
   DISPLEJ ROBOTA — vrstvy se mění jako válec výherního automatu
   (valček se zatočí shora, rozmazání během rychlé fáze, pak zacvakne)
   ========================================================= */
.screen .layer {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center; gap: 12cqw;
  opacity: 0; transform: translateY(-120%);
  padding: 6%;
}
.screen .layer.on {
  opacity: 1; transform: translateY(0);
  animation: reelIn .6s cubic-bezier(.16,.7,.28,1.25);
}
.screen .layer.reel-out {
  animation: reelOut .4s ease-in forwards;
}
@keyframes reelIn {
  0%   { transform: translateY(-135%); filter: blur(4px); opacity: .35; }
  60%  { filter: blur(0); opacity: 1; }
  82%  { transform: translateY(9%); }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes reelOut {
  0%   { transform: translateY(0); opacity: 1; filter: blur(0); }
  100% { transform: translateY(135%); opacity: 0; filter: blur(4px); }
}

/* 1 · SMS — slot-machine válce */
.l-sms { gap: 7cqw; }
.sms-reel { height: clamp(30px, 30cqw, 90px); overflow: hidden; }
.sms-strip { display: flex; flex-direction: column; align-items: center; will-change: transform; }
.sms-strip span {
  height: clamp(30px, 30cqw, 90px); flex: none;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800; letter-spacing: .04em;
  font-size: clamp(21px, 23cqw, 70px); line-height: 1;
  color: var(--gold); text-shadow: 0 0 14px rgba(255,213,0,.4);
}
.sms-strip.spin-blur, .eye-strip.spin-blur { filter: blur(2px); }
.l-sms.on { animation: none; } /* slot spin nahrazuje reelIn */

/* 3·8 · oči z hvězd — slot-machine válce jako SMS */
.l-eyes { gap: 13cqw; }
.eye-reel { height: clamp(28px, 30cqw, 92px); overflow: hidden; }
.eye-strip { display: flex; flex-direction: column; align-items: center; will-change: transform; }
.eye-strip span {
  height: clamp(28px, 30cqw, 92px); flex: none;
  display: flex; align-items: center; justify-content: center;
  font-size: clamp(24px, 28cqw, 84px); line-height: 1;
  color: var(--gold);
}
.l-eyes.on { animation: none; } /* slot spin nahrazuje reelIn */

/* 5 · srdce — 3 slot-válce, ustálí se na jednom srdci uprostřed, pak dva údery */
.l-heart { gap: 3cqw; }
.heart-reel { height: clamp(34px, 32cqw, 96px); overflow: hidden; padding: 0 9cqw; box-sizing: content-box; }
.heart-strip { display: flex; flex-direction: column; align-items: center; will-change: transform; }
.heart-strip span {
  height: clamp(34px, 32cqw, 96px); flex: none;
  display: flex; align-items: center; justify-content: center;
}
.heart-strip .hs { width: clamp(24px, 22cqw, 70px); height: auto; }
.heart-strip .hs path { fill: #FF6B81; }
.heart-strip .hs.spark path { fill: var(--gold); }
.heart-strip.spin-blur { filter: blur(2px); }
.heart-strip .heart-beat.beat2 { animation: heartBeat .7s ease-in-out 2; transform-origin: center center; }
@keyframes heartBeat { 0%{ transform: scale(1); } 25%{ transform: scale(1.3); } 45%{ transform: scale(.96); } 65%{ transform: scale(1.1); } 100%{ transform: scale(1); } }
/* bambule na anténách pulzují do rytmu se srdcem */
.robot.beat .antenna .ball { animation: ballPulse .7s ease-in-out 2; transform-origin: center center; }
@keyframes ballPulse { 0%{ transform: scale(1); } 25%{ transform: scale(1.4); } 45%{ transform: scale(.92); } 65%{ transform: scale(1.15); } 100%{ transform: scale(1); } }

/* 6 · pět hvězd — slot-machine válce (blíž k sobě, větší) */
.screen .l-five { gap: 1.5cqw; }
.star-reel { height: clamp(34px, 28cqw, 84px); overflow: hidden; padding: 0 1.5cqw; box-sizing: content-box; }
.star-strip { display: flex; flex-direction: column; align-items: center; will-change: transform; }
.star-strip span {
  height: clamp(34px, 28cqw, 84px); flex: none;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: clamp(20px, 19cqw, 58px); line-height: 1;
}
.star-strip.spin-blur { filter: blur(2px); }

/* 7 · ozubená kolečka (2 oči zlaté + nos modrý) */
.l-gears .gear { position: absolute; height: auto; transform-origin: 50% 50%; }
.l-gears .g-eye { fill: var(--gold); }
.l-gears .g-nose { fill: #2D7DD2; }
.l-gears .g-eye { width: clamp(28px, 28cqw, 82px); top: 10%; }
.l-gears .g-eye.gl { left: 18%; }
.l-gears .g-eye.gr { right: 18%; }
.l-gears .g-nose { width: clamp(22px, 21cqw, 62px); bottom: 16%; left: 50%; margin-left: -10.5cqw; }
/* slot-nájezd zajišťuje reelIn celé vrstvy; po dojetí se kolečka houpou
   ve fázi s anténami: 1. půltakt (pravé tykadlo dolů / levé nahoru) =
   jeden směr, 2. půltakt (pravé nahoru / levé dolů) = opačný směr.
   Perioda 1,2 s = perioda antPump; ease-in-out → kolečka jdou nejrychleji,
   když se tykadla nejrychleji míjejí. */
.l-gears.spin .gear { animation: gearRock 1.2s ease-in-out infinite; }
.l-gears.spin .g-eye.gr, .l-gears.spin .g-nose { animation-name: gearRockRev; }
@keyframes gearRock    { 0% { transform: rotate(0); } 50% { transform: rotate(90deg); }  100% { transform: rotate(0); } }
@keyframes gearRockRev { 0% { transform: rotate(0); } 50% { transform: rotate(-90deg); } 100% { transform: rotate(0); } }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 170px 0 110px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(900px 520px at 82% 8%, var(--teal-tint), transparent 60%),
    radial-gradient(700px 500px at 8% 90%, #FBEFC4 0%, transparent 55%),
    var(--cream);
}
.hero-grid {
  display: grid; grid-template-columns: 1.6fr .8fr; gap: 48px; align-items: center;
}
.hero h1 { color: var(--navy); margin: 18px 0 22px; }
.hero h1 em { font-style: normal; color: var(--teal-d); position: relative; }
.hero .lead { max-width: 46ch; }
.hero-actions { display: flex; gap: 14px; margin: 32px 0 26px; flex-wrap: wrap; }
.hero-trust { display: flex; gap: 22px; flex-wrap: wrap; color: var(--muted); font-weight: 600; font-size: .92rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: 7px; }
.hero-trust span::before { content: "★"; color: var(--gold-d); }
.hero-visual { display: flex; justify-content: center; align-items: center; position: relative; }
.hero-visual .robot { --rw: min(300px, 74%); }
/* floating chips around robot */
/* =========================================================
   ZPRÁVY KOLEM ROBOTA (bubliny sc/náře)
   ========================================================= */
.r-msg {
  position: absolute; z-index: 3; background: var(--paper); color: var(--navy);
  font-weight: 700; font-size: clamp(.74rem, 1.4vw, 1rem); line-height: 1.3;
  padding: 11px 16px; border-radius: 16px 16px 16px 4px; box-shadow: var(--shadow);
  max-width: min(210px, 72%); opacity: 0; pointer-events: none; white-space: normal;
}
/* 2 · žádost vlevo */
.msg-ask { top: 6%; left: 1%; transform: translateY(8px) scale(.92);
  transition: opacity 1.4s ease, transform 1.6s cubic-bezier(.34,1.56,.64,1); }
.msg-ask.in { opacity: 1; transform: translateY(0) scale(1); }
/* 4 · poděkování vletí do robota */
.msg-thx1 { top: 28%; left: 4%; border-radius: 16px 16px 4px 16px; }
.msg-thx1.play-fly { animation: msgFlyIn 2.7s ease forwards; }
@keyframes msgFlyIn {
  0%   { opacity: 0; transform: translate(-200%, 12%) scale(1); }
  20%  { opacity: 1; transform: translate(-120%, 7%) scale(1); }
  72%  { opacity: 1; transform: translate(-14%, 0) scale(.9); }
  100% { opacity: 0; transform: translate(34%, 4%) scale(.26); }
}
/* 8 · poděkování vypadne z robota dolů */
.msg-thx2 { bottom: 4%; left: 50%; margin-left: -32%; width: 64%; text-align: center; border-radius: 16px; }
.msg-thx2.play-drop { animation: msgDrop 3.6s ease forwards; }
@keyframes msgDrop {
  0%   { opacity: 0; transform: translateY(-60%) scale(.4); }
  22%  { opacity: 1; transform: translateY(-10%) scale(1); }
  72%  { opacity: 1; transform: translateY(34%) scale(1); }
  100% { opacity: 0; transform: translateY(90%) scale(.92); }
}

/* logos / marquee strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.strip .wrap { display: flex; align-items: center; gap: 28px; padding-top: 18px; padding-bottom: 18px; }
.strip b { font-family: var(--hand); font-size: 1.5rem; color: var(--navy); flex: none; }
.strip .obor { font-weight: 600; color: var(--muted); flex: none; }
/* plynulý nekonečný pás oborů */
.strip-marquee { position: relative; flex: 1; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.strip-track { display: flex; align-items: center; gap: 28px; width: max-content;
  animation: stripScroll 34s linear infinite; }
.strip:hover .strip-track { animation-play-state: paused; }
@keyframes stripScroll { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; flex-wrap: wrap; width: auto; }
}

/* =========================================================
   SECTIONS — generic
   ========================================================= */
section { position: relative; }
.section { padding: 124px 0; }
.section-head { max-width: 680px; margin: 0 auto 76px; text-align: center; }
.section-head h2 { color: var(--navy); margin: 16px 0 18px; }
.section-head .lead { margin: 0 auto; }
.section.dark { background: var(--navy); color: #fff; }
.section.dark h2 { color: #fff; }
.section.dark .lead { color: rgba(255,255,255,.72); }
.section.dark .eyebrow { color: var(--gold); }
.section.dark .eyebrow::before,
.section.dark .eyebrow::after { background: var(--gold); }
.section.cream2 { background: var(--cream-2); }

/* =========================================================
   JAK TO FUNGUJE
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px; }
.step {
  background: var(--paper); border-radius: var(--radius); padding: 28px 24px 30px;
  box-shadow: var(--shadow-sm); position: relative; border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .num-badge {
  position: absolute; top: 22px; right: 22px; font-family: var(--hand);
  font-size: 2.4rem; color: var(--teal-tint); line-height: 1;
}
/* mini-roboti v krocích — stejná stavba jako hlavní robot, jen zmenšená přes --rw,
   takže všech pět má identickou velikost. Antény trvale vytažené (ant-up).
   Pohyby displeje jdou podle skillu robot-maskot. */
.stepbot { position: relative; width: var(--rw, 108px); filter: drop-shadow(0 10px 16px rgba(5,35,39,.14)); }
.step .stepbot { --rw: 108px; margin: 2px 0 20px; }
.pain-card .stepbot { --rw: 104px; margin: 2px 0 16px; transform-origin: 50% 82%; }
.stepbot.sad .head { background: var(--teal); }
.botface { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: 16cqw; padding: 7% 9%; }

/* slot-machine válce (panáčci / čísla / hvězdy) — vzor ze skillu */
.botface.reel { gap: 18cqw; }
.botface .s-reel { height: clamp(16px, 34cqw, 64px); overflow: hidden; }
.botface .s-strip { display: flex; flex-direction: column; align-items: center; will-change: transform; }
.botface .s-strip .rc {
  height: clamp(16px, 34cqw, 64px); flex: none; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-weight: 800; color: var(--gold);
  font-size: clamp(15px, 40cqw, 62px); text-shadow: 0 0 12px rgba(255,213,0,.4);
}
.botface .s-strip .rc svg { width: clamp(13px, 32cqw, 54px); height: auto; display: block; }
.botface .glyph { fill: var(--gold); }
.botface .glyph.out { fill: none; stroke: var(--gold); stroke-width: 1.7; stroke-linejoin: round; }

/* hvězdy menší než okno válce → nevykukuje další zespodu */
.botface.face-stars .s-reel { height: clamp(16px, 34cqw, 64px); }
.botface.face-stars .s-strip .rc { font-size: clamp(11px, 25cqw, 42px); }

/* telefonní číslo — řádek úzkých číslicových válců */
.botface.face-number { gap: 0; padding: 7% 5%; }
.botface.face-number .s-reel { height: clamp(12px, 18cqw, 30px); }
.botface.face-number .s-strip .rc { height: clamp(12px, 18cqw, 30px); font-size: clamp(7px, 13cqw, 22px); text-shadow: 0 0 7px rgba(255,213,0,.4); }
.botface.face-number .numgap { width: 4cqw; flex: none; }

/* kolečka — 2 zlatá + modré prostřední */
.face-gears { gap: 5cqw; }
.face-gears .gear { width: clamp(14px, 30cqw, 56px); height: auto; fill: var(--gold); transform-origin: 50% 50%; }
.face-gears .gear.nose { width: clamp(10px, 21cqw, 42px); fill: #2D7DD2; position: relative; top: 10cqw; }
/* Reaktor — mozek */
.face-reaktor .brain { width: clamp(20px, 44cqw, 80px); height: auto; fill: none; stroke: #9BCB3C; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transform-origin: 50% 55%; filter: drop-shadow(0 0 7px rgba(155,203,60,.5)); }
/* bolesti: dvě číslice (zapomínání) */
.botface.face-digits .s-strip .rc { font-size: clamp(13px, 30cqw, 52px); }
/* bolesti: otazníky (zapomínání) */
.botface.face-forget .s-strip .rc { font-size: clamp(15px, 36cqw, 58px); }
/* bolesti: zkřížené oči („to vzdává") */
.botface.face-complex { gap: 20cqw; }
.botface.face-complex .xeye {
  font-family: var(--sans); font-weight: 800; color: var(--gold); line-height: 1;
  font-size: clamp(15px, 38cqw, 60px); text-shadow: 0 0 12px rgba(255,213,0,.4);
  transform-origin: 50% 50%; display: inline-block;
}

@media (prefers-reduced-motion: no-preference) {
  /* válce se točí (s rozmazáním) — slot-machine, jedno protočení ~2 s */
  .step.s-people:hover  .botface .s-strip,
  .step.s-number:hover  .botface .s-strip,
  .step.s-stars:hover   .botface .s-strip { animation: reelSpin .6s linear 3; }
  /* kolečka se houpou jako u hlavního robota (sousední opačně), 2 takty = 2 s */
  .step.s-gears:hover   .botface .gl   { animation: gearRock 1s ease-in-out 2; }
  .step.s-gears:hover   .botface .gr,
  .step.s-gears:hover   .botface .nose { animation: gearRockRev 1s ease-in-out 2; }
  /* Reaktor tepe — mozek i bambule na anténách, ~2 s */
  .step.s-reaktor:hover .botface .brain         { animation: mBeat .5s ease-in-out 4; }
  .step.s-reaktor:hover .stepbot .antenna .ball { animation: botBeat .5s ease-in-out 4; }
  /* === bolesti — sdílené animace s kroky, jedno protočení ~2 s === */
  .pain-card.p-forget:hover .botface .s-strip,
  .pain-card.p-people:hover .botface .s-strip { animation: reelSpin .6s linear 3; }
  .pain-card.p-gears:hover  .botface .gl   { animation: gearRock 1s ease-in-out 2; }
  .pain-card.p-gears:hover  .botface .gr,
  .pain-card.p-gears:hover  .botface .nose { animation: gearRockRev 1s ease-in-out 2; }
  /* nová: zkřížené oči se protočí (rotace na hover jako u kroků) */
  .pain-card.p-complex:hover .botface .xeye { animation: xSpin 2s cubic-bezier(.4,.1,.3,1); }
}
@keyframes xSpin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes reelSpin { 0% { transform: translateY(0); filter: blur(.5px); } 100% { transform: translateY(var(--reel-end, -90%)); filter: blur(.5px); } }

/* dolarový robot v sekci agentur — vstup: zastrčí/vystrčí anténu, pak protočí dolary */
@media (prefers-reduced-motion: no-preference) {
  .ag-bot .antenna.r.tuck { animation: antTuck .9s cubic-bezier(.34,1.5,.6,1) 1; }
  .ag-bot.spin .botface .s-reel:nth-child(1) .s-strip { animation: reelSpin .55s linear 3; }
  .ag-bot.spin .botface .s-reel:nth-child(2) .s-strip { animation: reelSpin .55s linear 3; animation-delay: .2s; }
  .ag-bot:hover .botface .s-strip { animation: reelSpin .55s linear 3; }
}
@keyframes antTuck {
  0%   { top: -32%; height: 41%; }
  35%  { top: -13%; height: 22%; }
  70%  { top: -37%; height: 46%; }
  100% { top: -32%; height: 41%; }
}
@keyframes mBeat { 0%,100% { transform: scale(1); } 30% { transform: scale(1.16); } 55% { transform: scale(1); } }
@keyframes botBeat { 0%,100% { transform: scale(1); } 30% { transform: scale(1.32); } 55% { transform: scale(1); } }
.step h3 { font-size: 1.22rem; color: var(--navy); margin-bottom: 8px; }
.step p { color: var(--muted); font-size: .98rem; }

/* DEMO — phone + robot */
.demo { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; margin-top: 26px; }
.demo-copy h3 { font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--navy); margin-bottom: 16px; }
.demo-copy .demo-line { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-top: 1px solid var(--line); opacity: .4; transition: opacity .3s ease; }
.demo-copy .demo-line.active { opacity: 1; }
.demo-copy .demo-line .ic { width: 38px; height: 38px; flex: none; border-radius: 11px; background: var(--teal-tint); color: var(--teal-d); display: grid; place-items: center; font-weight: 800; }
.demo-copy .demo-line.active .ic { background: var(--gold); color: var(--navy); }
.demo-copy .demo-line strong { color: var(--navy); display: block; }
.demo-copy .demo-line span { color: var(--muted); font-size: .94rem; }
.demo-replay { margin-top: 22px; }

.demo-stage { display: flex; justify-content: center; align-items: flex-end; gap: 24px; }
.phone {
  width: 268px; border-radius: 44px; padding: 11px; position: relative; flex: none;
}
.phone.dev-black { background: linear-gradient(155deg, #34343a, #0c0c10); box-shadow: 0 32px 60px -22px rgba(0,0,0,.55), inset 0 0 0 2px rgba(255,255,255,.05); }
.phone.dev-blue { background: linear-gradient(155deg, #4A97E0, #2D7DD2); box-shadow: 0 32px 60px -22px rgba(28,90,170,.5), inset 0 0 0 2px rgba(255,255,255,.14); }
.ph-side { position: absolute; border-radius: 3px; }
.dev-black .ph-side { background: #050507; }
.dev-blue .ph-side { background: rgba(255,255,255,.32); }
.ph-power { right: -2px; top: 118px; width: 3px; height: 52px; }
.ph-vu { left: -2px; top: 92px; width: 3px; height: 32px; }
.ph-vd { left: -2px; top: 132px; width: 3px; height: 32px; }
.phone-screen { background: #EDE9DF; border-radius: 34px; height: 466px; overflow: hidden; display: flex; flex-direction: column; position: relative; }
.phone-status { display: flex; justify-content: space-between; align-items: center; padding: 12px 26px 4px; color: var(--navy); font-size: .76rem; font-weight: 800; letter-spacing: .01em; height: 26px; box-sizing: content-box; }
.st-time { font-variant-numeric: tabular-nums; }
.st-ic { display: flex; align-items: center; gap: 6px; }
.st-ic i { display: inline-block; color: var(--navy); }
.si-net { width: 17px; height: 11px; background:
  linear-gradient(currentColor,currentColor) 0 100%/3px 4px no-repeat,
  linear-gradient(currentColor,currentColor) 4.6px 100%/3px 6.5px no-repeat,
  linear-gradient(currentColor,currentColor) 9.2px 100%/3px 9px no-repeat,
  linear-gradient(currentColor,currentColor) 13.8px 100%/3px 11px no-repeat; }
.si-wifi { width: 15px; height: 12px; background: currentColor; -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z'/%3E%3C/svg%3E") center/contain no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M1 9l2 2c4.97-4.97 13.03-4.97 18 0l2-2C16.93 2.93 7.08 2.93 1 9zm8 8l3 3 3-3c-1.65-1.66-4.34-1.66-6 0zm-4-4l2 2c2.76-2.76 7.24-2.76 10 0l2-2C15.14 9.14 8.87 9.14 5 13z'/%3E%3C/svg%3E") center/contain no-repeat; }
.si-bat { width: 23px; height: 12px; border: 1.6px solid currentColor; border-radius: 3.5px; position: relative; opacity: .9; }
.si-bat::before { content: ""; position: absolute; left: 1.6px; top: 1.6px; bottom: 1.6px; width: 76%; background: currentColor; border-radius: 1.5px; }
.si-bat::after { content: ""; position: absolute; right: -3.6px; top: 3.2px; bottom: 3.2px; width: 2.2px; background: currentColor; border-radius: 0 2px 2px 0; }
.phone-island { position: absolute; top: 11px; left: 50%; transform: translateX(-50%); width: 44px; height: 13px; background: #0a0a0d; border-radius: 99px; z-index: 4; }
.phone-home { height: 5px; width: 36%; background: rgba(0,0,0,.32); border-radius: 99px; margin: 7px auto 11px; flex: none; }
.phone-top { background: #fff; padding: 13px 16px 12px; display:flex; align-items:center; gap:10px; border-bottom: 1px solid var(--line); }
.phone-top .av { width: 38px; height: 38px; border-radius: 50%; overflow: hidden; flex: none; background: none; }
.phone-top .av .face { width: 100%; height: 100%; display: block; }
.phone-top .who { font-weight: 700; font-size: .92rem; color: var(--navy); min-width: 0; }
.phone-top .who small { display:block; font-weight:500; color: var(--muted); font-size:.74rem; }
.phone-body { flex: 1; padding: 16px 14px; display: flex; flex-direction: column; gap: 12px; overflow-y: auto; }
.bubble {
  max-width: 84%; padding: 11px 14px; border-radius: 16px; font-size: .9rem; line-height: 1.45;
  opacity: 0; transform: translateY(12px); transition: opacity .4s ease, transform .4s ease; font-weight: 500;
}
.bubble.show { opacity: 1; transform: none; }
.bubble.them { background: #fff; color: var(--navy); align-self: flex-start; border-bottom-left-radius: 5px; box-shadow: var(--shadow-sm); }
.bubble.me { background: var(--teal); color: #fff; align-self: flex-end; border-bottom-right-radius: 5px; }
.bubble .stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.bubble a { color: var(--gold); font-weight: 700; }

/* === Rozlišení mluvčích v ukázce === */
.phone-top { position: relative; }
.role-tag { margin-left: auto; flex: none; font-size: .64rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; padding: 3px 9px; border-radius: 99px; white-space: nowrap; }
.rt-craft  { background: color-mix(in srgb, var(--navy) 14%, #fff); color: var(--navy); }
.rt-star   { background: color-mix(in srgb, var(--teal) 16%, #fff); color: var(--teal-d); }
.rt-client { background: color-mix(in srgb, var(--gold) 22%, #fff); color: #8a6a00; }
/* barva bublin podle role telefonu */
.role-craft  .bubble.me { background: var(--navy); }
.role-star   .bubble.them { border-left: 3px solid var(--teal); }
.role-client .fp-review .stars.big { color: var(--gold); }
/* mini-legenda v levém sloupci */
.flow-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 22px; }
.flow-legend span { display: inline-flex; align-items: center; gap: 7px; font-size: .82rem; font-weight: 600; color: var(--navy); }
.flow-legend i { width: 13px; height: 13px; border-radius: 50%; flex: none; }
.lg-craft  { background: var(--navy); }
.lg-star   { background: var(--teal); }
.lg-client { background: var(--gold); }

/* === Živá ukázka — flip stage (7 scén) === */
.flow-caption { font-family: var(--hand); font-size: clamp(1.5rem, 2.7vw, 2.1rem); color: var(--teal-d); line-height: 1.15; margin-top: 8px; min-height: 2.3em; }
.flow-dots { display: flex; gap: 9px; margin-top: 20px; }
.flow-dot { width: 11px; height: 11px; padding: 0; border: none; cursor: pointer; border-radius: 50%; background: var(--line); transition: background .3s ease, transform .3s ease; }
.flow-dot:hover { background: var(--teal-l); transform: scale(1.2); }
.flow-dot.on { background: var(--gold); transform: scale(1.3); }

.flow { perspective: 1500px; display: flex; align-items: center; justify-content: center; min-height: 520px; width: 100%; }
.flow-card { display: flex; align-items: center; justify-content: center; position: relative; transform-style: preserve-3d; will-change: transform, opacity; }
.flow-front { display: flex; align-items: center; justify-content: center; backface-visibility: hidden; -webkit-backface-visibility: hidden; }
.flow-rear { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; backface-visibility: hidden; -webkit-backface-visibility: hidden; transform: rotateY(180deg); opacity: 0; }
.flow-card.flipping .flow-rear { opacity: 1; }
.flow-card.s-out { animation: flowOut .34s cubic-bezier(.55,0,.85,.3) forwards; }
.flow-card.s-in  { animation: flowIn .56s cubic-bezier(.18,.74,.3,1.05) forwards; }
.flow-card.flipExit { animation: flipExitK .38s cubic-bezier(.45,.05,.45,1) forwards; }
.flow-card.flipEnter { animation: flipEnterK .44s cubic-bezier(.3,.1,.3,1) forwards; }
@keyframes flipExitK { from { transform: rotateY(0); } to { transform: rotateY(180deg); } }
@keyframes flipEnterK { from { transform: rotateY(180deg); } to { transform: rotateY(360deg); } }
@keyframes flowOut {
  to { transform: translateX(calc(var(--dir, 1) * -48px)) rotateY(calc(var(--dir, 1) * -70deg)) scale(.8); opacity: 0; filter: blur(3px); }
}
@keyframes flowIn {
  0%   { transform: translateX(calc(var(--dir, 1) * 48px)) rotateY(calc(var(--dir, 1) * 70deg)) scale(.8); opacity: 0; filter: blur(3px); }
  60%  { filter: blur(0); opacity: 1; }
  100% { transform: none; opacity: 1; filter: blur(0); }
}
@media (prefers-reduced-motion: reduce) { .flow-card.s-out, .flow-card.s-in, .flow-card.flipExit, .flow-card.flipEnter { animation: none; } }

/* záda telefonu (vidět při flipu) — s čočkou objektivu */
.phone-back { width: 268px; height: 488px; border-radius: 44px; position: relative; box-shadow: 0 32px 60px -22px rgba(0,0,0,.45), inset 0 0 0 2px rgba(255,255,255,.06); }
.phone-back.dev-blue { background: linear-gradient(155deg, #4A97E0, #2D7DD2); }
.phone-back.dev-black { background: linear-gradient(155deg, #34343a, #0c0c10); }
.phone-back .pb-cam { position: absolute; top: 22px; left: 22px; width: 64px; height: 64px; border-radius: 19px; background: rgba(0,0,0,.26); box-shadow: inset 0 1px 2px rgba(255,255,255,.12); }
.phone-back .pb-lens { position: absolute; border-radius: 50%; background: radial-gradient(circle at 36% 32%, #7d8b96 0%, #313c44 44%, #0a0f14 78%); box-shadow: inset 0 0 0 2px rgba(255,255,255,.16), 0 0 0 2px rgba(0,0,0,.32); }
.phone-back .pb-lens.a { top: 9px; left: 9px; width: 27px; height: 27px; }
.phone-back .pb-lens.b { bottom: 9px; right: 9px; width: 22px; height: 22px; }
.phone-back .pb-flash { position: absolute; top: 14px; right: 13px; width: 9px; height: 9px; border-radius: 50%; background: rgba(255,244,206,.85); box-shadow: 0 0 6px rgba(255,240,190,.5); }
.phone-back .pb-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 48px; height: 48px; border-radius: 50%; background: rgba(255,255,255,.14); box-shadow: inset 0 0 0 2px rgba(255,255,255,.22); }
.phone-back .pb-logo::after { content: "\2605"; position: absolute; inset: 0; display: grid; place-items: center; color: rgba(255,255,255,.7); font-size: 1.5rem; }

/* swipe obrazu na notebooku (6 → 7) */
.laptop-body.swipe-out { animation: swOut .28s ease forwards; }
.laptop-body.swipe-in { animation: swIn .36s cubic-bezier(.2,.7,.3,1) forwards; }
@keyframes swOut { to { transform: translateX(-30px); opacity: 0; } }
@keyframes swIn { from { transform: translateX(34px); opacity: 0; } to { transform: none; opacity: 1; } }

.flow-phone { width: 270px; }
.flow-phone .phone-screen { height: 440px; }
.fp-label { font-size: .72rem; color: var(--muted); text-transform: uppercase; letter-spacing: .09em; margin: 4px 2px 2px; }
.fp-num { font-size: 1.3rem; font-weight: 800; letter-spacing: .06em; }
.fp-sent { margin-top: 12px; color: var(--teal-d); font-weight: 700; font-size: .86rem; }
.fp-review { margin: auto 0; text-align: center; }
.stars.big { font-size: 1.9rem; letter-spacing: 4px; color: var(--gold); }
.fp-rtext { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin: 12px 0 4px; }
.fp-rname { color: var(--muted); font-size: .85rem; }

/* notebook */
.flow-robot { --rw: 210px; }
.laptop { width: 440px; flex: none; perspective: 1300px; }
.laptop-lid { background: linear-gradient(#2a2622, #15120f); border-radius: 16px 16px 6px 6px; padding: 13px 13px 16px; box-shadow: var(--shadow-lg); position: relative; transform-origin: bottom center; }
@media (prefers-reduced-motion: no-preference) {
  .laptop-lid { animation: lidOpen .72s cubic-bezier(.33,.72,.28,1) .18s both; }
}
@keyframes lidOpen {
  0%   { transform: rotateX(-86deg); opacity: .35; }
  55%  { opacity: 1; }
  100% { transform: rotateX(0); opacity: 1; }
}
.laptop-lid::before { content: ""; position: absolute; top: 5px; left: 50%; transform: translateX(-50%); width: 6px; height: 6px; border-radius: 50%; background: #4a443d; box-shadow: inset 0 0 0 2px #15120f; }
.laptop-screen { background: #fff; border-radius: 4px; height: 262px; overflow: hidden; display: flex; flex-direction: column; }
.laptop-bar { display: flex; align-items: center; gap: 6px; padding: 9px 12px; border-bottom: 1px solid var(--line); background: #f7f5ee; }
.laptop-bar .dot { width: 9px; height: 9px; border-radius: 50%; background: #cfcabd; }
.laptop-bar .url { margin-left: 8px; font-size: .7rem; color: var(--muted); background: #fff; border: 1px solid var(--line); border-radius: 6px; padding: 3px 10px; }
.laptop-body { padding: 16px 18px; flex: 1; overflow: hidden; }
.laptop-base { width: 520px; height: 15px; margin-left: -40px; background: linear-gradient(#d8d3c5, #b3ab98); border-radius: 0 0 14px 14px; box-shadow: var(--shadow); position: relative; }
.laptop-base::before { content: ""; position: absolute; top: 0; left: 50%; transform: translateX(-50%); width: 78px; height: 5px; background: #9c947f; border-radius: 0 0 7px 7px; }

.g-head { border-bottom: 1px solid var(--line); padding-bottom: 10px; margin-bottom: 12px; }
.g-name { font-weight: 800; color: var(--navy); font-size: 1.05rem; }
.g-rate { font-size: .85rem; color: var(--muted); margin-top: 3px; }
.g-rate b { color: var(--navy); font-size: 1rem; }
.g-review { display: flex; gap: 11px; }
.g-av { width: 34px; height: 34px; border-radius: 50%; overflow: hidden; display: grid; place-items: center; flex: none; }
.g-av .face { width: 100%; height: 100%; display: block; }
.g-rvname { font-weight: 700; color: var(--navy); font-size: .9rem; }
.g-rvtext { color: var(--navy); font-size: .9rem; margin: 4px 0 9px; }
.g-reply { background: #f1f6f3; border-left: 3px solid var(--teal); border-radius: 7px; padding: 9px 11px; font-size: .82rem; color: var(--navy); line-height: 1.4; }
.g-reply b { color: var(--teal-d); }

.g-stats { text-align: center; }
.st-big { font-size: 2.5rem; font-weight: 800; color: var(--navy); line-height: 1; }
.st-big .stars { color: var(--gold); }
.st-sub { color: var(--muted); font-size: .82rem; margin-bottom: 14px; }
.st-bars { display: flex; align-items: flex-end; justify-content: center; gap: 9px; height: 86px; margin: 0 auto 12px; }
.st-bars span { width: 18px; background: linear-gradient(var(--teal), var(--teal-l)); border-radius: 5px 5px 0 0; display: block; }
.st-row { display: flex; justify-content: space-between; font-size: .85rem; color: var(--muted); padding: 0 4px; }
.st-up { color: var(--teal-d); font-weight: 700; }

/* robot ve scéně se točí + hýbe anténami pořád */
@media (prefers-reduced-motion: no-preference) {
  .flow-robot .botface .gl   { animation: gearRock 1.2s ease-in-out infinite; }
  .flow-robot .botface .gr,
  .flow-robot .botface .nose { animation: gearRockRev 1.2s ease-in-out infinite; }
  .flow-robot .antenna.l { animation: antPump 1.2s ease-in-out infinite; }
  .flow-robot .antenna.r { animation: antPump 1.2s ease-in-out infinite; animation-delay: -.6s; }
}

/* =========================================================
   IKONY — vlastní sada (oblá linka)
   ========================================================= */
.ico {
  fill: none;
  stroke: var(--teal-d);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}
/* inline varianty (v textu / tlačítku / cedulce) */
.chip-ico, .tag-ico, .badge-ico, .heart-ico, .btn-ico {
  display: inline-block; vertical-align: -0.22em; flex: none;
}
.chip-ico { width: 19px; height: 19px; stroke: var(--teal); }
.btn-ico  { width: 19px; height: 19px; stroke: currentColor; }
.tag-ico  { width: 17px; height: 17px; stroke: var(--gold); }
.badge-ico { width: 16px; height: 16px; stroke: #fff; stroke-width: 2; }
.heart-ico { width: 15px; height: 15px; stroke: var(--gold); fill: var(--gold); stroke-width: 1.4; }

/* =========================================================
   PRO KOHO — obory (vzdušná, editorialní mřížka)
   ========================================================= */
.obory { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px 40px; }
.obor-card {
  display: flex; flex-direction: column; gap: 12px; align-items: flex-start;
  padding: 26px 4px 22px; position: relative;
  border-top: 1.5px solid var(--line);
  transition: border-color .25s ease;
}
.obor-card::after {
  content: ""; position: absolute; top: -1.5px; left: 0; width: 0; height: 1.5px;
  background: var(--teal); transition: width .35s cubic-bezier(.2,.7,.3,1);
}
.obor-card:hover::after { width: 38px; }
.obor-card .ico { width: 34px; height: 34px; }
.obor-card:hover .ico { stroke: var(--teal); }
.obor-card h4 { font-size: 1.08rem; color: var(--navy); margin: 0; }
.obor-card p { font-size: .9rem; color: var(--muted); margin: 0; }

/* =========================================================
   REAKTOR
   ========================================================= */
.reaktor { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.reaktor-visual { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.reaktor-visual .reaktor-bot { --rw: 300px; margin: 0 auto; }
@media (prefers-reduced-motion: no-preference) {
  .reaktor-visual .botface .brain { animation: brainPulse 1.7s ease-in-out infinite; }
}
@keyframes brainPulse {
  0%, 100% { transform: scale(1); }
  14% { transform: scale(1.14); }
  28% { transform: scale(1); }
  42% { transform: scale(1.14); }
  58% { transform: scale(1); }
}
.reaktor-copy ul { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.reaktor-copy li { display: flex; gap: 13px; align-items: flex-start; }
.reaktor-copy li .tick { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--gold); color: var(--navy); display: grid; place-items: center; font-weight: 800; font-size: .9rem; margin-top: 2px; }
.reaktor-copy li b { color: #fff; }
.reaktor-copy li .tick-bad { background: #E5484D; color: #fff; }
.reaktor-copy li span { color: rgba(255,255,255,.7); }

/* review demo card */
.rev-card { background: var(--navy-2); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); padding: 22px; margin-top: 30px; }
.rev-row { display: flex; gap: 12px; align-items: flex-start; }
.rev-av { width: 40px; height: 40px; border-radius: 50%; background: var(--teal); flex: none; display:grid; place-items:center; font-weight:800; }
.rev-name { font-weight: 700; color:#fff; }
.rev-stars { color: var(--gold); letter-spacing: 2px; }
.rev-text { color: rgba(255,255,255,.78); font-size: .94rem; margin-top: 4px; }
.rev-reply { margin: 16px 0 0 52px; background: rgba(24,155,154,.16); border-left: 3px solid var(--teal-l); border-radius: 0 14px 14px 0; padding: 14px 16px; }
.rev-reply .tag { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.5px; color: var(--gold); font-weight: 700; display:flex; align-items:center; gap:7px; }
.rev-reply p { color: rgba(255,255,255,.85); font-size: .92rem; margin-top: 6px; }
.rev-reply .typing-dots i { display:inline-block; width:6px; height:6px; border-radius:50%; background: var(--teal-l); margin-right:3px; animation: bounce 1.2s infinite; }

/* =========================================================
   CENÍK
   ========================================================= */
.bill-toggle { display: inline-flex; align-items: center; gap: 14px; background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 6px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.bill-toggle button { padding: 9px 20px; border-radius: 999px; font-weight: 700; color: var(--muted); transition: all .2s ease; font-size: .95rem; }
.bill-toggle button.active { background: var(--navy); color: #fff; }
.bill-toggle .save { color: var(--teal-d); font-size: .78rem; font-weight: 800; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column; position: relative;
  transition: transform .2s ease, box-shadow .2s ease;
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.plan.featured { border: 2px solid var(--teal); box-shadow: var(--shadow); transform: scale(1.02); }
.plan.featured:hover { transform: translateY(-6px) scale(1.02); }
.plan .tag-pop { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gold); color: var(--navy); font-weight: 800; font-size: .76rem; padding: 6px 16px; border-radius: 999px; letter-spacing: .5px; box-shadow: 0 6px 16px rgba(255,213,0,.45); }
.plan .pname { font-family: var(--hand); font-size: 2rem; color: var(--navy); }
.plan .pdesc { color: var(--muted); font-size: .92rem; min-height: 42px; }
.plan .price { margin: 16px 0 4px; display: flex; align-items: baseline; gap: 6px; }
.plan .price .amt { font-size: 3rem; font-weight: 700; color: var(--navy); line-height: 1; }
.plan .price .per { color: var(--muted); font-weight: 600; font-size: .95rem; }
.plan .price-note { color: var(--teal-d); font-size: .82rem; font-weight: 700; min-height: 20px; }
.plan ul { list-style: none; padding: 0; margin: 22px 0 26px; display: grid; gap: 11px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: .94rem; color: var(--navy); }
.plan li::before { content: "★"; color: var(--gold-d); flex: none; }
.plan li.off { color: var(--muted); opacity: .65; }
.plan li.off::before { content: "·"; color: var(--muted); }
.plan .btn { width: 100%; justify-content: center; margin-top: auto; }
.cenik-note { text-align: center; color: var(--muted); font-size: .9rem; margin-top: 28px; }

/* =========================================================
   PRO AGENTURY
   ========================================================= */
.agentury { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.agentury-visual { display: flex; flex-direction: column; align-items: center; gap: 16px; }
.agentury-visual .ag-bot { --rw: 150px; margin: 0 auto; }
.botface.face-dollars .s-strip .rc { font-size: clamp(13px, 30cqw, 50px); color: var(--gold); text-shadow: 0 0 12px rgba(255,213,0,.4); }
.agentury-visual img { width: min(330px, 78%); filter: drop-shadow(0 24px 40px rgba(5,35,39,.18)); }
.ag-feats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 36px; margin: 32px 0; }
.ag-feat { padding: 22px 4px; border-top: 1.5px solid var(--line); }
.ag-feat .ico { width: 30px; height: 30px; margin-bottom: 12px; }
.ag-feat h4 { color: var(--navy); margin: 0 0 4px; font-size: 1.05rem; }
.ag-feat p { color: var(--muted); font-size: .9rem; margin: 0; }
.agentury-copy h2 { margin-bottom: 16px; }

/* hvězda zpět nahoru — jen desktop, vrchní cíp zdvojený */
.to-top { position: fixed; right: 26px; bottom: 26px; z-index: 60; width: 58px; height: 58px; padding: 0; border: none; background: none; cursor: pointer; filter: drop-shadow(0 6px 14px rgba(180,140,0,.42)); transition: transform .2s cubic-bezier(.34,1.4,.6,1); }
.to-top svg { width: 100%; height: 100%; display: block; fill: var(--gold); }
.to-top:hover { transform: translateY(-3px) scale(1.07); }
.to-top:active { transform: scale(.95); }
@media (max-width: 1024px) { .to-top { display: none; } }

/* kalkulačka výdělku (levý sloupec) */
.ag-calc { background: #fff; border: 1.5px solid var(--line); border-radius: 20px; padding: 24px 24px 20px; box-shadow: 0 20px 44px -24px rgba(5,35,39,.22); width: 100%; max-width: 360px; margin: 0 auto; }
.ag-calc-head { margin-bottom: 20px; }
.ag-calc-head h3 { color: var(--navy); font-size: 1.35rem; margin: 6px 0 0; }
.ag-field { margin-bottom: 17px; }
.ag-flabel { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 8px; }
.ag-flabel label { color: var(--navy); font-weight: 700; font-size: .92rem; }
.ag-flabel label small { color: var(--muted); font-weight: 500; font-size: .76rem; display: block; }
.ag-flabel output { color: var(--teal-d); font-weight: 800; font-size: .9rem; white-space: nowrap; }
.ag-field input[type=range] { width: 100%; accent-color: var(--teal); cursor: pointer; }
.ag-field input[type=number] { width: 100%; padding: 11px 14px; border: 1.5px solid var(--line); border-radius: 12px; font: inherit; font-weight: 700; color: var(--navy); background: #fff; }
.ag-field input[type=number]:focus { outline: none; border-color: var(--teal); }
.ag-calc-out { margin-top: 20px; border-top: 1.5px dashed var(--line); padding-top: 16px; display: grid; gap: 9px; }
.agc-row { display: flex; justify-content: space-between; align-items: baseline; color: var(--muted); font-size: .92rem; }
.agc-row b { color: var(--navy); font-weight: 800; }
.agc-row.profit span { color: var(--navy); font-weight: 700; }
.agc-row.profit b { color: var(--teal-d); font-size: 1.55rem; }
.agc-row b.neg { color: #E5484D; }
.agc-row.sub { font-size: .82rem; }
.ag-reassure { background: var(--teal-tint); border-radius: 14px; padding: 14px 16px; color: var(--navy); font-size: .95rem; margin: 4px 0 22px; }
.ag-reassure b { color: var(--teal-d); }
.agentury-copy .btn-lg { display: block; width: max-content; margin: 0 auto; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; transition: box-shadow .2s ease; }
.faq-item.open { box-shadow: var(--shadow); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 24px; font-weight: 700; font-size: 1.08rem; color: var(--navy); }
.faq-q .pm { width: 28px; height: 28px; flex: none; border-radius: 50%; background: var(--teal-tint); color: var(--teal-d); display: grid; place-items: center; font-size: 1.3rem; transition: transform .3s ease, background .2s ease; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--gold); color: var(--navy); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); }

/* =========================================================
   KONTAKT / PILOT
   ========================================================= */
.pilot { background: linear-gradient(160deg, var(--teal) 0%, var(--teal-d) 100%); border-radius: var(--radius-lg); padding: 56px; color: #fff; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; }
.pilot::after { content:""; position:absolute; right:-80px; top:-80px; width:300px; height:300px; border-radius:50%; background: rgba(255,255,255,.07); }
.pilot h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); }
.pilot .lead { color: rgba(255,255,255,.85); margin-top: 14px; }
.pilot-badges { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 22px; }
.pilot-badges span { background: rgba(255,255,255,.16); padding: 8px 15px; border-radius: 999px; font-weight: 600; font-size: .85rem; display: inline-flex; align-items: center; gap: 8px; }
.pform { background: var(--paper); border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-lg); position: relative; z-index: 1; }
.pform .field { margin-bottom: 14px; }
.pform label { display: block; font-weight: 700; color: var(--navy); font-size: .86rem; margin-bottom: 6px; }
.pform input, .pform select {
  width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line);
  font-family: inherit; font-size: 1rem; font-weight: 500; color: var(--navy); background: var(--cream); transition: border-color .2s ease;
}
.pform input:focus, .pform select:focus { outline: none; border-color: var(--teal); background: #fff; }
.pform input.err { border-color: #e0564a; }
.pform .err-msg { color: #e0564a; font-size: .78rem; margin-top: 4px; display: none; font-weight: 600; }
.pform input.err + .err-msg { display: block; }
.pform .row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pform .btn { width: 100%; justify-content: center; margin-top: 8px; }
.pform .fine { color: var(--muted); font-size: .76rem; text-align: center; margin-top: 12px; }
.pform-success { text-align: center; padding: 20px 10px; }
.pform-success img { width: 120px; margin: 0 auto 16px; }
.pform-success h3 { color: var(--navy); font-size: 1.5rem; margin-bottom: 8px; }
.pform-success p { color: var(--muted); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { background: var(--navy); color: rgba(255,255,255,.7); padding: 64px 0 32px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand .name { color: #fff; }
.footer p.f-tag { margin-top: 14px; max-width: 30ch; font-size: .92rem; }
.footer h5 { color: #fff; font-size: .82rem; text-transform: uppercase; letter-spacing: 1.5px; margin: 0 0 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer ul a { font-size: .94rem; transition: color .2s ease; }
.footer ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; flex-wrap: wrap; font-size: .86rem; }
.footer-bottom .doms { display: flex; gap: 16px; }
.footer-bottom .doms b { color: var(--teal-l); font-weight: 700; }
.footer .f-contact { display: flex; flex-direction: column; gap: 4px; margin-top: 14px; }
.footer .f-contact a { color: var(--teal-l); font-weight: 700; font-size: .94rem; }
.footer .f-contact a:hover { color: var(--gold); }
.btn-login .btn-ico { stroke: currentColor; }

/* =========================================================
   BOLESTI — proč to drhne
   ========================================================= */
.bolesti-sec { padding-top: 96px; padding-bottom: 36px; }
.pains { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.pain-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px 26px; text-align: left;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.pain-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.pain-card .pain-mascot { width: 74px; height: auto; margin-bottom: 14px; }
.pain-card h3 { font-size: 1.16rem; color: var(--navy); margin-bottom: 8px; }
.pain-card p { color: var(--muted); font-size: .95rem; }
.bolesti-punch {
  text-align: center; font-family: var(--hand); font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--teal-d); margin-top: 52px; line-height: 1.1;
}

/* =========================================================
   JAK NEZVEDAT — varování před fake recenzemi
   ========================================================= */
.nezvedat-sec { background: #FBF1EC; }
.nezvedat { display: grid; grid-template-columns: .85fr 1.15fr; gap: 56px; align-items: center; }
.nezvedat-visual { display: flex; justify-content: center; position: relative; }
.nezvedat-visual img { width: min(300px, 74%); filter: drop-shadow(0 24px 40px rgba(180,60,40,.22)); }
.nezvedat-visual .ban-badge {
  position: absolute; top: 8%; right: 6%; background: #D9573F; color: #fff;
  font-weight: 800; font-size: .9rem; padding: 9px 18px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(217,87,63,.4); transform: rotate(7deg); white-space: nowrap;
  transform-origin: center;
}
@media (prefers-reduced-motion: no-preference) {
  .nezvedat-visual:hover .ban-badge { animation: banPulse .7s ease-in-out infinite; }
}
@keyframes banPulse {
  0%, 100% { transform: rotate(7deg) scale(1); }
  50% { transform: rotate(7deg) scale(1.12); box-shadow: 0 14px 30px rgba(217,87,63,.55); }
}
.nezvedat-copy .eyebrow { color: #C24A35; }
.nezvedat-copy .eyebrow::before,
.nezvedat-copy .eyebrow::after { background: #D9573F; }
.nezvedat-copy h2 { color: var(--navy); margin: 16px 0 16px; }
.nez-list { list-style: none; padding: 0; margin: 24px 0 26px; display: grid; gap: 14px; }
.nez-list li { display: flex; gap: 13px; align-items: flex-start; }
.nez-list li .x {
  width: 26px; height: 26px; flex: none; border-radius: 50%; background: #D9573F; color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: .85rem; margin-top: 2px;
}
.nez-list li b { color: var(--navy); }
.nez-list li span { color: var(--muted); }
.nez-punch {
  background: var(--teal-tint); border-left: 4px solid var(--teal); border-radius: 0 16px 16px 0;
  padding: 18px 22px; color: var(--navy); font-weight: 600; font-size: 1.02rem; line-height: 1.5;
}
.nez-punch .star-ok { color: var(--gold-d); font-size: 1.3rem; margin-right: 4px; }

/* =========================================================
   LOYALTY — věrnostní sleva
   ========================================================= */
.loyalty {
  display: grid; grid-template-columns: auto 1fr; gap: 28px; align-items: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 34px 40px;
  margin: 56px 0 0; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.loyalty::after { content: ""; position: absolute; right: -60px; bottom: -80px; width: 240px; height: 240px; border-radius: 50%; background: rgba(255,213,0,.08); }
.loyalty-icon {
  width: 96px; height: 96px; flex: none; border-radius: 50%;
  background: var(--gold); color: var(--navy); display: grid; place-items: center;
  font-family: var(--hand); font-size: 2.1rem; box-shadow: 0 12px 30px rgba(255,213,0,.4);
}
.loyalty-text h3 { font-family: var(--hand); font-weight: 400; font-size: clamp(1.7rem, 3.2vw, 2.4rem); color: #fff; margin-bottom: 8px; }
.loyalty-text p { color: rgba(255,255,255,.82); font-size: 1rem; max-width: 62ch; }
.loyalty-text p b { color: var(--gold); }
.loyalty-bar { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 18px; max-width: 460px; }
.loyalty-bar .seg { grid-row: 1; height: 9px; border-radius: 99px; background: rgba(255,255,255,.18); position: relative; }
.loyalty-bar .seg::before { content: ""; position: absolute; inset: 0; border-radius: 99px; background: var(--teal-l); animation: loyFill 1.1s ease both; animation-play-state: paused; transform-origin: left; }
.loyalty.in .loyalty-bar .seg::before { animation-play-state: running; }
.loyalty-bar .seg:nth-child(2)::before { animation-delay: .12s; }
.loyalty-bar .seg:nth-child(3)::before { animation-delay: .24s; background: var(--teal); }
.loyalty-bar .seg:nth-child(4)::before { animation-delay: .36s; background: var(--gold-d); }
.loyalty-bar .seg.max::before { animation-delay: .48s; background: var(--gold); }
.loyalty-bar em { grid-row: 2; font-style: normal; font-weight: 800; font-size: .78rem; color: rgba(255,255,255,.7); text-align: center; }
.loyalty-bar em:last-child { color: var(--gold); }
@keyframes loyFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) { .loyalty-bar .seg::before { animation: none; transform: scaleX(1); } }

/* =========================================================
   REFERENCE — recenze
   ========================================================= */
.rev-stat { display: flex; flex-direction: column; align-items: center; gap: 6px; margin: -28px auto 48px; text-align: center; }
.rev-stat-big { display: flex; align-items: baseline; gap: 12px; }
.rev-stat-big b { font-family: var(--hand); font-weight: 400; font-size: 3.6rem; color: var(--navy); line-height: 1; }
.rev-stat-stars { color: var(--gold); font-size: 1.6rem; letter-spacing: 2px; }
.rev-stat p { color: var(--muted); font-weight: 600; }
.rev-stat p b { color: var(--teal-d); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.review { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.review:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.review-head { display: flex; align-items: center; gap: 12px; }
.review-head .g-av { width: 42px; height: 42px; flex: none; border-radius: 50%; color: #fff; display: grid; place-items: center; font-weight: 800; }
.review-head .g-name { font-weight: 700; color: var(--navy); font-size: .98rem; }
.review-head .g-meta { color: var(--muted); font-size: .82rem; }
.review-head .g-logo { width: 22px; height: 22px; margin-left: auto; flex: none; }
.review .g-stars { color: var(--gold); letter-spacing: 2px; font-size: 1.05rem; margin: 14px 0 8px; }
.review-text { color: var(--navy); font-size: .96rem; line-height: 1.55; }
.review-reply { margin-top: 16px; background: var(--teal-tint); border-radius: 14px; padding: 14px 16px; }
.review-reply .rr-tag { font-size: .72rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--teal-d); font-weight: 800; display: flex; align-items: center; gap: 7px; }
.review-reply .rr-tag .tag-ico { stroke: var(--teal-d); }
.review-reply p { color: var(--navy); font-size: .9rem; margin-top: 6px; line-height: 1.5; }
.reviews-cta { display: flex; justify-content: center; margin-top: 36px; }
.reviews-disclaimer { text-align: center; color: var(--muted); font-size: .86rem; margin-top: 16px; font-style: italic; }

/* Reference — skuteční klienti */
.client { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; display: flex; flex-direction: column; gap: 14px; }
.client:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.client-head { display: flex; align-items: flex-start; gap: 12px; }
.client-head .g-av { width: 46px; height: 46px; flex: none; border-radius: 50%; color: #fff; display: grid; place-items: center; font-weight: 800; font-size: .9rem; }
.client-head .g-name { font-weight: 700; color: var(--navy); font-size: 1rem; }
.client-head .g-meta { color: var(--muted); font-size: .84rem; }
.client-head .g-stars { margin-left: auto; color: var(--gold); letter-spacing: 1px; font-size: .92rem; }
.client-text { color: var(--navy); font-size: .95rem; line-height: 1.55; flex: 1; }
.client-links { display: flex; flex-wrap: wrap; gap: 8px; }
.client-links a { display: inline-flex; align-items: center; gap: 5px; background: var(--teal-tint); color: var(--teal-d); font-weight: 700; font-size: .82rem; padding: 6px 12px; border-radius: 999px; transition: background .2s ease, color .2s ease; }
.client-links a::before { content: "\2197"; font-weight: 800; }
.client-links a:hover { background: var(--teal); color: #fff; }

.ref-video { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; background: var(--navy); color: #fff; border-radius: var(--radius-lg); padding: 26px 34px; margin-top: 36px; box-shadow: var(--shadow-lg); }
.ref-video img { width: 84px; height: auto; flex: none; }
.ref-video-copy h3 { font-family: var(--hand); font-weight: 400; font-size: clamp(1.5rem, 2.6vw, 2rem); color: var(--gold); margin-bottom: 4px; }
.ref-video-copy p { color: rgba(255,255,255,.84); font-size: .98rem; max-width: 60ch; }
.ref-video-copy p b { color: #fff; }

/* =========================================================
   KONTAKT — tým + formulář
   ========================================================= */
.kontakt { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.team { display: grid; gap: 16px; }
.team-card { display: flex; gap: 16px; align-items: flex-start; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 22px 24px; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.team-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.team-av { width: 60px; height: 60px; flex: none; border-radius: 50%; color: #fff; display: grid; place-items: center; font-weight: 800; font-size: 1.1rem; overflow: hidden; }
img.team-av { object-fit: cover; object-position: center top; background: #fff; box-shadow: inset 0 0 0 1px rgba(5,35,39,.14); }
img.team-av-logo { object-fit: contain; object-position: center; padding: 7px; }
.team-info h4 { color: var(--navy); font-size: 1.12rem; margin: 0 0 2px; }
.team-role { color: var(--teal-d); font-weight: 700; font-size: .86rem; }
.team-links { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 12px; }
.team-links a { color: var(--muted); font-weight: 600; font-size: .9rem; position: relative; padding-left: 16px; white-space: nowrap; }
.team-links a::before { content: "→"; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.team-links a:hover { color: var(--teal-d); }
.team-note { color: var(--muted); font-size: .9rem; margin-top: 6px; }
.pform textarea { width: 100%; padding: 13px 15px; border-radius: 12px; border: 1.5px solid var(--line); font-family: inherit; font-size: 1rem; font-weight: 500; color: var(--navy); background: var(--cream); transition: border-color .2s ease; resize: vertical; }
.pform textarea:focus { outline: none; border-color: var(--teal); background: #fff; }

/* =========================================================
   DOC STRÁNKA (GDPR)
   ========================================================= */
.doc-page .site-header { background: rgba(251,248,239,.92); backdrop-filter: blur(12px); box-shadow: 0 1px 0 rgba(5,35,39,.06); }
.doc-hero { background: var(--navy); color: #fff; padding: 132px 0 64px; position: relative; overflow: hidden; }
.doc-hero::after { content: ""; position: absolute; right: -80px; top: -80px; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,213,0,.07); }
.doc-hero .wrap { position: relative; z-index: 1; max-width: 820px; }
.doc-back { display: block; color: var(--teal-l); font-weight: 700; font-size: .92rem; margin-bottom: 22px; }
.doc-back:hover { color: var(--gold); }
.doc-hero .eyebrow { color: var(--gold); }
.doc-hero .eyebrow::before,
.doc-hero .eyebrow::after { background: var(--gold); }
.doc-hero h1 { color: #fff; margin: 14px 0 16px; }
.doc-hero .lead { color: rgba(255,255,255,.84); max-width: 64ch; }
.doc-section { padding-top: 64px; }
.doc-wrap { max-width: 820px; }
.doc-card { display: grid; grid-template-columns: auto 1fr; gap: 24px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px 34px; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.doc-card-ico { width: 60px; height: 60px; flex: none; border-radius: 16px; background: var(--teal-tint); display: grid; place-items: center; }
.doc-card-ico .ico { width: 30px; height: 30px; stroke: var(--teal-d); fill: none; stroke-width: 1.8; }
.doc-card-body h2 { font-size: 1.5rem; color: var(--navy); margin-bottom: 12px; }
.doc-card-body p { color: var(--ink); font-size: 1.02rem; line-height: 1.65; margin-bottom: 14px; }
.doc-card-body p b { color: var(--navy); }
.doc-card-body .btn { margin-top: 4px; }
.doc-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 11px; }
.doc-list li { display: flex; align-items: center; gap: 12px; color: var(--navy); font-weight: 600; font-size: .98rem; }
.doc-list .tick { width: 26px; height: 26px; flex: none; border-radius: 50%; background: var(--teal); display: grid; place-items: center; }
.doc-list .tick .ico { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.4; }
.doc-docs { background: var(--cream); border: 1px dashed var(--line); border-radius: var(--radius-lg); padding: 28px 32px; margin-top: 12px; }
.doc-docs h3 { color: var(--navy); font-size: 1.15rem; margin-bottom: 16px; }
.doc-links { display: flex; flex-wrap: wrap; gap: 12px; }
.doc-links a { display: inline-flex; align-items: center; gap: 9px; background: var(--paper); border: 1px solid var(--line); color: var(--navy); font-weight: 700; font-size: .94rem; padding: 12px 18px; border-radius: 12px; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease; }
.doc-links a .ico { width: 20px; height: 20px; stroke: var(--teal-d); fill: none; stroke-width: 1.7; }
.doc-links a:hover { transform: translateY(-2px); box-shadow: var(--shadow); border-color: var(--teal); }
@media (max-width: 640px) {
  .doc-card { grid-template-columns: 1fr; gap: 16px; padding: 26px 24px; }
  .doc-hero { padding-top: 112px; }
}

/* =========================================================
   SCROLL REVEAL — visible by default; JS "arms" only below-fold els
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .reveal.armed { opacity: 0; transform: translateY(28px); }
  .reveal.armed.in { animation: revealIn .7s cubic-bezier(.2,.7,.3,1) both; }
  .reveal.armed.d1.in { animation-delay: .08s; }
  .reveal.armed.d2.in { animation-delay: .16s; }
  .reveal.armed.d3.in { animation-delay: .24s; }
  .reveal.armed.d4.in { animation-delay: .32s; }
}
@keyframes revealIn {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; }
  .nav-links.open {
    display: flex; position: absolute; top: 70px; left: 16px; right: 16px;
    flex-direction: column; gap: 6px; background: var(--paper); padding: 18px;
    border-radius: 18px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { padding: 10px 6px; width: 100%; }
}
@media (max-width: 640px) {
  .nav-cta .btn-login { display: none; }
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { order: -1; }
  .demo, .reaktor, .agentury, .pilot { grid-template-columns: 1fr; gap: 36px; }
  .nezvedat, .kontakt { grid-template-columns: 1fr; gap: 36px; }
  .nezvedat-visual { order: -1; }
  .pains { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .ref-video { grid-template-columns: 1fr; text-align: center; justify-items: center; gap: 16px; padding: 28px 24px; }
  .ref-video-copy p { margin: 0 auto; }
  .loyalty { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 32px 26px; max-width: 440px; margin: 56px auto 0; }
  .loyalty-bar { margin-left: auto; margin-right: auto; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .obory { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .plan.featured { transform: none; }
  .plan.featured:hover { transform: translateY(-6px); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .ag-feats { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .nav-links { display: none; }
  .nav-toggle { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--navy); color: #fff; }
  .nav-links.open {
    display: flex; position: absolute; top: 70px; left: 16px; right: 16px;
    flex-direction: column; gap: 6px; background: var(--paper); padding: 18px;
    border-radius: 18px; box-shadow: var(--shadow-lg);
  }
  .nav-links.open a { padding: 10px 6px; width: 100%; }
  .hero { padding: 120px 0 70px; }
  .section { padding: 70px 0; }
  .steps { grid-template-columns: 1fr; }
  .pains { grid-template-columns: 1fr; }
  .demo-stage { flex-direction: column; align-items: center; }
  .agentury-visual { order: -1; }
  .pilot { padding: 32px 22px; }
  .footer-top { grid-template-columns: 1fr; gap: 26px; }
  .ag-feats { grid-template-columns: 1fr; }
  .pform .row2 { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .obory { grid-template-columns: 1fr; }
  .wrap { padding: 0 18px; }
}
