/* ═══════════════════════════════════════════════
   KI v3 — style.css
   Careon-inspired · Rich animations · No icon blocks
═══════════════════════════════════════════════ */

:root {
  --blue:      #0A2E5C;
  --blue-mid:  #0D3D7A;
  --cyan:      #00B4D8;
  --cyan-lt:   #48CAE4;
  --cyan-pale: #E0F7FA;
  --white:     #ffffff;
  --off:       #F4F8FB;
  --ink:       #0E1E2C;
  --muted:     #607D8B;
  --border:    #DDE6EF;
  --shadow-sm: rgba(10,46,92,.08);
  --shadow-md: rgba(10,46,92,.15);
  --shadow-lg: rgba(10,46,92,.22);

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --sec: 130px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  color: var(--ink);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5 { font-family: 'Playfair Display', serif; line-height: 1.15; color: var(--blue); }
p { color: var(--muted); line-height: 1.85; }
p strong { color: var(--cyan); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

.sec-padding { padding-top: var(--sec); padding-bottom: var(--sec); }

/* ── EYEBROW ── */
.eyebrow {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 14px;
  display: block;
}

/* ── SECTION TITLE ── */
.sec-title { font-size: clamp(2rem, 3.8vw, 3rem); margin-bottom: 22px; margin-top: 15px; }
.sec-title span { color: var(--cyan); }

/* ── BUTTONS ── */
.btn-cyan {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--cyan);
  color: var(--white);
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  border: none; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.btn-cyan::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(255,255,255,.12);
  transform: translateX(-100%);
  transition: transform .35s var(--ease-out);
}
.btn-cyan:hover { background: var(--cyan-lt); color: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,180,216,.35); }
.btn-cyan:hover::after { transform: translateX(0); }

.btn-white {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--blue);
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  border: none; cursor: pointer;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.btn-white:hover { background: var(--off); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,255,255,.25); }

.btn-outline-blue {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--blue);
  border: 2px solid var(--blue);
  border-radius: 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .05em;
  cursor: pointer;
  transition: all .25s;
}
.btn-outline-blue:hover { background: var(--blue); color: var(--white); }

/* ── ARROW ICON ── */
.arr {
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .25s;
}
.btn-cyan:hover .arr, .btn-white:hover .arr { transform: translateX(3px); }


/* ════════════════════════════════
   NAVBAR
════════════════════════════════ */
.nav-wrap {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  background: transparent;
  transition: background .5s ease, box-shadow .5s ease, backdrop-filter .5s ease;
}

.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
  transition: padding .4s;
}

/* Lišta se zobrazí až po scrollu */
.nav-wrap.scrolled {
  background: rgba(10,46,92,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 40px rgba(10,46,92,.45);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav-wrap.scrolled .nav-bar {
  padding: 13px 60px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--white);
  display: flex; align-items: center; gap: 10px;
}
.nav-logo img {
  width: 100%;
  max-width: 90px;
}
.nav-logo-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.6); opacity: .5; }
}

.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--cyan);
  transition: right .3s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { right: 0; }

