/* ═══════════════════════════════════════════════════════════════
   ELVIAN — MZDY & PERSONALISTIKA · návrh 2026
   Identita dle Manuálu vizuálního stylu Elvian 2026 (MK, 13. 8. 2026):
   Navy #1F2A44 · Soft gold #C6A75E (jen akcent, nikdy plocha) ·
   Ivory #FAF6EE · Warm beige #E8DCC8 · Playfair Display + Inter.
   Základ: Elvian-Mzdy-v6 — layout beze změny, plný rebrand tokenů.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --paper: #FAF6EE;
  --paper-2: #F0E6D3;
  --cream: #FCF9F3;
  --white-warm: #FFFDF8;
  --ink: #232B3E;
  --ink-soft: #3D4557;
  --navy: #1F2A44;
  --abyss: #192138;
  --abyss-2: #131A2C;
  --gold: #C6A75E;
  --gold-deep: #A8894A;
  --gold-bright: #C6A75E;
  --gold-hot: #D9C28A;
  --sage: #C6A75E;
  --sage-deep: #A8894A;
  --muted: #7A7466;
  --muted-dark: rgba(250, 246, 238, .62);
  --line: rgba(31, 42, 68, .11);
  --line-gold: rgba(198, 167, 94, .32);
  --line-dark: rgba(198, 167, 94, .16);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'Inter', -apple-system, sans-serif;
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
  --nav-h: 74px;
  --radius: 20px;
  --shadow-soft: 0 1px 2px rgba(31, 42, 68, .05), 0 14px 44px -14px rgba(31, 42, 68, .18);
  --shadow-lift: 0 2px 4px rgba(31, 42, 68, .06), 0 26px 60px -18px rgba(31, 42, 68, .28);
}

/* ── base ─────────────────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }
body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
::selection { background: var(--navy); color: var(--paper); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.container { width: min(1220px, calc(100% - 48px)); margin-inline: auto; position: relative; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--paper-2); }
::-webkit-scrollbar-thumb { background: rgba(31, 42, 68, .28); border-radius: 6px; border: 3px solid var(--paper-2); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-deep); }

/* jemné zrno přes celý web */
.grain {
  position: fixed; inset: -100px; z-index: 2000; pointer-events: none; opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* scroll progress */
.scroll-progress {
  position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 2600;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform-origin: 0 50%; transform: scaleX(0);
}

/* demo chip */
.demo-chip {
  position: fixed; left: 18px; bottom: 18px; z-index: 2500;
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em;
  background: var(--ink); color: var(--paper);
  padding: 8px 8px 8px 14px; border-radius: 999px;
  box-shadow: 0 10px 30px -8px rgba(31, 42, 68, .5);
}
.demo-chip button {
  all: unset; cursor: pointer; width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center; background: rgba(250, 246, 238, .16); font-size: 12px;
}
.demo-chip button:hover { background: var(--gold); color: var(--ink); }

/* ── reveal animace ───────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* ── eyebrow + pulse ──────────────────────────────────────────── */
.eyebrow, .hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-mono); font-size: 11px; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep);
  margin-bottom: 22px;
}
.eyebrow--gold { color: var(--gold-bright); }
.pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold-deep);
  box-shadow: 0 0 0 0 rgba(198, 167, 94, .5); animation: pulse 2.4s infinite;
  flex: none;
}
.pulse-dot--gold { background: var(--gold-bright); box-shadow: 0 0 0 0 rgba(198, 167, 94, .5); }
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(198, 167, 94, .45); }
  70% { box-shadow: 0 0 0 9px rgba(198, 167, 94, 0); }
  100% { box-shadow: 0 0 0 0 rgba(198, 167, 94, 0); }
}

/* ── NAV ──────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 2400;
  height: var(--nav-h);
  background: rgba(250, 246, 238, .8);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .4s, box-shadow .4s, background .4s;
}
.nav.scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 34px -18px rgba(31, 42, 68, .25);
  background: rgba(250, 246, 236, .92);
}
.nav-row { display: flex; align-items: center; gap: 26px; height: var(--nav-h); }
.nav-logo img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  position: relative; display: block; padding: 9px 12px;
  font-size: 13.5px; font-weight: 500; color: var(--ink-soft);
  transition: color .25s;
}
.nav-links a::after {
  content: ''; position: absolute; left: 12px; right: 12px; bottom: 4px; height: 2px;
  background: var(--gold); border-radius: 2px;
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .35s var(--ease-out);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-back, .nav-other, .nav-poradna { color: var(--muted) !important; font-weight: 400 !important; }
.nav-other:hover, .nav-back:hover, .nav-poradna:hover { color: var(--gold-deep) !important; }
.nav-right { display: flex; align-items: center; gap: 16px; }
.lang { display: flex; gap: 2px; font-size: 15px; }
.lang a { padding: 4px 5px; border-radius: 7px; opacity: .45; transition: opacity .2s, background .2s; line-height: 1; }
.lang a.active, .lang a:hover { opacity: 1; background: rgba(198, 167, 94, .14); }
.nav-cta {
  font-size: 13px; font-weight: 600; letter-spacing: .04em;
  padding: 10px 22px; border-radius: 999px;
  color: var(--paper); background: var(--navy);
  border: 1px solid var(--navy);
  transition: background .3s, color .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.nav-cta:hover {
  background: var(--navy); border-color: var(--gold); color: var(--paper);
  transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(31, 42, 68, .45);
}
.burger { display: none; }

/* mobilní menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 2300; background: var(--paper);
  display: grid; place-items: center;
  opacity: 0; pointer-events: none; transition: opacity .4s var(--ease-out);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { display: grid; gap: 6px; text-align: center; }
.mobile-menu a {
  font-family: var(--font-display); font-size: clamp(28px, 7vw, 44px); font-weight: 400;
  color: var(--ink); display: block; padding: 8px 20px; transition: color .25s;
}
.mobile-menu a:hover { color: var(--gold-deep); font-style: italic; }

/* ── BUTTONS ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 14.5px; font-weight: 600; letter-spacing: .02em;
  padding: 15px 30px; border-radius: 999px; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s, background .3s, color .3s, border-color .3s;
}
.btn svg { width: 17px; height: 17px; transition: transform .35s var(--ease-out); }
.btn:hover svg { transform: translateX(3px); }
.btn--gold {
  background: linear-gradient(135deg, #283754, var(--navy));
  color: var(--paper);
  border: 1px solid rgba(198, 167, 94, .5);
  box-shadow: 0 12px 30px -10px rgba(31, 42, 68, .5), inset 0 1px 0 rgba(250, 246, 238, .08);
}
.btn--gold:hover { transform: translateY(-2px); border-color: var(--gold); box-shadow: 0 20px 44px -12px rgba(31, 42, 68, .6), inset 0 1px 0 rgba(250, 246, 238, .08); }
.btn--ghost {
  border: 1.5px solid rgba(31, 42, 68, .3); color: var(--ink);
}
.btn--ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); transform: translateY(-2px); }

/* ── HERO ─────────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: calc(var(--nav-h) + 64px) 0 90px;
  overflow: hidden;
  background:
    radial-gradient(1100px 700px at 88% 8%, rgba(198, 167, 94, .18), transparent 60%),
    radial-gradient(900px 640px at -6% 100%, rgba(232, 220, 200, .6), transparent 55%),
    linear-gradient(180deg, var(--cream), var(--paper));
}
.hero-sun {
  position: absolute; top: -240px; right: -200px; width: 780px; height: 780px;
  pointer-events: none;
}
.sun-disc {
  position: absolute; inset: 26%;
  border-radius: 50%;
  background: radial-gradient(circle at 38% 34%, rgba(217, 194, 138, .5), rgba(198, 167, 94, .24) 48%, transparent 72%);
  opacity: .82;
  animation: sun-breathe 9s ease-in-out infinite;
}
@keyframes sun-breathe {
  0%, 100% { transform: scale(1); opacity: .82; }
  50% { transform: scale(1.035); opacity: .92; }
}
.orbit {
  position: absolute; border-radius: 50%;
  border: 1px dashed rgba(168, 137, 74, .34);
}
.orbit--1 { inset: 14%; animation: spin 70s linear infinite; }
.orbit--2 { inset: 5%; border-color: rgba(168, 137, 74, .22); animation: spin 110s linear infinite reverse; }
.orbit--3 { inset: -6%; border-color: rgba(168, 137, 74, .13); animation: spin 160s linear infinite; }
.orbit::before {
  content: ''; position: absolute; top: -4px; left: 50%; width: 8px; height: 8px;
  border-radius: 50%; background: var(--gold-deep);
  box-shadow: 0 0 10px 2px rgba(198, 167, 94, .55);
}
@keyframes spin { to { transform: rotate(360deg); } }
.hero-blob {
  position: absolute; left: -180px; bottom: -220px; width: 560px; height: 560px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(232, 220, 200, .65), transparent 65%);
}
.hero-inner { max-width: 900px; }
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 400; line-height: 1.04; letter-spacing: -.015em;
  margin: 6px 0 34px;
  text-wrap: balance;
}
.hero-title em, .sec-title em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(115deg, var(--gold-deep), var(--gold) 55%, var(--gold-deep));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lead {
  max-width: 640px; font-size: 16.5px; line-height: 1.75; color: var(--ink-soft);
}
.hero-lead strong { color: var(--ink); font-weight: 600; }
.hero-lead--2 { margin-top: 14px; color: var(--muted); font-size: 15.5px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 42px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin-top: 74px; border-top: 1px solid var(--line);
}
.stat { padding: 26px 26px 0 0; position: relative; }
.stat + .stat { padding-left: 26px; border-left: 1px solid var(--line); }
.stat::before {
  content: ''; position: absolute; top: -1px; left: 0; width: 44px; height: 2px;
  background: var(--gold);
}
.stat-num {
  font-family: var(--font-display); font-size: clamp(24px, 3vw, 36px);
  font-weight: 400; line-height: 1.1; color: var(--ink); letter-spacing: -.01em;
}
.stat-num em { font-style: italic; color: var(--gold-deep); font-weight: 500; }
.stat-label {
  margin-top: 7px; font-family: var(--font-mono); font-size: 10.5px;
  letter-spacing: .16em; text-transform: uppercase; color: var(--muted);
}
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%);
  width: 24px; height: 38px; border: 1.5px solid rgba(31, 42, 68, .3); border-radius: 14px;
}
.hero-scroll span {
  position: absolute; left: 50%; top: 7px; width: 4px; height: 8px; margin-left: -2px;
  border-radius: 3px; background: var(--gold-deep);
  animation: scroll-hint 2.1s var(--ease-out) infinite;
}
@keyframes scroll-hint {
  0% { opacity: 0; transform: translateY(0); }
  30% { opacity: 1; }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ── MARQUEE ──────────────────────────────────────────────────── */
.marquee {
  overflow: hidden; border-block: 1px solid var(--line);
  background: var(--white-warm); padding: 15px 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 34px; width: max-content;
  animation: marquee 32s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .26em;
  text-transform: uppercase; color: var(--muted); white-space: nowrap;
}
.marquee-track i { font-style: normal; font-size: 8px; color: var(--gold); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── SEKCE — základ ───────────────────────────────────────────── */
.sec { position: relative; padding: 120px 0; overflow: hidden; }
.sec--cream { background: var(--paper); }
.sec--white { background: var(--white-warm); }
.sec--paper { background: var(--paper-2); }
.sec--dark { background: var(--abyss); color: var(--paper); }
.sec-head { max-width: 780px; margin: 0 auto 64px; text-align: center; }
.sec-head--tight { margin-top: 110px; margin-bottom: 44px; }
.sec-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.6vw, 54px);
  font-weight: 400; line-height: 1.1; letter-spacing: -.012em;
  text-wrap: balance;
}
.sec-title--s { font-size: clamp(28px, 3.8vw, 44px); }
.sec--dark .sec-title { color: var(--paper); }
.sec--dark .sec-title em {
  background: linear-gradient(115deg, var(--gold-bright), var(--gold-hot) 55%, var(--gold-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.sec-lead { margin-top: 22px; font-size: 16px; line-height: 1.75; color: var(--muted); }
.sec-lead strong { color: var(--ink); font-weight: 600; }
.sec--dark .sec-lead { color: var(--muted-dark); }
.sec--dark .sec-lead strong { color: var(--gold-hot); }

/* zlaté záře v tmavých sekcích */
.dark-glow { position: absolute; pointer-events: none; border-radius: 50%; }
.dark-glow--tl { top: -260px; left: -200px; width: 700px; height: 700px; background: radial-gradient(circle, rgba(198, 167, 94, .1), transparent 65%); }
.dark-glow--br { bottom: -300px; right: -220px; width: 780px; height: 780px; background: radial-gradient(circle, rgba(31, 42, 68, .55), transparent 65%); }
.dark-glow--tc { top: -320px; left: 50%; transform: translateX(-50%); width: 900px; height: 700px; background: radial-gradient(circle, rgba(198, 167, 94, .08), transparent 62%); }

/* ── FLOW (3 kroky) ───────────────────────────────────────────── */
.flow {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 34px; max-width: 1020px; margin: 0 auto;
}
.flow-line {
  position: absolute; top: 37px; left: 12%; right: 12%; height: 1px;
  background: repeating-linear-gradient(90deg, var(--line-gold) 0 7px, transparent 7px 15px);
}
.flow-line i {
  position: absolute; inset: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform-origin: 0 50%; transform: scaleX(0); transition: transform 1.6s var(--ease-out) .35s;
}
.flow.in .flow-line i { transform: scaleX(1); }
.flow-step {
  position: relative; text-align: center; padding: 0 8px;
  opacity: 0; transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.flow.in .flow-step { opacity: 1; transform: none; }
.flow-icon {
  width: 74px; height: 74px; margin: 0 auto 20px; border-radius: 50%;
  display: grid; place-items: center; position: relative; z-index: 1;
  color: var(--gold-deep); background: var(--white-warm);
  border: 1px solid var(--line-gold);
  box-shadow: 0 8px 26px -10px rgba(198, 167, 94, .4), inset 0 1px 0 rgba(255, 255, 255, .8);
  transition: transform .4s var(--ease-spring), box-shadow .4s;
}
.flow-step:hover .flow-icon { transform: translateY(-4px) scale(1.05); box-shadow: 0 16px 34px -10px rgba(198, 167, 94, .55); }
.flow-icon svg { width: 32px; height: 32px; }
.flow-title { font-family: var(--font-display); font-size: 21px; font-weight: 500; margin-bottom: 8px; }
.flow-desc { font-size: 14px; color: var(--muted); line-height: 1.65; max-width: 260px; margin-inline: auto; }

/* ── PILÍŘE ───────────────────────────────────────────────────── */
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.pillar {
  position: relative; background: var(--white-warm); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 28px 26px 30px; overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.pillar::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold-deep), var(--gold-bright));
  transform: scaleX(0); transform-origin: 0 50%; transition: transform .5s var(--ease-out);
}
.pillar:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.pillar:hover::before { transform: scaleX(1); }
.pillar-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.pillar-num {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  color: var(--gold-deep); font-weight: 600;
}
.pillar-icon { color: var(--gold-deep); opacity: .9; }
.pillar-icon svg { width: 27px; height: 27px; }
.pillar h4 { font-family: var(--font-display); font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.pillar p { font-size: 13.8px; color: var(--muted); line-height: 1.65; }

/* ── CALLOUTY ─────────────────────────────────────────────────── */
.quoteband {
  max-width: 860px; margin: 84px auto 0; padding: 8px 0 8px 36px;
  border-left: 3px solid var(--gold);
}
.quoteband p {
  font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 25px);
  font-weight: 400; line-height: 1.5; color: var(--ink-soft); font-style: italic;
}
.quoteband strong { color: var(--gold-deep); font-weight: 600; font-style: normal; }

.people {
  max-width: 860px; margin: 44px auto 0;
  display: flex; gap: 26px; align-items: flex-start;
  background: linear-gradient(135deg, rgba(232, 220, 200, .5), rgba(232, 220, 200, .2));
  border: 1px solid rgba(198, 167, 94, .35); border-radius: var(--radius);
  padding: 30px 34px;
}
.people-icon {
  flex: none; width: 60px; height: 60px; border-radius: 50%;
  display: grid; place-items: center; color: var(--sage-deep);
  background: var(--white-warm); border: 1px solid rgba(198, 167, 94, .4);
}
.people-icon svg { width: 30px; height: 30px; }
.people-eyebrow {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sage-deep); margin-bottom: 8px; font-weight: 600;
}
.people p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.people strong { color: var(--ink); }

.closing { max-width: 760px; margin: 74px auto 0; text-align: center; }
.closing p {
  font-family: var(--font-display); font-size: clamp(19px, 2.4vw, 24px);
  font-weight: 400; line-height: 1.55; color: var(--ink-soft);
}
.closing strong { color: var(--ink); font-weight: 600; }

/* ── SLUŽBY ───────────────────────────────────────────────────── */
.services { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.svc {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--cream), var(--white-warm) 30%);
  border: 1px solid var(--line); border-radius: 26px;
  padding: 40px 40px 44px;
  box-shadow: var(--shadow-soft);
  transition: transform .5s var(--ease-out), box-shadow .5s, border-color .5s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.svc-ghost {
  position: absolute; top: -34px; right: 6px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 190px; line-height: 1; color: rgba(198, 167, 94, .1);
  user-select: none; pointer-events: none;
}
.svc-head { display: flex; align-items: center; gap: 20px; margin-bottom: 30px; position: relative; }
.svc-icon {
  flex: none; width: 66px; height: 66px; border-radius: 20px;
  display: grid; place-items: center; color: var(--gold-hot);
  background: linear-gradient(135deg, #283754, var(--navy));
  box-shadow: 0 10px 26px -8px rgba(31, 42, 68, .5), inset 0 1px 0 rgba(250, 246, 238, .1);
}
.svc-icon svg { width: 32px; height: 32px; }
.svc-tag {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 6px;
}
.svc-title { font-family: var(--font-display); font-size: clamp(21px, 2.2vw, 26px); font-weight: 500; line-height: 1.2; }

/* checklist */
.checklist { display: grid; }
.checklist li {
  position: relative; padding: 11px 0 11px 36px;
  font-size: 14.3px; color: var(--ink-soft); line-height: 1.55;
  border-bottom: 1px solid rgba(31, 42, 68, .07);
}
.checklist li:last-child { border-bottom: none; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 13px; width: 20px; height: 20px;
  border-radius: 50%; border: 1.5px solid var(--gold);
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23A8894A' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E") center / 11px no-repeat;
}
.checklist--dark li { color: var(--muted-dark); border-bottom-color: rgba(198, 167, 94, .1); }
.checklist--dark li::before {
  border-color: var(--gold-bright);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C6A75E' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-11'/%3E%3C/svg%3E");
}

/* ── PORTÁL (dark) ────────────────────────────────────────────── */
.portal-grid {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 70px; align-items: center;
  max-width: 1080px; margin: 0 auto;
}
.portal-visual { position: relative; }
.screen-glow {
  position: absolute; inset: -50px;
  background: radial-gradient(circle, rgba(198, 167, 94, .16), transparent 62%);
  pointer-events: none;
}
.screen {
  position: relative;
  background: linear-gradient(165deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
  border: 1px solid rgba(198, 167, 94, .26);
  border-radius: 22px; padding: 0 0 14px;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .65), inset 0 1px 0 rgba(255, 255, 255, .14);
  animation: screen-float 7s ease-in-out infinite;
}
@keyframes screen-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.screen-bar {
  display: flex; align-items: center; gap: 7px;
  padding: 15px 20px; border-bottom: 1px solid rgba(198, 167, 94, .14);
}
.screen-dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(198, 167, 94, .3); }
.screen-dot:first-child { background: rgba(198, 167, 94, .75); }
.screen-cap {
  margin-left: auto; font-family: var(--font-mono); font-size: 10px;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(198, 167, 94, .6);
}
.screen-row {
  display: flex; align-items: center; gap: 14px;
  margin: 10px 14px 0; padding: 13px 16px; border-radius: 13px;
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .06);
  font-size: 13.8px; color: rgba(250, 246, 238, .88);
  transition: background .3s, border-color .3s, transform .3s;
}
.screen-row:hover { background: rgba(198, 167, 94, .1); border-color: rgba(198, 167, 94, .3); transform: translateX(3px); }
.screen-row--head {
  justify-content: space-between; background: rgba(198, 167, 94, .1);
  border-color: rgba(198, 167, 94, .22); font-weight: 600; color: var(--gold-hot);
}
.pill {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
  color: #E6D9B4; background: rgba(198, 167, 94, .12);
  border: 1px solid rgba(198, 167, 94, .35); border-radius: 999px; padding: 5px 12px;
}
.pill i {
  width: 6px; height: 6px; border-radius: 50%; background: #D9C28A;
  animation: pulse 2s infinite;
}
.chip {
  flex: none; width: 32px; height: 32px; border-radius: 10px;
  display: grid; place-items: center; font-size: 14px;
  color: var(--gold-bright); background: rgba(198, 167, 94, .13);
  border: 1px solid rgba(198, 167, 94, .28);
}
.row-txt { flex: 1; }
.row-col { flex: 1; display: grid; gap: 8px; }
.minibar { display: block; height: 4px; border-radius: 4px; background: rgba(255, 255, 255, .12); overflow: hidden; }
.minibar i {
  display: block; height: 100%; width: 48%; border-radius: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-bright));
  animation: minibar-in 1.6s var(--ease-out) both; transform-origin: 0 50%;
}
@keyframes minibar-in { from { transform: scaleX(0); } }
.row-end { color: rgba(198, 167, 94, .55); font-size: 18px; }
.float-chip {
  position: absolute; display: grid; place-items: center;
  border-radius: 16px; font-size: 20px; font-weight: 700;
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(198, 167, 94, .4);
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, .6);
}
.float-chip--a {
  width: 54px; height: 54px; top: -20px; right: -16px;
  color: var(--gold-hot); background: linear-gradient(135deg, #283754, #192138);
  animation: chip-float 5.5s ease-in-out infinite;
}
.float-chip--b {
  width: 46px; height: 46px; bottom: -14px; left: -18px;
  color: var(--gold-bright); background: rgba(19, 26, 44, .8);
  animation: chip-float 6.5s ease-in-out 1s infinite;
}
@keyframes chip-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}
.portal-copy-head {
  font-family: var(--font-display); font-size: 22px; font-weight: 500;
  color: var(--gold-hot); margin-bottom: 18px;
}
.portal-note {
  margin-top: 26px; padding: 20px 24px; border-radius: 16px;
  background: rgba(198, 167, 94, .07); border: 1px solid rgba(198, 167, 94, .2);
  font-size: 14.3px; line-height: 1.7; color: var(--muted-dark);
}
.portal-note strong { color: var(--gold-hot); }