.nav-burger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.nav-burger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform .35s, opacity .25s, width .25s;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Drawer */
.drawer-bg {
  position: fixed; inset: 0;
  background: rgba(10,46,92,.6); backdrop-filter: blur(6px);
  z-index: 950; opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.drawer-bg.on { opacity: 1; pointer-events: all; }

.drawer-panel {
  position: fixed; top: 0; right: 0;
  width: 300px; max-width: 86vw; height: 100%;
  background: var(--blue);
  z-index: 960;
  transform: translateX(100%);
  transition: transform .42s var(--ease-out);
  display: flex; flex-direction: column;
}
.drawer-panel.on { transform: translateX(0); }

.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 32px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.drawer-x {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background .2s;
}
.drawer-x:hover { background: rgba(255,255,255,.2); }
.drawer-x svg { stroke: white; }

.drawer-links {
  flex: 1; padding: 36px 32px; display: flex; flex-direction: column; gap: 4px;
}
.drawer-links a {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; color: rgba(255,255,255,.7);
  padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, padding-left .2s;
  opacity: 0; transform: translateX(20px);
}
.drawer-links a:hover { color: var(--cyan); padding-left: 8px; }
.drawer-panel.on .drawer-links a {
  opacity: 1; transform: translateX(0);
  transition: opacity .35s ease, transform .35s ease, color .2s, padding-left .2s;
}
.drawer-panel.on .drawer-links a:nth-child(1) { transition-delay: .07s; }
.drawer-panel.on .drawer-links a:nth-child(2) { transition-delay: .11s; }
.drawer-panel.on .drawer-links a:nth-child(3) { transition-delay: .15s; }
.drawer-panel.on .drawer-links a:nth-child(4) { transition-delay: .19s; }
.drawer-panel.on .drawer-links a:nth-child(5) { transition-delay: .23s; }
.drawer-panel.on .drawer-links a:nth-child(6) { transition-delay: .27s; }

.drawer-foot {
  padding: 28px 32px; border-top: 1px solid rgba(255,255,255,.08);
}
.drawer-foot .btn-cyan { width: 100%; justify-content: center; }


/* ════════════════════════════════
   HERO
════════════════════════════════ */
.hero {
  min-height: 100svh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
}

/* Foto mozaika pozadí */
.hero-mosaic {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.hero-mosaic-cell {
  overflow: hidden; position: relative;
}
.hero-mosaic-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  transition: transform 8s ease;
  filter: brightness(.35) saturate(.7);
}

/* Gradient overlay */
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(10,46,92,.92) 0%, rgba(10,46,92,.65) 55%, rgba(10,46,92,.3) 100%),
    linear-gradient(to top, rgba(10,46,92,.7) 0%, transparent 50%);
  z-index: 1;
}

/* Dekorativní linka vpravo */
.hero-deco-line {
  position: absolute;
  right: 10%;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(0,180,216,.5), transparent);
  z-index: 2;
}
.hero-deco-dot {
  position: absolute;
  right: calc(10% - 4px);
  top: 50%;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--cyan);
  z-index: 2;
  animation: floatDot 3s ease-in-out infinite;
}
@keyframes floatDot { 0%,100%{transform:translateY(-12px)} 50%{transform:translateY(12px)} }

.hero-content {
  position: relative; z-index: 5;
  max-width: 1000px;
  padding: 0 60px;
}

.hero-kicker {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 28px;
}
.hero-kicker-line { width: 36px; height: 2px; background: var(--cyan); }
.hero-kicker span {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan);
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: 24px;
  margin-top: 10px;
}
.hero h1 span { color: var(--cyan); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,.68);
  font-weight: 400;
  max-width: 820px;
  margin-bottom: 44px;
  line-height: 1.85;
}

.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 72px; }

/* Statistiky */
.hero-stats {
  display: flex; gap: 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-stat {
  flex: 1;
  padding: 28px 0;
  border-right: 1px solid rgba(255,255,255,.1);
  position: relative;
}
.hero-stat:last-child { border-right: none; }
.hero-stat-n {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--white);
  line-height: 1;
  margin-bottom: 5px;
}
.hero-stat-l {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
}
.hero-stat::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--cyan), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .6s var(--ease-out);
}
.hero-stat.counted::after { transform: scaleX(1); }

.hero-scroll-hint {
  position: absolute;
  bottom: 40px; left: 60px;
  display: flex; align-items: center; gap: 14px;
  z-index: 5;
  color: rgba(255,255,255,.35);
  font-size: .65rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-wheel {
  width: 24px; height: 38px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 12px;
  position: relative;
}
.scroll-wheel::after {
  content: '';
  position: absolute;
  top: 5px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px;
  background: var(--cyan);
  border-radius: 2px;
  animation: scrollWheel 2s ease-in-out infinite;
}
@keyframes scrollWheel { 0%{top:5px;opacity:1} 80%{top:20px;opacity:0} 100%{top:5px;opacity:0} }


/* ════════════════════════════════
   CO JE KI — FULLWIDTH SPLIT
════════════════════════════════ */
.co-je {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 680px;
}

.co-je-visual {
  position: relative;
  overflow: hidden;
}
.co-je-visual img {
  position: relative; 
  inset: 0;
  width: 100%; 
  height: auto;
}

/* Floating badge */
.co-je-badge {
  position: absolute;
  bottom: 40px; right: -1px;
  background: var(--cyan);
  padding: 20px 28px;
  z-index: 2;
  clip-path: polygon(12px 0%, 100% 0%, 100% 100%, 0% 100%);
}
.co-je-badge-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; color: var(--white); line-height: 1;
}
.co-je-badge-l {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: rgba(255,255,255,.75); margin-top: 3px;
}