/* ── PROCES ───────────────────────────────────────────────────── */
.steps {
  position: relative; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.steps-line {
  position: absolute; top: 54px; left: 8%; right: 8%; height: 1px; z-index: 0;
  background: repeating-linear-gradient(90deg, var(--line-gold) 0 7px, transparent 7px 15px);
}
.steps-line i {
  position: absolute; inset: 0; background: linear-gradient(90deg, var(--gold-deep), var(--gold));
  transform-origin: 0 50%; transform: scaleX(0); transition: transform 1.8s var(--ease-out) .3s;
}
.steps.in .steps-line i { transform: scaleX(1); }
.step {
  position: relative; z-index: 1;
  background: var(--white-warm); border: 1px solid var(--line); border-radius: 24px;
  padding: 34px 30px 36px; box-shadow: var(--shadow-soft);
  opacity: 0; transform: translateY(26px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out), box-shadow .45s, border-color .45s;
  transition-delay: var(--d, 0s);
}
.steps.in .step { opacity: 1; transform: none; }
.step:hover { box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.step-num {
  position: absolute; top: 18px; right: 24px;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 74px; line-height: 1; color: rgba(198, 167, 94, .18);
  user-select: none;
}
.step-icon {
  width: 60px; height: 60px; border-radius: 18px; margin-bottom: 22px;
  display: grid; place-items: center; color: var(--gold-hot);
  background: linear-gradient(135deg, #283754, var(--navy));
  box-shadow: 0 10px 24px -8px rgba(31, 42, 68, .5), inset 0 1px 0 rgba(250, 246, 238, .1);
}
.step-icon svg { width: 28px; height: 28px; }
.step-title { font-family: var(--font-display); font-size: 22px; font-weight: 500; margin-bottom: 16px; }
.step-list { display: grid; gap: 10px; }
.step-list li {
  position: relative; padding-left: 22px;
  font-size: 13.8px; color: var(--muted); line-height: 1.65;
}
.step-list li::before {
  content: ''; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--gold);
}
.step-honest {
  margin-top: 4px; padding: 14px 16px 14px 38px !important; border-radius: 12px;
  background: rgba(198, 167, 94, .09); border: 1px solid rgba(198, 167, 94, .25);
}
.step-honest::before { left: 16px !important; top: 22px !important; }
.step-honest strong { color: var(--gold-deep); }

/* ── PROČ MY (bento) ──────────────────────────────────────────── */
.why { display: grid; grid-template-columns: repeat(6, 1fr); gap: 18px; }
.why-card {
  grid-column: span 2;
  background: var(--white-warm); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.why-card:nth-child(4) { grid-column: span 2; }
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.why-icon {
  width: 54px; height: 54px; border-radius: 16px; margin-bottom: 20px;
  display: grid; place-items: center; color: var(--gold-deep);
  background: rgba(198, 167, 94, .12); border: 1px solid rgba(198, 167, 94, .25);
}
.why-icon svg { width: 26px; height: 26px; }
.why-card h4 { font-family: var(--font-display); font-size: 19.5px; font-weight: 500; margin-bottom: 10px; }
.why-card p { font-size: 13.8px; color: var(--muted); line-height: 1.65; }
.why-card p strong { color: var(--ink); }

.why-card--hl {
  grid-column: span 4;
  display: flex; align-items: center; gap: 40px;
  background: linear-gradient(120deg, var(--abyss), #283754 85%);
  border-color: rgba(198, 167, 94, .35);
  color: var(--paper); overflow: hidden; position: relative;
}
.why-card--hl::after {
  content: ''; position: absolute; top: -120px; right: -80px; width: 380px; height: 380px;
  border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, .22), transparent 65%);
  pointer-events: none;
}
.why-card--hl:hover { border-color: rgba(198, 167, 94, .6); }
.why-hl-num {
  flex: none;
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: clamp(64px, 8vw, 110px); line-height: 1; letter-spacing: -.02em;
  background: linear-gradient(120deg, var(--gold-hot), var(--gold-bright));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.why-icon--hl { color: var(--gold-bright); background: rgba(198, 167, 94, .12); border-color: rgba(198, 167, 94, .3); }
.why-card--hl h4 { color: var(--gold-hot); }
.why-card--hl p { color: var(--muted-dark); }
.why-card--hl p strong { color: var(--gold-hot); }

.closing--why { margin-top: 70px; }
.tagline {
  margin-top: 22px !important;
  font-family: var(--font-display) !important; font-size: 15px !important;
  letter-spacing: .2em; text-transform: uppercase; font-weight: 600 !important;
  color: var(--gold-deep) !important;
}

/* ── REFERENCE ────────────────────────────────────────────────── */
.refs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.ref {
  position: relative; display: flex; flex-direction: column;
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 44px 30px 28px; box-shadow: var(--shadow-soft);
  transition: transform .45s var(--ease-out), box-shadow .45s, border-color .45s;
}
.ref:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.ref-mark {
  position: absolute; top: 4px; left: 22px;
  font-family: var(--font-display); font-size: 84px; line-height: 1;
  color: rgba(198, 167, 94, .3); user-select: none;
}
.ref-quote {
  font-family: var(--font-display); font-size: 16.5px; font-weight: 400;
  font-style: italic; line-height: 1.6; color: var(--ink-soft);
  flex: 1; margin-bottom: 26px;
}
.ref-footer { display: flex; align-items: center; gap: 16px; border-top: 1px solid var(--line); padding-top: 20px; }
.ref-logo { flex: none; display: grid; place-items: center; }
.ref-logo img { height: 30px; width: auto; max-width: 110px; object-fit: contain; }
.ref-logo-text { font-family: var(--font-display); font-size: 21px; font-weight: 600; color: var(--navy); }
.ref-logo-text .accent { color: var(--gold-deep); font-style: italic; }
.ref-author { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.ref-tag { font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-top: 3px; }
.refs-footnote {
  margin-top: 34px; text-align: center;
  font-size: 12.5px; font-style: italic; color: var(--muted);
}

/* ── PORADNA BAND ─────────────────────────────────────────────── */
.poradna {
  background: linear-gradient(120deg, var(--paper-2), var(--paper));
  border-block: 1px solid var(--line); padding: 56px 0;
}
.poradna-row { display: flex; align-items: center; justify-content: space-between; gap: 34px; flex-wrap: wrap; }
.poradna-copy .eyebrow { margin-bottom: 10px; }
.poradna-copy h3 {
  font-family: var(--font-display); font-size: clamp(26px, 3.4vw, 38px); font-weight: 400; line-height: 1.1;
}
.poradna-copy h3 em {
  font-style: italic;
  background: linear-gradient(115deg, var(--gold-deep), var(--gold));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.poradna-copy p { margin-top: 8px; font-size: 15px; color: var(--muted); }

/* ── VEDENÍ (dark) ────────────────────────────────────────────── */
.sec--team { background: linear-gradient(180deg, var(--abyss) 0%, var(--abyss-2) 100%); }
.sub-label {
  display: flex; align-items: center; gap: 14px; margin: 60px 0 30px;
  font-family: var(--font-mono); font-size: 11px; letter-spacing: .24em;
  text-transform: uppercase; color: var(--muted-dark);
}
.sub-label .bar { width: 44px; height: 2px; background: rgba(250, 246, 238, .3); border-radius: 2px; }
.sub-label--gold { color: var(--gold-bright); margin-top: 92px; }
.sub-label--gold .bar { background: var(--gold-bright); }

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.member {
  position: relative;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(250, 246, 238, .1);
  border-radius: 22px; padding: 24px 24px 26px;
  transition: transform .45s var(--ease-out), border-color .45s, background .45s, box-shadow .45s;
}
.member:hover {
  transform: translateY(-6px);
  border-color: rgba(198, 167, 94, .4); background: rgba(198, 167, 94, .05);
  box-shadow: 0 30px 60px -24px rgba(0, 0, 0, .6);
}
.member--hl { border-color: rgba(198, 167, 94, .35); background: rgba(198, 167, 94, .06); }
.member-photo {
  position: relative; margin-bottom: 20px; border-radius: 16px; overflow: hidden;
  aspect-ratio: 1 / 1;
}
.member-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(.92); transition: transform .6s var(--ease-out), filter .6s;
}
.member:hover .member-photo img { transform: scale(1.045); filter: saturate(1.05); }
.member-ping {
  position: absolute; right: 12px; bottom: 12px; width: 11px; height: 11px;
  border-radius: 50%; background: #D9C28A; border: 2px solid rgba(19, 26, 44, .85);
  box-shadow: 0 0 0 0 rgba(217, 194, 138, .55); animation: pulse 2.6s infinite;
}
.member-role {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 7px; font-weight: 500;
}
.member-name { font-family: var(--font-display); font-size: 21px; font-weight: 500; color: var(--paper); margin-bottom: 9px; }
.member-bio { font-size: 13px; line-height: 1.6; color: var(--muted-dark); }
.member-bio strong { color: var(--gold-hot); font-weight: 600; }
.member-tag {
  display: inline-block; margin-top: 16px;
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .18em; text-transform: uppercase;
  color: var(--muted-dark); border: 1px solid rgba(250, 246, 238, .18);
  border-radius: 999px; padding: 4px 12px;
}
.architect-badge {
  position: absolute; top: 14px; right: 14px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-mono); font-size: 9px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--gold-hot); background: rgba(19, 26, 44, .88);
  border: 1px solid rgba(198, 167, 94, .45);
  border-radius: 999px; padding: 5px 11px;
  box-shadow: 0 8px 20px -6px rgba(0, 0, 0, .5);
}

/* Jarvis hero */
.jarvis {
  display: grid; grid-template-columns: 400px 1fr; gap: 56px; align-items: center;
  background: linear-gradient(135deg, rgba(198, 167, 94, .07), rgba(255, 255, 255, .025) 55%);
  border: 1px solid rgba(198, 167, 94, .25); border-radius: 30px;
  padding: 48px 54px; overflow: hidden; position: relative;
}
.jarvis::before {
  content: ''; position: absolute; top: -180px; left: -140px; width: 520px; height: 520px;
  border-radius: 50%; background: radial-gradient(circle, rgba(198, 167, 94, .14), transparent 65%);
  pointer-events: none;
}
.jarvis-visual { position: relative; }
.jarvis-visual canvas { width: 100%; height: 360px; display: block; }
.jarvis-readout {
  display: flex; justify-content: space-between; margin-top: 12px;
  font-size: 10px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250, 246, 238, .5);
}
.jarvis-readout .jr-live { color: var(--gold-hot); }
.jn-r2-node { animation: jn-node 3.6s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes jn-node {
  0%, 100% { opacity: .55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.5); }
}
.jn-ping { animation: jn-ping 3.2s var(--ease-out) infinite; transform-box: fill-box; transform-origin: center; }
@keyframes jn-ping {
  0% { transform: scale(1); opacity: .8; }
  80%, 100% { transform: scale(3.1); opacity: 0; }
}
.jn-core-inner { animation: jn-core 4.4s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }
@keyframes jn-core {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.18); }
}
.jn-edges-active { animation: jn-edges 4.8s ease-in-out infinite; }
@keyframes jn-edges {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}
.jarvis-name {
  font-family: var(--font-display); font-size: clamp(34px, 4vw, 48px); font-weight: 400;
  color: var(--paper); margin: 4px 0 14px;
}
.jarvis-copy > p { font-size: 15px; line-height: 1.75; color: var(--muted-dark); max-width: 560px; }
.jarvis-tags { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.jarvis-tag {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(198, 167, 94, .1);
  border: 1px solid rgba(198, 167, 94, .3); border-radius: 999px; padding: 6px 14px;
}
.jarvis-meta { margin-top: 20px; font-size: 13px; color: var(--muted-dark); }
.status-live { font-style: normal; color: #D9C28A; display: inline-flex; align-items: center; gap: 7px; margin-left: 6px; }
.status-live i {
  width: 7px; height: 7px; border-radius: 50%; background: #D9C28A;
  box-shadow: 0 0 0 0 rgba(217, 194, 138, .5); animation: pulse 2.2s infinite;
}
.jarvis-architect {
  display: inline-flex; align-items: center; gap: 9px; margin-top: 18px;
  font-size: 12.5px; color: var(--muted-dark);
  border: 1px solid rgba(198, 167, 94, .22); border-radius: 999px; padding: 8px 16px;
  color: var(--gold-bright);
}
.jarvis-architect strong { color: var(--gold-hot); }

/* agenti */
.agents { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 26px; }
.agent {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 14px;
  background: rgba(255, 255, 255, .035); border: 1px solid rgba(250, 246, 238, .09);
  border-radius: 16px; padding: 16px 18px;
  transition: border-color .35s, background .35s, transform .35s var(--ease-out);
}
.agent:hover { border-color: rgba(198, 167, 94, .38); background: rgba(198, 167, 94, .06); transform: translateY(-3px); }
.agent-icon {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  font-size: 20px; background: rgba(198, 167, 94, .1); border: 1px solid rgba(198, 167, 94, .2);
  grid-row: span 2;
}
.agent-name { font-family: var(--font-display); font-size: 16.5px; font-weight: 500; color: var(--paper); }
.agent-desc { grid-column: 2 / 4; font-size: 12px; color: var(--muted-dark); line-height: 1.5; }
.agent-time {
  font-family: var(--font-mono); font-size: 9.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-bright); background: rgba(198, 167, 94, .1);
  border: 1px solid rgba(198, 167, 94, .22); border-radius: 999px; padding: 4px 10px;
  white-space: nowrap; justify-self: end;
}

/* ── KONTAKT ──────────────────────────────────────────────────── */
.contact {
  position: relative; padding: 130px 0 120px; overflow: hidden;
  background: linear-gradient(180deg, var(--paper), var(--cream));
  text-align: center;
}
.contact-sun {
  position: absolute; left: 50%; bottom: -420px; transform: translateX(-50%);
  width: 900px; height: 900px; border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(198, 167, 94, .24), transparent 62%);
}
.contact .sec-head { margin-bottom: 46px; }
.contact-body { margin-top: 16px; font-size: 15px; color: var(--muted); }
.contact-card {
  position: relative; max-width: 720px; margin: 0 auto;
  display: flex; align-items: center; gap: 34px; text-align: left;
  background: var(--white-warm); border: 1px solid var(--line-gold); border-radius: 26px;
  padding: 36px 42px;
  box-shadow: 0 3px 6px rgba(31, 42, 68, .05), 0 34px 80px -24px rgba(168, 137, 74, .35);
}
.contact-avatar {
  flex: none; width: 116px; height: 116px; border-radius: 50%; overflow: hidden;
  border: 3px solid var(--gold-bright);
  box-shadow: 0 0 0 6px rgba(198, 167, 94, .16), 0 16px 36px -12px rgba(168, 137, 74, .5);
}
.contact-avatar img { width: 100%; height: 100%; object-fit: cover; }
.contact-eyebrow {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .2em;
  text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 8px;
}
.contact-name { font-family: var(--font-display); font-size: 29px; font-weight: 500; line-height: 1.1; }
.contact-role { margin-top: 5px; font-size: 13.5px; color: var(--muted); }
.contact-channels { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.channel {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 13.5px; font-weight: 600; color: var(--ink);
  background: rgba(198, 167, 94, .1); border: 1px solid rgba(198, 167, 94, .3);
  border-radius: 999px; padding: 10px 18px;
  transition: background .3s, color .3s, transform .3s var(--ease-out), box-shadow .3s;
}
.channel svg { width: 16px; height: 16px; color: var(--gold-deep); transition: color .3s; }
.channel:hover {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
  transform: translateY(-2px); box-shadow: 0 12px 26px -10px rgba(31, 42, 68, .5);
}
.channel:hover svg { color: var(--gold-bright); }
.contact-outro { max-width: 680px; margin: 40px auto 0; font-size: 14.5px; line-height: 1.75; color: var(--muted); }
.contact-outro strong { color: var(--ink); }

/* ── FOOTER ───────────────────────────────────────────────────── */
.footer { background: var(--abyss-2); color: var(--muted-dark); padding: 74px 0 34px; }
.footer-grid { display: grid; grid-template-columns: 2.1fr 1fr 1fr 1fr; gap: 44px; }
.footer-logo { height: 34px; width: auto; margin-bottom: 20px; }
.footer-tag { font-size: 13px; line-height: 1.7; max-width: 420px; }
.footer-col h5 {
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--gold-bright); margin-bottom: 16px; font-weight: 500;
}
.footer-col li { font-size: 13.5px; padding: 4px 0; }
.footer-bot {
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  margin-top: 56px; padding-top: 24px; border-top: 1px solid rgba(250, 246, 238, .1);
  font-family: var(--font-mono); font-size: 10.5px; letter-spacing: .1em; color: rgba(250, 246, 238, .45);
}
.footer-legal { display: flex; gap: 10px; }
.footer-legal a:hover { color: var(--gold-bright); }