.co-je-text {
  background: var(--off);
  padding: 100px 80px;
  display: flex; flex-direction: column; justify-content: center;
}
.co-je-text p { margin-bottom: 18px; }

.highlight-box {
  margin-top: 32px;
  padding: 28px 32px;
  background: var(--white);
  border-left: 4px solid var(--cyan);
  box-shadow: 0 8px 32px var(--shadow-sm);
}
.highlight-box p {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--blue);
  margin: 0; line-height: 1.6;
}


/* ════════════════════════════════
   JAK FUNGUJE — STEPS NA FOTO POZADÍ
════════════════════════════════ */
.jak-funguje {
  position: relative;
  overflow: hidden;
}
.jak-bg-img {
  position: absolute; inset: 0;
}
.jak-bg-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.12) saturate(.3);
}
.jak-bg-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,46,92,.9) 0%, rgba(10,46,92,.75) 100%);
}

.jak-inner {
  position: relative; z-index: 2;
}
.jak-inner .eyebrow { color: var(--cyan-lt); }
.jak-inner .sec-title { color: var(--white); }

/* Velké číslované bloky — bez ikonek */
.jak-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 64px;
  background: rgba(255,255,255,.06);
}

.jak-step {
  padding: 52px 44px;
  background: rgba(10,46,92,.4);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.06);
  position: relative;
  overflow: hidden;
  transition: background .35s;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease, background .35s;
}
.jak-step.on { opacity: 1; transform: translateY(0); }
.jak-step:hover { background: rgba(0,180,216,.12); }

.jak-step-big-num {
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: rgba(255,255,255,.06);
  line-height: 1;
  position: absolute;
  top: 16px; right: 24px;
  transition: color .35s;
  user-select: none;
}
.jak-step:hover .jak-step-big-num { color: rgba(0,180,216,.12); }

.jak-step-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 16px;
  display: flex; align-items: center; gap: 10px;
}
.jak-step-label::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--cyan); flex-shrink: 0;
}
.jak-step h4 {
  color: var(--white); font-size: 1.2rem; margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}
.jak-step p { color: rgba(255,255,255,.58); font-size: .9rem; line-height: 1.8; }


/* ════════════════════════════════
   PRO KOHO — VELKÉ PANELY
════════════════════════════════ */
.pro-koho { background: var(--white); }

.pro-koho-header { text-align: center; margin-bottom: 72px; }
.pro-koho-header .sec-title { max-width: 800px; margin: 0 auto 16px; }
.pro-koho-header p { max-width: 560px; margin: 0 auto; }

/* Panely — foto vlevo nebo vpravo střídavě */
.pro-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.pro-panel.on { opacity: 1; transform: translateY(0); }

.pro-panel:nth-child(even) { direction: rtl; }
.pro-panel:nth-child(even) > * { direction: ltr; }

.pro-panel-img {
  position: relative; overflow: hidden;
}
.pro-panel-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform .8s var(--ease-out);
}
.pro-panel:hover .pro-panel-img img { transform: scale(1.0); }

/* Číslo přes foto */
.pro-panel-num {
  position: absolute;
  bottom: 24px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  color: rgba(255,255,255,.18);
  line-height: 1;
  user-select: none;
}

.pro-panel-text {
  padding: 72px 68px;
  display: flex; flex-direction: column; justify-content: center;
  background: var(--white);
}
.pro-panel:nth-child(even) .pro-panel-text { background: var(--off); }

.pro-panel-text h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  margin-bottom: 20px;
  transition: color .25s;
}
.pro-panel:hover .pro-panel-text h3 { color: var(--cyan); }
.pro-panel-text p { font-size: .92rem; line-height: 1.85; }


/* ════════════════════════════════
   ŘEŠENÍ — 2×2 FOTO GRID
════════════════════════════════ */
.reseni { background: var(--blue); }
.reseni .eyebrow { color: var(--cyan-lt); }
.reseni .sec-title { color: var(--white); }
.reseni-intro { max-width: 100%; margin-bottom: 64px; }
.reseni-intro p { color: rgba(255,255,255,.58); }

.reseni-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.reseni-tile {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  min-height: 340px;
  cursor: default;
  opacity: 0;
  transform: scale(.96);
  transition: opacity .7s ease, transform .7s ease;
}
.reseni-tile.on { opacity: 1; transform: scale(1); }

.reseni-tile-bg {
  position: absolute; inset: 0;
}
.reseni-tile-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.3) saturate(.6);
  transform: scale(1.06);
  transition: transform .6s var(--ease-out), filter .4s;
}
.reseni-tile:hover .reseni-tile-bg img {
  transform: scale(1.0);
  filter: brightness(.22) saturate(.5);
}

.reseni-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,46,92,.85) 0%, rgba(10,46,92,.2) 60%);
  transition: background .35s;
}

.reseni-tile-content {
  position: relative; z-index: 2;
  padding: 36px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
}

.reseni-tile-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem; color: rgba(255,255,255,.12);
  line-height: 1; margin-bottom: 12px;
  align-self: flex-start;
  transition: color .35s;
}
.reseni-tile:hover .reseni-tile-num { color: rgba(0,180,216,.2); }

.reseni-tile-tag {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 8px;
}
.reseni-tile h3 {
  color: var(--white); font-size: 1.25rem; margin-bottom: 12px;
}
.reseni-tile p {
  color: rgba(255,255,255,.6); font-size: .87rem;
  max-height: 0; overflow: hidden;
  transition: max-height .4s var(--ease-out), opacity .4s;
  opacity: 0;
}
.reseni-tile:hover p { max-height: 200px; opacity: 1; }


/* ════════════════════════════════
   CESTA PACIENTA — ALTERNUJÍCÍ LAYOUT
════════════════════════════════ */
.cesta { background: var(--off); }

.cesta-header { margin-bottom: 80px; }

/* Přehled kroků jako velká horizontální čísla */
.cesta-steps { display: flex; flex-direction: column; gap: 0; }

.cesta-step {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.cesta-step.on { opacity: 1; transform: translateY(0); }

.cesta-step-n {
  display: flex; align-items: flex-start;
  padding: 48px 0 48px 0;
  justify-content: center;
}
.cesta-step-n span {
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: var(--border);
  line-height: 1;
  transition: color .3s;
}
.cesta-step:hover .cesta-step-n span { color: var(--cyan); }

.cesta-step-body {
  padding: 48px 0 48px 40px;
  border-left: 1px solid var(--border);
  position: relative;
}
.cesta-step-body::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--cyan);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .4s var(--ease-out);
}
.cesta-step:hover .cesta-step-body::before { transform: scaleY(1); }

.cesta-step-body h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.cesta-step-body p { font-size: .9rem; max-width: 100%; }

/* Centra */
.cesta-centers {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: start;
}

.cesta-centers-label .sec-title { font-size: 1.8rem; margin-bottom: 12px; }

.centers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.center-cell {
  background: var(--white);
  padding: 28px 24px;
  transition: background .25s;
}
.center-cell:hover { background: var(--cyan-pale); }
.center-city {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--blue); margin-bottom: 8px;
}
.center-detail { font-size: .84rem; color: var(--muted); line-height: 1.65; }


/* ════════════════════════════════
   PROČ AB — MASONRY-STYLE VELKÉ TEXTY
════════════════════════════════ */
.proc-ab { background: var(--white); }
.proc-ab-lead { max-width: 100%; margin-bottom: 80px; }

/* Bez ikonek — velké textové bloky s čísly a nadpisy */
.ab-list { display: flex; flex-direction: column; gap: 0; }

.ab-row {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 0;
  padding: 52px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
.ab-row.on { opacity: 1; transform: translateY(0); }
.ab-row:hover { background: var(--off); margin: 0 -40px; padding: 52px 40px; }

.ab-row-n {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--border);
  padding-top: 4px;
  transition: color .3s;
}
.ab-row:hover .ab-row-n { color: var(--cyan); }

.ab-row-title h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--blue);
  padding-right: 40px;
  margin-top: 8px;
}

.ab-row-text p { font-size: .9rem; margin-top: 5px;}

.ab-row-img {
  display: none;
}


/* ════════════════════════════════
   VIDEO — FULLWIDTH TMAVÉ
════════════════════════════════ */
.video-sec {
  position: relative;
  background: var(--blue);
  overflow: hidden;
}
.video-sec-bg {
  position: absolute; inset: 0;
}
.video-sec-bg img {
  width: 100%; height: 100%; object-fit: cover;
  opacity: .08; filter: grayscale(1);
}