/* ── RESPONSIVE ───────────────────────────────────────────────── */
@media (max-width: 1120px) {
  .nav-links { display: none; }
  .burger {
    display: grid; gap: 6px; place-content: center;
    width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px;
    background: transparent; cursor: pointer;
  }
  .burger span { display: block; width: 20px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .3s; }
  .burger.open span:first-child { transform: translateY(4px) rotate(45deg); }
  .burger.open span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .lang { display: none; }
  .portal-grid { grid-template-columns: 1fr; gap: 66px; }
  .jarvis { grid-template-columns: 1fr; gap: 30px; padding: 40px 34px; }
  .jarvis-visual { max-width: 340px; margin-inline: auto; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .sec { padding: 90px 0; }
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .steps-line { display: none; }
  .why { grid-template-columns: 1fr 1fr; }
  .why-card, .why-card:nth-child(4) { grid-column: span 1; }
  .why-card--hl { grid-column: span 2; flex-direction: column; align-items: flex-start; gap: 16px; }
  .refs { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .agents { grid-template-columns: repeat(2, 1fr); }
  .flow { grid-template-columns: 1fr; max-width: 420px; gap: 44px; }
  .flow-line { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 0 26px; }
  .stat { padding-top: 22px; }
  .stat:nth-child(odd) { padding-left: 0; border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid var(--line); margin-top: 22px; }
}

@media (max-width: 620px) {
  .container { width: calc(100% - 36px); }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .pillars { grid-template-columns: 1fr; }
  .people { flex-direction: column; gap: 18px; padding: 26px; }
  .quoteband { padding-left: 24px; }
  .svc { padding: 30px 24px 34px; }
  .svc-ghost { font-size: 130px; }
  .agents { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-card { flex-direction: column; text-align: center; padding: 32px 26px; }
  .contact-channels { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bot { justify-content: center; text-align: center; }
  .poradna-row { justify-content: center; text-align: center; }
  .hero-scroll { display: none; }
  .demo-chip { left: 12px; bottom: 12px; }
}

/* ── REDUCED MOTION ───────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .flow-step, .steps .step { opacity: 1 !important; transform: none !important; }
  .flow-line i, .steps-line i { transform: scaleX(1) !important; }
}

/* ══════════ ČASTÉ DOTAZY (GEO) ══════════ */
.sec--faq { background: var(--paper); }
.faq-list { max-width: 860px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .35s var(--ease-out), box-shadow .35s var(--ease-out);
}
.faq-item[open] { border-color: var(--line-gold); box-shadow: var(--shadow-soft); }
.faq-item:hover { border-color: var(--line-gold); }

.faq-item summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 20px;
  padding: 22px 26px;
  font-family: var(--font-body); font-size: 16px; font-weight: 600; line-height: 1.5;
  color: var(--ink); cursor: pointer; list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: -3px; }

.faq-mark {
  position: relative; flex: 0 0 18px; width: 18px; height: 18px; margin-top: 3px;
}
.faq-mark::before, .faq-mark::after {
  content: ''; position: absolute; left: 50%; top: 50%;
  background: var(--gold-deep); border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.faq-mark::before { width: 14px; height: 1.5px; }
.faq-mark::after  { width: 1.5px; height: 14px; }
.faq-item[open] .faq-mark::after { opacity: 0; transform: translate(-50%, -50%) rotate(90deg); }

.faq-answer { padding: 0 26px 24px; }
.faq-answer p {
  margin: 0 0 12px; font-size: 15px; line-height: 1.78; color: var(--ink-soft);
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer strong { color: var(--ink); font-weight: 600; }
.faq-answer ul, .faq-answer ol { margin: 0 0 12px; padding-left: 20px; }
.faq-answer li { font-size: 15px; line-height: 1.72; color: var(--ink-soft); margin-bottom: 5px; }
.faq-answer a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }

.faq-more {
  max-width: 860px; margin: 38px auto 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 22px; flex-wrap: wrap;
}
.faq-more p { margin: 0; font-size: 15px; color: var(--muted); }

@media (max-width: 640px) {
  .faq-item summary { padding: 18px 20px; font-size: 15px; gap: 14px; }
  .faq-answer { padding: 0 20px 20px; }
  .faq-more { flex-direction: column; align-items: flex-start; gap: 16px; }
}

.foot-sub { display: block; margin-top: 2px; font-size: 11.5px; line-height: 1.5; letter-spacing: .01em; color: var(--muted-dark); opacity: .72; }

/* ── navigace: delší jazykové mutace (UA/EN) se nesmí lámat na dva řádky ── */
.nav-links a, .nav-cta, .nav-right .lang a { white-space: nowrap; }
html[lang="uk"] .nav-row { gap: 14px; }
html[lang="uk"] .nav-links { gap: 0; }
html[lang="uk"] .nav-links a { padding: 9px 7px; font-size: 12.5px; }
html[lang="uk"] .nav-right { gap: 10px; }
html[lang="en"] .nav-links a { padding: 9px 10px; }
@media (max-width: 1180px) {
  .nav-links a { padding: 9px 8px; font-size: 12.5px; }
  .nav-row { gap: 16px; }
}


/* ═══════════════════════════════════════════════════════════════════════
   OBRAZOVÁ VRSTVA (v7)
   Fotografie a schémata místo souvislého textu — vzor: obrazová vrstva
   webu Elvian Projects (v5/v6). Fotky pocházejí z různých CC0 zdrojů,
   pohromadě je drží jednotný navy duotone (prep-img.py) a gradientový
   přechod do navy na hlavičkách karet. Bez těchto dvou triků by stránka
   působila jako koláž stock fotek.
   ═══════════════════════════════════════════════════════════════════════ */

/* ── editorial split: vysoká fotka + sloupec obsahu ──────────────────── */
.split { display: grid; grid-template-columns: .8fr 1fr; gap: 54px; align-items: stretch; }
.split--rev { grid-template-columns: 1fr .8fr; }
.split--rev .split-photo { order: 2; }
.split-photo {
  position: relative; border-radius: var(--radius); overflow: hidden;
  min-height: 430px; box-shadow: var(--shadow-soft); align-self: stretch;
}
.split-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-photo::after {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(31,42,68,0) 40%, rgba(31,42,68,.82) 100%);
}
.split-cap {
  position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 2;
  color: var(--paper); font-size: 12px; letter-spacing: .16em; text-transform: uppercase;
}
.split-cap i { display: block; width: 34px; height: 2px; background: var(--gold); margin-bottom: 13px; font-style: normal; }
.split-col { display: flex; flex-direction: column; gap: 16px; }
/* čtyři pilíře uvnitř splitu — 4 sloupce by se do poloviny šířky nevešly */
.pillars--split { grid-template-columns: repeat(2, 1fr); }
/* řádky se roztáhnou na výšku fotky vedle — jinak zůstane pod dlaždicemi
   prázdné místo a split vypadá rozpadle */
/* karta se roztáhne (pozadí vyplní řádek), text ale zůstává pod nadpisem —
   margin-top:auto by ho odsunul ke dnu a nadpis by visel ve vzduchu */
.pillars--split .pillar { align-self: stretch; }
.pillars--split .pillar-top { margin-bottom: 26px; }
@media (max-width: 620px) { .pillars--split { grid-template-columns: 1fr; } }

/* ── celoplošný fotopás jako předěl mezi sekcemi ─────────────────────── */
.photoband { position: relative; height: 320px; overflow: hidden; }
.photoband img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photoband::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(31,42,68,.88) 0%, rgba(31,42,68,.42) 52%, rgba(31,42,68,.72) 100%);
}
.photoband-in {
  position: absolute; inset: 0; z-index: 2; display: flex; align-items: center;
}
.photoband-txt { max-width: 640px; color: var(--paper); }
.photoband-txt .eyebrow { color: var(--gold-hot); justify-content: flex-start; }
.photoband-txt h3 {
  font-family: var(--font-display); font-weight: 500; margin-top: 10px;
  font-size: clamp(24px, 3.2vw, 36px); line-height: 1.2;
}
.photoband-txt h3 em { font-style: italic; color: var(--gold-hot); }
.photoband-txt p { margin-top: 12px; font-size: 15px; line-height: 1.7; color: rgba(250,246,238,.78); }

/* ── karty služeb s fotohlavičkou ────────────────────────────────────── */
.grouplabel {
  display: flex; align-items: center; gap: 16px; margin: 0 0 26px;
  font-size: 12px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep);
}
.grouplabel::after { content: ''; flex: 1; height: 1px; background: var(--line-gold); }
.grouplabel + .grouplabel, .svcgrid + .grouplabel { margin-top: 64px; }

.svcgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svcard {
  background: var(--white-warm); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s;
}
.svcard:hover { transform: translateY(-6px); box-shadow: var(--shadow-lift); border-color: var(--line-gold); }
.svcard-media { position: relative; aspect-ratio: 45 / 22; overflow: hidden; }
.svcard-media img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 1.1s var(--ease-out);
}
.svcard:hover .svcard-media img { transform: scale(1.045); }
.svcard-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(175deg, rgba(31,42,68,.46) 0%, rgba(31,42,68,.28) 26%, rgba(31,42,68,.66) 64%, rgba(31,42,68,.94) 100%);
}
.svcard-num {
  position: absolute; top: 14px; left: 18px; z-index: 2;
  font-size: 12px; letter-spacing: .18em; color: var(--gold-hot); font-weight: 600;
  /* fotky mají různě světlý horní okraj (obloha vs. interiér) — bez stínu
     číslo na některých kartách zaniklo */
  text-shadow: 0 1px 6px rgba(31, 42, 68, .85), 0 0 2px rgba(31, 42, 68, .6);
}
.svcard-ico {
  position: absolute; left: 18px; bottom: 16px; z-index: 2;
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(250,246,238,.1); border: 1px solid rgba(198,167,94,.4);
  color: var(--gold-hot); backdrop-filter: none;
}
.svcard-ico svg { width: 22px; height: 22px; }
.svcard-title {
  position: absolute; left: 74px; right: 18px; bottom: 18px; z-index: 2;
  font-family: var(--font-display); font-size: 19px; font-weight: 500;
  color: var(--paper); line-height: 1.25;
}
.svcard-body { padding: 22px 24px 26px; flex: 1; }
.svcard-body .checklist li { font-size: 13.6px; }