.video-inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.video-text .eyebrow { color: var(--cyan-lt); }
.video-text .sec-title { color: var(--white); }
.video-text p { color: rgba(255,255,255,.58); margin-bottom: 32px; }

.video-frame {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0,0,0,.4);
  position: relative;
}
.video-frame video { width: 100%; display: block; }
.video-frame::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
  border-radius: 8px;
  pointer-events: none;
}


/* ════════════════════════════════
   KONTAKT — FULLSCREEN SPLIT
   (jiný od obou předchozích verzí)
════════════════════════════════ */
.kontakt {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

/* Levá strana — foto s overlayem a textem */
.kontakt-visual {
  position: relative; overflow: hidden;
}
.kontakt-visual img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(.4) saturate(.6);
}
.kontakt-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,46,92,.9) 0%, rgba(0,180,216,.25) 100%);
}
.kontakt-visual-content {
  position: relative; z-index: 2;
  padding: 100px 64px;
  height: 100%;
  display: flex; flex-direction: column; justify-content: center;
}

.kontakt-visual-content h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white); margin-bottom: 20px;
}
.kontakt-visual-content p {
  color: rgba(255,255,255,.65); font-size: .95rem; margin-bottom: 48px; max-width: 380px;
}

/* Kontaktní údaje jako velké řádky */
.kontakt-lines { display: flex; flex-direction: column; gap: 0; }
.kontakt-line {
  display: flex; flex-direction: column;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.kontakt-line:last-child { border-bottom: none; }
.kontakt-line-label {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 4px;
}
.kontakt-line-value {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--white);
}

/* Pravá strana — formulář */
.kontakt-form-wrap {
  background: var(--off);
  padding: 100px 72px;
  display: flex; flex-direction: column; justify-content: center;
}

.form-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.form-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); color: var(--blue); margin-bottom: 40px; }

/* Velká pole — minimalistický styl */
.k-form { display: flex; flex-direction: column; gap: 0; }

.k-field {
  position: relative;
  border-bottom: 1.5px solid var(--border);
  padding: 20px 0 8px;
  transition: border-color .25s;
}
.k-field:focus-within { border-color: var(--cyan); }

.k-field label {
  position: absolute;
  top: 20px; left: 0;
  font-size: .78rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--muted);
  transition: top .2s, font-size .2s, color .2s;
  pointer-events: none;
}
.k-field input:not(:placeholder-shown) ~ label,
.k-field input:focus ~ label,
.k-field textarea:not(:placeholder-shown) ~ label,
.k-field textarea:focus ~ label,
.k-field select:focus ~ label,
.k-field.has-val label {
  top: 0; font-size: .62rem; color: var(--cyan);
}

.k-field input,
.k-field textarea,
.k-field select {
  width: 100%; background: transparent; border: none;
  padding: 8px 0 4px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem; color: var(--ink);
  outline: none;
  -webkit-appearance: none;
}
.k-field input::placeholder,
.k-field textarea::placeholder { color: transparent; }
.k-field textarea { resize: none; min-height: 80px; }
.k-field select { color: var(--ink); cursor: pointer; }
.k-field select option { background: var(--white); }

.k-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }

.k-submit {
  margin-top: 44px;
  display: flex; align-items: center; gap: 24px;
}
.k-note { font-size: .78rem; color: var(--muted); }


/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
footer {
  background: var(--blue);
  padding: 36px 0;
}
.footer-inner {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 16px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: rgba(255,255,255,.65);
  display: flex; align-items: center; gap: 10px;
}
.footer-logo-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); }
.footer-copy { font-size: .78rem; color: rgba(255,255,255,.28); }


/* ════════════════════════════════
   RESPONSIVE
════════════════════════════════ */
@media (max-width: 1200px) {
  :root { --sec: 96px; }
  .nav-bar { padding: 22px 36px; }
  .nav-wrap.scrolled .nav-bar { padding: 14px 36px; }
  .hero-content { padding: 0 36px; }
  .co-je-text { padding: 72px 52px; }
  .pro-panel-text { padding: 56px 48px; }
  .cesta-centers { grid-template-columns: 1fr; gap: 40px; }
  .ab-row { padding: 40px 0; }
  .kontakt-visual-content { padding: 72px 48px; }
  .kontakt-form-wrap { padding: 72px 52px; }
}