/* ── konzole „mzdový měsíc" ──────────────────────────────────────────── */
.sec--dusk { background: var(--paper); position: relative; }
.sec--dusk::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(760px 400px at 12% 0%, rgba(226,124,66,.10), transparent 68%),
    radial-gradient(700px 420px at 88% 100%, rgba(128,94,214,.10), transparent 68%);
}
.console {
  position: relative; background: var(--abyss); border-radius: 24px; overflow: hidden;
  border: 1px solid rgba(198,167,94,.2); box-shadow: var(--shadow-lift); color: var(--paper);
}
.console-bar {
  display: flex; align-items: center; gap: 14px; padding: 15px 24px;
  border-bottom: 1px solid rgba(198,167,94,.18); background: rgba(250,246,238,.03);
  font-size: 11.5px; letter-spacing: .18em; text-transform: uppercase; color: rgba(250,246,238,.62);
}
.console-bar b { color: var(--gold-hot); font-weight: 600; letter-spacing: .18em; }
.console-live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; color: var(--gold-hot); }
.console-live i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--gold);
  animation: cyPulse 2.4s var(--ease-out) infinite;
}
@keyframes cyPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* Dva pruhy odpovědnosti nad tokem měsíce. Záměrně BEZ konkrétních dnů
   v kalendáři — stránka nikde negarantuje zákonné termíny a schéma
   s daty by slibovalo přesnost, kterou text netvrdí. */
.tracks { padding: 24px 24px 6px; }
.track-name {
  font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(250,246,238,.5); margin-bottom: 9px;
}
.track-name--us { color: var(--gold-hot); margin-top: 18px; }
.track-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 5px; }
.track-row i {
  height: 26px; border-radius: 6px; font-style: normal;
  background: rgba(250,246,238,.055); border: 1px solid transparent;
}
.track-row i.you { background: rgba(250,246,238,.2); border-color: rgba(250,246,238,.3); }
.track-row i.us { background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.track-note { padding: 16px 24px 20px; font-size: 12.5px; color: rgba(250,246,238,.55); line-height: 1.6; }

.cyflow {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 0;
  border-top: 1px solid rgba(198,167,94,.18); position: relative;
}
.cyflow::before {
  content: ''; position: absolute; left: 6%; right: 6%; top: 52px; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(198,167,94,.5) 12%, rgba(198,167,94,.5) 88%, transparent);
}
.cystep { padding: 26px 16px 30px; text-align: center; position: relative; }
.cystep + .cystep::after {
  content: ''; position: absolute; left: 0; top: 26px; bottom: 26px; width: 1px;
  background: rgba(250,246,238,.07);
}
.cystep-dot {
  width: 15px; height: 15px; border-radius: 50%; margin: 0 auto 18px; position: relative; z-index: 2;
  background: var(--abyss); border: 2px solid var(--gold); box-shadow: 0 0 0 5px var(--abyss);
}
.cystep-dot::after {
  content: ''; position: absolute; inset: 2px; border-radius: 50%; background: var(--gold);
  opacity: 0; animation: cyStep 7.2s var(--ease-out) infinite;
}
.cystep:nth-child(1) .cystep-dot::after { animation-delay: 0s; }
.cystep:nth-child(2) .cystep-dot::after { animation-delay: 1.2s; }
.cystep:nth-child(3) .cystep-dot::after { animation-delay: 2.4s; }
.cystep:nth-child(4) .cystep-dot::after { animation-delay: 3.6s; }
.cystep:nth-child(5) .cystep-dot::after { animation-delay: 4.8s; }
.cystep:nth-child(6) .cystep-dot::after { animation-delay: 6s; }
@keyframes cyStep { 0%, 16%, 100% { opacity: 0; } 4%, 12% { opacity: 1; } }
.cystep-n { font-size: 10.5px; letter-spacing: .2em; color: rgba(250,246,238,.38); margin-bottom: 7px; }
.cystep h4 { font-family: var(--font-display); font-size: 16.5px; font-weight: 500; margin-bottom: 8px; }
.cystep p { font-size: 12.4px; line-height: 1.6; color: rgba(250,246,238,.6); }

/* ── fotohlavička u kroků postupu ────────────────────────────────────── */
/* Fotka sedí na horní hraně karty — záporný margin ruší padding .step
   (34px/30px) a rádius kopíruje kartu (24px, ne globální --radius 20px). */