@media (max-width: 991px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-bar a.btn-cyan { display: none; }

  .hero-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr 1fr; }
  .hero-deco-line, .hero-deco-dot { display: none; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat { min-width: 45%; }

  .co-je { grid-template-columns: 1fr; }
  .co-je-visual { min-height: 360px; }
  .co-je-badge { right: 24px; }
  .co-je-text { padding: 64px 36px; }

  .jak-steps { grid-template-columns: 1fr; }
  .jak-step { padding: 40px 32px; }
  .jak-step-big-num { font-size: 4rem; }

  .pro-panel { grid-template-columns: 1fr; direction: ltr !important; }
  .pro-panel-img { min-height: 300px; }
  .pro-panel-text { padding: 52px 36px; }

  .reseni-grid { grid-template-columns: 1fr; }
  .reseni-tile { min-height: 260px; }
  .reseni-tile p { max-height: 200px; opacity: 1; }

  .ab-row { grid-template-columns: 60px 1fr; }
  .ab-row-text { display: none; }

  .video-inner { grid-template-columns: 1fr; gap: 48px; }

  .kontakt { grid-template-columns: 1fr; }
  .kontakt-visual { min-height: 400px; }
  .kontakt-visual-content { padding: 60px 36px; }
  .kontakt-form-wrap { padding: 60px 36px; }
  .k-form-grid { grid-template-columns: 1fr; gap: 0; }

  .cesta-step { grid-template-columns: 80px 1fr; }
}

@media (max-width: 768px) {
  :root { --sec: 72px; }
  .nav-bar { padding: 24px 24px; }
  .nav-wrap.scrolled .nav-bar { padding: 10px 24px; }
  .hero h1 { font-size: 2.4rem; }
  .hero-content { padding: 0 24px; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
  .hero-scroll-hint { left: 24px; }
  .hero-stats { padding-top: 20px; }

  .co-je-text { padding: 52px 24px; }
  .jak-step { padding: 32px 24px; }
  .pro-panel-text { padding: 40px 24px; }
  .kontakt-form-wrap { padding: 48px 24px; }
  .kontakt-visual-content { padding: 48px 24px; }

  .ab-row:hover { margin: 0; padding: 40px 0; }

  .cesta-step { grid-template-columns: 60px 1fr; }
  .cesta-step-n span { font-size: 3rem; }
  .cesta-step-body { padding: 36px 0 36px 24px; }
}


/* ── REVEAL STATES (IntersectionObserver → .on) ── */
.co-je-text,
.co-je-badge,
.highlight-box,
.kontakt-visual-content,
.kontakt-form-wrap,
.video-frame {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .75s ease, transform .75s ease;
}
.co-je-text.on,
.co-je-badge.on,
.highlight-box.on,
.kontakt-visual-content.on,
.kontakt-form-wrap.on,
.video-frame.on {
  opacity: 1;
  transform: translateY(0);
}

.co-je-badge {
  transform: translateX(24px);
}
.co-je-badge.on {
  transform: translateX(0);
}

.center-cell {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .55s ease, transform .55s ease;
}
.center-cell.on {
  opacity: 1;
  transform: translateY(0);
}


/* ── HERO ELEMENT REVEALS ── */
.hero-mosaic-cell,
.hero-kicker,
.hero h1,
.hero-sub,
.hero-btns,
.hero-stats,
.hero-scroll-hint,
.hero-deco-line,
.hero-deco-dot {
  opacity: 0;
  transition: opacity .7s ease, transform .7s ease;
}

.hero-mosaic-cell { transform: scale(1.08); }
.hero-mosaic-cell.on { opacity: 1; transform: scale(1); }

.hero-kicker,
.hero h1,
.hero-sub,
.hero-btns,
.hero-stats { transform: translateY(22px); }

.hero-kicker.on,
.hero h1.on,
.hero-sub.on,
.hero-btns.on,
.hero-stats.on { opacity: 1; transform: translateY(0); }

.hero-scroll-hint.on { opacity: 1; }

.hero-deco-line { transform: scaleY(0); transform-origin: top; }
.hero-deco-line.on { opacity: 1; transform: scaleY(1); transition-duration: 1.2s; }

.hero-deco-dot { transform: scale(0); }
.hero-deco-dot.on { opacity: 1; transform: scale(1); transition-timing-function: cubic-bezier(.34,1.56,.64,1); }