.step-media {
  position: relative; margin: -34px -30px 26px; aspect-ratio: 45 / 26; overflow: hidden;
  border-radius: 24px 24px 0 0;
}
/* Spojnice kroků vede v 54 px — přes fotky by se táhla napříč obrázky. */
.steps--media .steps-line { display: none; }
/* Ghost numerál leží nově na tmavé fotce, potřebuje víc jasu. */
.steps--media .step-num { color: rgba(250, 246, 238, .34); }
.step-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.step-media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(31,42,68,.25) 0%, rgba(31,42,68,.5) 60%, rgba(250,246,238,.94) 100%);
}

/* ── pás průběhu přechodu ────────────────────────────────────────────── */
.migbar {
  margin-top: 56px; display: grid; grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line); border-radius: 16px; overflow: hidden; background: var(--white-warm);
}
.migbar-seg { padding: 20px 24px; position: relative; }
.migbar-seg + .migbar-seg { border-left: 1px solid var(--line); }
.migbar-seg::before { content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: var(--line-gold); }
.migbar-seg:nth-child(1)::before { background: rgba(198,167,94,.45); }
.migbar-seg:nth-child(2)::before { background: rgba(198,167,94,.72); }
.migbar-seg:nth-child(3)::before { background: var(--gold); }
.migbar-wk { font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.migbar-seg strong { display: block; margin-top: 8px; font-size: 15px; color: var(--ink); font-weight: 600; }
.migbar-seg p { margin-top: 6px; font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ── graf úspory ─────────────────────────────────────────────────────── */
.savings {
  margin-top: 34px; background: var(--white-warm); border: 1px solid var(--line-gold);
  border-radius: var(--radius); padding: 30px 32px 26px; box-shadow: var(--shadow-soft);
}
.savings-h { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); }
.savings-row { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.savings-lbl { width: 132px; flex: none; font-size: 13px; color: var(--ink-soft); }
.savings-track { flex: 1; height: 34px; background: rgba(31,42,68,.06); border-radius: 8px; overflow: hidden; }
.savings-fill { height: 100%; border-radius: 8px; transform-origin: left; }
.savings-fill--a { width: 100%; background: linear-gradient(90deg, rgba(31,42,68,.34), rgba(31,42,68,.2)); }
.savings-fill--b { width: 70%; background: linear-gradient(90deg, var(--gold-deep), var(--gold)); }
.savings-val { width: 74px; flex: none; text-align: right; font-family: var(--font-display); font-size: 20px; }
.savings-note { margin-top: 18px; font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── JMHZ: z 25 formulářů jedno hlášení ──────────────────────────────── */
.jmhz {
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px;
  max-width: 780px; margin: 0 auto 56px; padding: 26px 30px;
  background: var(--white-warm); border: 1px solid var(--line); border-radius: var(--radius);
}
.jmhz-side { text-align: center; }
.jmhz-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; max-width: 150px; margin: 0 auto 14px; }
.jmhz-grid i { aspect-ratio: 1 / 1.32; height: auto; }
.jmhz-grid i { height: 13px; border-radius: 2px; background: rgba(31,42,68,.3); }
.jmhz-one {
  height: 58px; width: 84px; margin: 0 auto 14px; border-radius: 6px;
  background: linear-gradient(160deg, var(--gold), var(--gold-deep));
  box-shadow: 0 6px 18px -6px rgba(198,167,94,.9);
}
.jmhz-lbl { font-size: 12.5px; color: var(--muted); }
.jmhz-lbl b { display: block; font-family: var(--font-display); font-size: 18px; color: var(--ink); font-weight: 500; }
.jmhz-arrow { color: var(--gold); font-size: 26px; }

@media (max-width: 1120px) {
  .svcgrid { grid-template-columns: repeat(2, 1fr); }
  .cyflow { grid-template-columns: repeat(3, 1fr); }
  .cyflow::before { display: none; }
  .cystep:nth-child(4)::after, .cystep:nth-child(1)::after { display: none; }
}
@media (max-width: 900px) {
  .split, .split--rev { grid-template-columns: 1fr; gap: 30px; }
  .split--rev .split-photo { order: 0; }
  .split-photo { min-height: 380px; }
  .migbar { grid-template-columns: 1fr; }
  .migbar-seg + .migbar-seg { border-left: 0; border-top: 1px solid var(--line); }
  .photoband { height: 280px; }
}
@media (max-width: 620px) {
  .svcgrid { grid-template-columns: 1fr; }
  .cyflow { grid-template-columns: 1fr; }
  .cystep + .cystep::after { display: none; }
  .cystep { border-top: 1px solid rgba(250,246,238,.07); }
  .jmhz { grid-template-columns: 1fr; gap: 18px; }
  .jmhz-arrow { transform: rotate(90deg); }
  .savings-lbl { width: 92px; font-size: 12px; }
  .step-media { margin: -24px -22px 20px; }
}

/* Čtyři důvody uvnitř editorial splitu — původní 6sloupcová mřížka
   (span 2 + zvýrazněná karta span 4) se do poloviny šířky nevejde. */
.why--col { grid-template-columns: repeat(2, 1fr); }
.why--col .why-card { grid-column: span 1; }
.why--col .why-icon { width: 46px; height: 46px; border-radius: 13px; margin-bottom: 15px; }
.why--col .why-icon svg { width: 22px; height: 22px; }
.why--col .why-card { padding: 24px 22px; }
@media (max-width: 620px) { .why--col { grid-template-columns: 1fr; } }

/* ══════════ v8 — rozstřelení zadní části stránky ══════════ */

/* Pět důvodů — beige pás dostal zlaté hairliny nahoře i dole */
.sec--paper { border-top: 1px solid var(--line-gold); border-bottom: 1px solid var(--line-gold); }

/* Reference na navy — krémové karty na tmavém pásu */
.sec--navy { background: var(--navy); }
.sec--navy .sec-title { color: var(--paper); }
.sec--navy .sec-title em { color: var(--gold-hot); }
.sec--navy .sec-lead { color: var(--muted-dark); }
.sec--navy .refs-footnote { color: rgba(250, 246, 238, .52); }
.sec--navy .ref { border-color: rgba(250, 246, 238, .1); }
.sec--navy .ref:hover { border-color: rgba(198, 167, 94, .55); }

/* Časté dotazy — číslované chipy, akcent otevřené otázky, watermark */
.faq-list { counter-reset: faq; }
.faq-item summary::before {
  counter-increment: faq; content: counter(faq, decimal-leading-zero);
  flex: none; margin-top: 2px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; color: var(--gold-deep);
  border: 1px solid var(--line-gold); border-radius: 999px;
  padding: 4px 9px; line-height: 1;
  transition: background .3s var(--ease-out), color .3s, border-color .3s;
}
.faq-item summary { justify-content: flex-start; }
.faq-item summary .faq-mark { margin-left: auto; }
.faq-item[open] summary::before { background: var(--gold); border-color: var(--gold); color: var(--white-warm); }
.faq-item[open] { box-shadow: inset 3px 0 0 var(--gold), var(--shadow-soft); }
.faq-answer { padding-left: 68px; }

.sec--faq { position: relative; overflow: hidden; }
.sec--faq::before {
  content: '?'; position: absolute; top: 26px; right: 3%;
  font-family: var(--font-display); font-style: italic; font-weight: 600;
  font-size: clamp(220px, 24vw, 360px); line-height: 1;
  color: rgba(198, 167, 94, .12); pointer-events: none;
}
.sec--faq .container { position: relative; }

/* JMHZ schéma — výraznější karta */
.jmhz { max-width: 860px; padding: 34px 38px; border-color: var(--line-gold); box-shadow: var(--shadow-soft); }

@media (max-width: 700px) {
  .faq-answer { padding-left: 26px; }
  .sec--faq::before { font-size: 180px; opacity: .7; }
}
