/* ==========================================================================
   OmniPrint — design systém
   Paleta: teplý papír + sytý inkoust + spektrum akcentů (viz :root)
   ========================================================================== */

:root {
  /* Základ */
  --paper: #FCFBF9;
  --paper-tint: #F6F4F0;
  --ink: #14141C;
  --ink-2: #4B4B5A;
  --ink-3: #6F6F7C;
  --line: rgba(20, 20, 28, 0.09);

  /* Spektrum akcentů — odstíny s kontrastem ≥ 4,5:1 na světlém pozadí (texty, ikony);
     syté dekorativní gradienty používají vlastní hex hodnoty přímo v komponentách */
  --violet: #6C3BF4;
  --magenta: #DB2777;
  --pink: #E11D48;
  --coral: #C2410C;
  --amber: #B45309;
  --lime: #4D7C0F;
  --teal: #0F766E;
  --blue: #2563EB;
  --sky: #0284C7;

  /* Dekorativní gradient (velké titulky, linky) a CTA gradient (bílý text ≥ 4,5:1) */
  --grad-brand: linear-gradient(100deg, #6C3BF4 0%, #E13A9D 42%, #FF5A3C 78%, #FFAA1F 100%);
  --grad-cta: linear-gradient(100deg, #6C3BF4 0%, #C02689 55%, #E11D48 100%);

  /* Typografie */
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  /* Geometrie */
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --container: 1180px;
  --header-h: 68px;

  --shadow-s: 0 1px 2px rgba(20, 20, 28, 0.05), 0 4px 12px rgba(20, 20, 28, 0.05);
  --shadow-m: 0 2px 6px rgba(20, 20, 28, 0.06), 0 12px 32px rgba(20, 20, 28, 0.10);
  --shadow-l: 0 8px 24px rgba(20, 20, 28, 0.12), 0 32px 80px rgba(20, 20, 28, 0.18);

  color-scheme: light;
}

/* ---------- Reset a základ ---------- */
*, *::before, *::after { box-sizing: border-box; }

/* Atribut hidden musí vyhrát nad display:flex u overlay prvků */
[hidden] { display: none !important; }

/* Ceník je dočasně skrytý — doplní se později. Znovu zobrazení: smazat toto pravidlo. */
.pricing { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4 { margin: 0 0 0.5em; line-height: 1.15; letter-spacing: -0.022em; font-weight: 700; }
p { margin: 0 0 1em; }
img, svg { max-width: 100%; }
button { font: inherit; color: inherit; }

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
  border-radius: 4px;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}
.container--narrow { max-width: 820px; }

.skip-link {
  position: absolute;
  left: 1rem; top: -3rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius-s);
  text-decoration: none;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.6rem;
  border: none;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  color: #fff;
  background: var(--grad-cta);
  background-size: 150% 100%;
  background-position: 0% 0%;
  box-shadow: 0 4px 16px rgba(108, 59, 244, 0.28);
}
.btn--primary:hover { background-position: 100% 0%; box-shadow: 0 6px 22px rgba(225, 58, 157, 0.32); }

.btn--outline {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1.5px var(--ink);
}
.btn--outline:hover { background: var(--ink); color: #fff; }

.btn--ghost {
  background: rgba(20, 20, 28, 0.05);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(20, 20, 28, 0.1); }

.btn--light {
  background: #fff;
  color: var(--ink);
}
.btn--light:hover { box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35); }

/* Skleněné tlačítko pro barevná / tmavá pozadí */
.btn--glass {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, 0.65);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.24); }

.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.92rem; }
.btn--lg { padding: 0.95rem 2rem; font-size: 1.06rem; }

.link-inline {
  background: none;
  border: none;
  padding: 0;
  color: var(--violet);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.link-inline:hover { color: var(--magenta); }

/* ---------- Eyebrow / hlavičky sekcí ---------- */
.eyebrow {
  --a: var(--violet);
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--a);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--a);
}
.eyebrow--hero { color: var(--ink-2); }
.eyebrow--hero::before { background: var(--grad-brand); width: 30px; }

.section { padding: clamp(5rem, 10vw, 8.75rem) 0; }
.section--tinted { background: var(--paper-tint); }

.section-head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-head h2 { font-size: clamp(2.1rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -0.03em; }
.section-head h2 em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-lead { font-size: 1.18rem; color: var(--ink-2); margin: 0; }

/* Editorial dvousloupcová hlavička sekce na širších displejích */
@media (min-width: 900px) {
  .section-head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 1rem 4.5rem;
    align-items: end;
    max-width: none;
  }
  .section-head .eyebrow { grid-column: 1 / -1; margin-bottom: 0.2rem; }
  .section-head h2 { margin: 0; }
  .section-head .section-lead { margin: 0 0 0.45rem; }
}

.section-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.8rem;
  margin-top: clamp(2rem, 4vw, 3rem);
}
.section-cta--center { justify-content: center; }

/* ---------- Hlavička webu ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 249, 0.82);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 2px 20px rgba(20, 20, 28, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  height: var(--header-h);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  text-decoration: none;
  flex-shrink: 0;
}
.brand__mark { width: 36px; height: 36px; }
.brand__name { font-size: 1.34rem; font-weight: 500; letter-spacing: -0.03em; }
.brand__name b { font-weight: 800; }

.main-nav {
  display: flex;
  gap: 0.25rem;
  margin-inline: auto;
}
.main-nav a {
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  transition: color 0.15s, background-color 0.15s;
}
.main-nav a:hover { color: var(--ink); background: rgba(20, 20, 28, 0.05); }
.main-nav a.active { color: var(--ink); background: rgba(20, 20, 28, 0.07); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-left: auto;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
}
.header-phone svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-phone:hover { color: var(--violet); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  border-radius: var(--radius-s);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2.5px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.25s;
}
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(4.2px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

/* Mobilní menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2rem 1.5rem 3rem;
  background: var(--paper);
  overflow-y: auto;
}
.mobile-menu nav { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-menu nav a {
  padding: 0.85rem 0.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 2rem;
}
.mobile-menu__contact a { font-weight: 600; text-decoration: none; }
.mobile-menu__contact .btn { text-align: center; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(4rem, 9vw, 7rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 130%;
  pointer-events: none;
  background:
    radial-gradient(42% 45% at 12% 18%, rgba(108, 59, 244, 0.14), transparent 70%),
    radial-gradient(38% 42% at 88% 12%, rgba(47, 187, 240, 0.14), transparent 70%),
    radial-gradient(45% 45% at 78% 78%, rgba(255, 90, 60, 0.10), transparent 70%),
    radial-gradient(40% 42% at 22% 85%, rgba(225, 58, 157, 0.10), transparent 70%);
}
/* Plovoucí barevné orby — jemný pohyb, vypnuto při prefers-reduced-motion */
.hero__glow::before,
.hero__glow::after {
  content: "";
  position: absolute;
  width: clamp(220px, 30vw, 380px);
  height: clamp(220px, 30vw, 380px);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.22;
}
.hero__glow::before {
  top: 14%;
  left: -4%;
  background: radial-gradient(circle at 40% 40%, #6C3BF4, #E13A9D 70%);
  animation: orb-float 16s ease-in-out infinite alternate;
}
.hero__glow::after {
  top: 34%;
  right: -6%;
  background: radial-gradient(circle at 60% 40%, #FFAA1F, #FF5A3C 70%);
  animation: orb-float 20s ease-in-out infinite alternate-reverse;
}
@keyframes orb-float {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(48px, 36px, 0) scale(1.12); }
}

.hero__inner { position: relative; text-align: center; }

.hero__title {
  margin: 0 auto 1.2rem;
  max-width: 14ch;
  font-size: clamp(2.9rem, 8vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.03;
}
.hero__title em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 620px;
  margin: 0 auto 2rem;
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--ink-2);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}
.hero__note {
  margin: 1.1rem 0 0;
  font-size: 0.9rem;
  color: var(--ink-3);
}

.hero__visual {
  position: relative;
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  aspect-ratio: 21 / 9;
  min-height: 260px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
}
.hero__chip {
  position: absolute;
  padding: 0.5rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: var(--shadow-s);
  white-space: nowrap;
}
.hero__chip--1 { top: 12%; left: 6%; transform: rotate(-3deg); }
.hero__chip--2 { top: 20%; right: 7%; transform: rotate(2.5deg); }
.hero__chip--3 { bottom: 14%; left: 12%; transform: rotate(-2deg); }

/* ---------- Placeholder vizuály ---------- */
.ph {
  --ph-a: #6C3BF4;
  --ph-b: #E13A9D;
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius-m);
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(255, 255, 255, 0.28), transparent 55%),
    radial-gradient(100% 100% at 15% 90%, rgba(0, 0, 0, 0.16), transparent 60%),
    linear-gradient(135deg, var(--ph-a), var(--ph-b));
}
.ph::after {
  content: "";
  position: absolute;
  inset: 0;
  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)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.10;
  mix-blend-mode: overlay;
  pointer-events: none;
}
.ph__label {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgba(20, 20, 28, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ph--hero {
  --ph-a: #6C3BF4;
  --ph-b: #FF5A3C;
  background:
    radial-gradient(60% 90% at 15% 15%, rgba(46, 107, 255, 0.75), transparent 60%),
    radial-gradient(55% 80% at 85% 20%, rgba(255, 170, 31, 0.7), transparent 60%),
    radial-gradient(70% 90% at 70% 90%, rgba(225, 58, 157, 0.75), transparent 65%),
    radial-gradient(60% 80% at 25% 90%, rgba(13, 148, 136, 0.6), transparent 60%),
    linear-gradient(135deg, #6C3BF4, #E13A9D);
}

/* ---------- Statistiky ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem 2rem;
  margin-bottom: 0.6rem;
}
.stat {
  --a: var(--violet);
  padding: 0.35rem 0 0.35rem 1.3rem;
  border-left: 3px solid color-mix(in srgb, var(--a) 60%, white);
  border-radius: 2px;
}
.stat__num {
  display: block;
  font-size: clamp(2.2rem, 3.8vw, 3.3rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--a);
  font-variant-numeric: tabular-nums;
}
.stat__label { display: block; margin-top: 0.3rem; font-size: 0.94rem; color: var(--ink-2); }

.stats__footnote {
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  font-size: 0.8rem;
  color: var(--ink-3);
}

/* ---------- Proč OmniPrint ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.why-card {
  --a: var(--violet);
  padding: 1.9rem 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
/* Střídavé odsazení karet — rozbíjí monotónní řadu */
@media (min-width: 761px) {
  .why-card:nth-child(even) { margin-top: 1.8rem; }
  .why-grid { margin-bottom: 1.8rem; }
}
.why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.1rem;
  border-radius: 14px;
  background: color-mix(in srgb, var(--a) 12%, white);
  color: var(--a);
}
.why-card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.why-card h3 { font-size: 1.12rem; }
.why-card p { margin: 0; font-size: 0.95rem; color: var(--ink-2); }

/* ---------- Dlaždice nabídky ---------- */
.tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.tile {
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.tile:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.tile__img {
  aspect-ratio: 4 / 3;
  border-radius: 0;
  transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.tile:hover .tile__img { transform: scale(1.045); }
/* Bento: vybrané dlaždice přes dva sloupce */
@media (min-width: 521px) {
  .tile--w2 { grid-column: span 2; }
  .tile--w2 .tile__img { aspect-ratio: 21 / 10; }
}
.tile__body {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 1.15rem 1.25rem 1.3rem;
}
.tile__title { font-size: 1.08rem; font-weight: 700; letter-spacing: -0.015em; }
.tile__desc { font-size: 0.9rem; color: var(--ink-2); }
.tile__more {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--violet);
}
.tile__more svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; transition: transform 0.2s; }
.tile:hover .tile__more svg { transform: translateX(3px); }

/* ---------- Dekorativní prstenec (symbol z loga) ---------- */
.deco-ring {
  position: absolute;
  color: #fff;
  opacity: 0.14;
  pointer-events: none;
  animation: ring-spin 90s linear infinite;
}
@keyframes ring-spin { to { transform: rotate(1turn); } }

/* ---------- Technologie — barevný gradientní panel ---------- */
.tech-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(2rem, 4.5vw, 4.2rem);
  border-radius: clamp(24px, 4vw, 44px);
  color: #F4F3F0;
  background: linear-gradient(125deg, #1E1065 0%, #5B21B6 38%, #86198F 72%, #9D174D 100%);
  box-shadow: var(--shadow-l);
}
.tech-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(50% 55% at 90% 8%, rgba(255, 170, 31, 0.22), transparent 70%),
    radial-gradient(45% 55% at 4% 96%, rgba(47, 187, 240, 0.20), transparent 70%),
    radial-gradient(42% 50% at 58% 115%, rgba(225, 58, 157, 0.28), transparent 70%);
}
.tech-panel > :not(.deco-ring) { position: relative; }
.tech-panel__ring { width: clamp(260px, 36vw, 470px); height: auto; top: -130px; right: -120px; opacity: 0.12; }
.tech-panel .section-head { margin-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.tech-panel h2 { color: #fff; }
.tech-panel h2 em {
  background: linear-gradient(95deg, #FFD57E, #FF9DBB);
  -webkit-background-clip: text;
  background-clip: text;
}
.tech-panel .section-lead { color: rgba(255, 255, 255, 0.8); }

.tech-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem 1.6rem;
}
.tech-card {
  --a: var(--teal);
  position: relative;
  padding: 2rem 1.8rem 1.8rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-m);
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.tech-card:hover { background: rgba(255, 255, 255, 0.13); transform: translateY(-3px); }
/* Střídavé odsazení pravého sloupce — dynamičtější rytmus */
@media (min-width: 761px) {
  .tech-card:nth-child(even) { margin-top: 2.2rem; }
  .tech-grid { margin-bottom: 2.2rem; }
}
.tech-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1.7rem;
  width: 44px;
  height: 4px;
  border-radius: 0 0 4px 4px;
  background: var(--a);
}
.tech-card h3 { font-size: 1.25rem; color: #fff; margin-top: 0.4rem; }
.tech-card p { margin: 0 0 1rem; font-size: 0.96rem; color: rgba(244, 243, 240, 0.75); }
.tech-card__tag {
  display: inline-block;
  padding: 0.28rem 0.75rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: color-mix(in srgb, var(--a) 28%, white);
  background: color-mix(in srgb, var(--a) 38%, transparent);
}

/* ---------- Proces ---------- */
.steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
/* Propojovací gradientní linka mezi kroky (jen na desktopu) */
@media (min-width: 1025px) {
  .steps::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 8px;
    right: 8px;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--blue), var(--teal), var(--magenta), var(--coral));
    opacity: 0.2;
  }
}
.step {
  --a: var(--blue);
  position: relative;
  padding: 0 0.5rem 0 0;
}
.step__num {
  position: absolute;
  top: -8px;
  right: 0.5rem;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.04em;
  color: color-mix(in srgb, var(--a) 15%, white);
}
.step__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1.2rem;
  border-radius: 50%;
  background: var(--a);
  color: #fff;
  border: 5px solid var(--paper);
  box-shadow: 0 4px 14px color-mix(in srgb, var(--a) 30%, transparent);
}
.step__icon svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.step h3 { font-size: 1.14rem; }
.step p { margin: 0; font-size: 0.95rem; color: var(--ink-2); }

/* ---------- Reference ---------- */
.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.ref-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: left;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.ref-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.ref-card__img {
  aspect-ratio: 3 / 2;
  border-radius: 0;
  transition: transform 0.55s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.ref-card:hover .ref-card__img { transform: scale(1.045); }
/* Zig-zag: střídavě široká karta vlevo / vpravo */
@media (min-width: 521px) {
  .ref-card--w2 { grid-column: span 2; }
  .ref-card--w2 .ref-card__img { aspect-ratio: 21 / 10; }
}
.ref-card__body { display: flex; flex-direction: column; gap: 0.3rem; padding: 1.1rem 1.25rem 1.25rem; }
.ref-card__tag {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.ref-card__title { font-size: 1.05rem; font-weight: 700; letter-spacing: -0.015em; }

.clients { margin-top: clamp(3rem, 6vw, 4.5rem); text-align: center; }
.clients__label {
  margin-bottom: 1.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.clients__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.2rem 3.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.client-logo {
  display: inline-block;
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  opacity: 0.55;
  transition: opacity 0.2s;
}
.clients__list li:hover .client-logo { opacity: 1; }
.client-logo--1 { font-weight: 800; letter-spacing: 0.06em; }
.client-logo--2 { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 600; }
.client-logo--3 { font-weight: 600; text-transform: uppercase; font-size: 0.95rem; letter-spacing: 0.12em; }
.client-logo--4 { font-family: Georgia, "Times New Roman", serif; font-weight: 700; letter-spacing: 0.03em; }
.client-logo--5 { font-weight: 800; font-style: italic; }
.client-logo--6 { font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; }
.clients__note { margin-top: 1.2rem; font-size: 0.78rem; color: var(--ink-3); }

/* ---------- CTA pás ---------- */
.section--ctaband { padding: clamp(2.5rem, 5vw, 4rem) 0 0; }
.cta-band {
  position: relative;
  overflow: hidden;
  padding: clamp(2.2rem, 5vw, 4rem) clamp(1.6rem, 4vw, 3.5rem);
  border-radius: clamp(24px, 4vw, 44px);
  color: #fff;
  background: linear-gradient(120deg, #6C3BF4 0%, #A22BBB 48%, #E11D48 100%);
  box-shadow: 0 18px 50px rgba(108, 59, 244, 0.3);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(48% 60% at 88% 6%, rgba(255, 170, 31, 0.30), transparent 70%),
    radial-gradient(42% 55% at 2% 96%, rgba(47, 187, 240, 0.22), transparent 70%);
}
.cta-band__ring { width: clamp(240px, 30vw, 400px); height: auto; top: -110px; right: -90px; opacity: 0.2; }
.cta-band__content { position: relative; max-width: 660px; }
.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.6rem;
}
.cta-band__lead { color: rgba(255, 255, 255, 0.88); font-size: 1.12rem; margin-bottom: 1.7rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-bottom: 1.5rem; }
.cta-band__perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.7rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.93rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}
.cta-band__perks li { display: inline-flex; align-items: center; gap: 0.45rem; }
.cta-band__perks svg { width: 17px; height: 17px; fill: none; stroke: #fff; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Hero benefity ---------- */
.hero__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.8rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-2);
}
.hero__perks li { display: inline-flex; align-items: center; gap: 0.45rem; }
.hero__perks svg { width: 17px; height: 17px; fill: none; stroke: var(--teal); stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- FAQ CTA ---------- */
.faq-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
  margin-top: 2.6rem;
  padding: 1.6rem 1.9rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
}
.faq-cta p { margin: 0; font-weight: 600; font-size: 1.05rem; }
.faq-cta__actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

/* ---------- Mobilní sticky CTA lišta ---------- */
.mobile-cta {
  position: fixed;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.8rem;
  z-index: 90;
  display: none;
  gap: 0.6rem;
  padding: 0.55rem;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: var(--shadow-l);
}
.mobile-cta .btn { flex: 1; white-space: nowrap; padding-inline: 0.9rem; }
@media (max-width: 760px) {
  .mobile-cta:not([hidden]) { display: flex; }
  .cookiebar { bottom: 4.8rem; }
}

/* ---------- FAQ ---------- */
.faq { border-top: 1px solid var(--line); }
.faq-h { margin: 0; }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.25rem 0.2rem;
  background: none;
  border: none;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
}
.faq-q:hover { color: var(--violet); }
.faq-q svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-q svg { transform: rotate(45deg); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-a__inner { overflow: hidden; }
.faq-a__inner p { padding: 0.9rem 2.5rem 1.3rem 0.2rem; margin: 0; color: var(--ink-2); }
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-item.open .faq-q { border-bottom-color: transparent; }
.faq-item.open .faq-a__inner { border-bottom: 1px solid var(--line); }

/* ---------- Kontakt ---------- */
.section--contact {
  background:
    radial-gradient(45% 40% at 90% 0%, rgba(255, 90, 60, 0.07), transparent 70%),
    radial-gradient(40% 40% at 5% 100%, rgba(108, 59, 244, 0.06), transparent 70%),
    var(--paper);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.form {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3.2vw, 2.6rem);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-m);
}
.form::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
  background: var(--grad-brand);
}
.form__title { font-size: 1.35rem; margin-bottom: 1.4rem; }
.form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.field { margin-bottom: 1.1rem; }
.field label, .field .field__label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border: 1.5px solid rgba(20, 20, 28, 0.16);
  border-radius: var(--radius-s);
  background: #fff;
  font: inherit;
  color: var(--ink);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: none;
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(108, 59, 244, 0.18);
}
.field input.invalid, .field select.invalid, .field textarea.invalid { border-color: var(--coral); }

.dropzone { position: relative; }
.dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}
.dropzone__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 1.5rem 1rem;
  border: 2px dashed rgba(20, 20, 28, 0.2);
  border-radius: var(--radius-s);
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-2);
  transition: border-color 0.2s, background-color 0.2s;
  pointer-events: none;
}
.dropzone:hover .dropzone__inner,
.dropzone.dragover .dropzone__inner {
  border-color: var(--violet);
  background: rgba(108, 59, 244, 0.05);
}
.dropzone:has(input:focus-visible) .dropzone__inner {
  border-color: var(--violet);
  box-shadow: 0 0 0 3px rgba(108, 59, 244, 0.18);
}
.dropzone__inner svg { width: 26px; height: 26px; fill: none; stroke: var(--violet); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

.filelist { margin: 0.6rem 0 0; padding: 0; list-style: none; }
.filelist li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  padding: 0.45rem 0.7rem;
  margin-bottom: 0.35rem;
  background: var(--paper-tint);
  border-radius: 8px;
  font-size: 0.88rem;
}
.filelist .file-size { color: var(--ink-3); margin-left: auto; }
.filelist .file-remove {
  border: none;
  background: none;
  padding: 0.2rem 0.4rem;
  font-weight: 700;
  color: var(--ink-3);
  cursor: pointer;
  border-radius: 6px;
}
.filelist .file-remove:hover { color: var(--coral); background: rgba(255, 90, 60, 0.1); }
.filelist .file-error { color: var(--coral); font-weight: 600; }

.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.field--consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6rem;
  align-items: start;
  font-size: 0.9rem;
}
.field--consent input { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--violet); }
.field--consent label { margin: 0; font-weight: 500; color: var(--ink-2); }

.form__submit { width: 100%; margin-top: 0.4rem; }
.form__note { margin: 0.9rem 0 0; font-size: 0.8rem; color: var(--ink-3); }
.form__note em { font-style: normal; opacity: 0.85; }

.form__success {
  margin-top: 1.5rem;
  padding: 1.5rem;
  text-align: center;
  background: color-mix(in srgb, var(--teal) 8%, white);
  border: 1px solid color-mix(in srgb, var(--teal) 30%, white);
  border-radius: var(--radius-m);
}
.form__success svg { width: 44px; height: 44px; fill: none; stroke: var(--teal); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin-bottom: 0.6rem; }
.form__success h3 { font-size: 1.15rem; }
.form__success p { margin: 0; font-size: 0.95rem; color: var(--ink-2); }
.form.submitted .form-row--2, .form.submitted .field, .form.submitted .form__submit, .form.submitted .form__note { display: none; }

.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-card {
  padding: 1.7rem 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-s);
}
.contact-card h3 { font-size: 1.2rem; margin-bottom: 1rem; }
.contact-list { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.contact-list li { display: flex; gap: 0.8rem; align-items: flex-start; font-size: 0.97rem; }
.contact-list svg { flex-shrink: 0; width: 20px; height: 20px; margin-top: 0.15rem; fill: none; stroke: var(--violet); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.contact-list a { font-weight: 600; text-decoration: none; }
.contact-list a:hover { color: var(--violet); }
.contact-card__note { margin: 1rem 0 0; font-size: 0.78rem; color: var(--ink-3); }

.map-ph {
  --ph-a: #33334a;
  --ph-b: #16161f;
  min-height: 220px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-l);
}
.map-ph__pin { width: 44px; height: 44px; fill: none; stroke: rgba(255, 255, 255, 0.9); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Patička ---------- */
.site-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(3.2rem, 6vw, 5rem) 0 2rem;
  background: linear-gradient(135deg, #241263 0%, #5B21B6 38%, #86198F 72%, #9D174D 100%);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
}
/* Duhový pruh nahoře — odkaz na barevnost tisku */
.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: var(--grad-brand);
}
.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(45% 60% at 92% 0%, rgba(255, 170, 31, 0.16), transparent 70%),
    radial-gradient(50% 60% at 2% 100%, rgba(47, 187, 240, 0.14), transparent 70%);
}
.site-footer .container { position: relative; z-index: 1; }
.footer__ring { width: clamp(280px, 34vw, 520px); height: auto; bottom: -170px; right: -150px; opacity: 0.1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.brand--footer { color: #fff; margin-bottom: 0.9rem; }
.footer-brand p { max-width: 300px; margin: 0; }
.site-footer h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 1rem;
}
.footer-nav { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer-nav a, .footer-contact a { color: rgba(255, 255, 255, 0.88); text-decoration: none; }
.footer-nav a:hover, .footer-contact a:hover { color: #fff; text-decoration: underline; }
.footer-contact p { margin: 0 0 0.8rem; }
.footer-legal { font-size: 0.85rem; }
.footer-meta { display: flex; flex-direction: column; align-items: flex-start; gap: 0.55rem; }
.footer-link {
  background: none;
  border: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  text-align: left;
}
.footer-link:hover { color: #fff; text-decoration: underline; }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 2rem;
  padding-top: 1.6rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }
.footer-bottom a:hover { color: #fff; }
.footer-ph-note { color: rgba(255, 255, 255, 0.5); }

/* ---------- Modaly — celoplošný detail ve stylu apple.com:
   roluje se celý overlay (scrollbar u kraje okna), panel roste s obsahem ---------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(0.75rem, 2.5vw, 2.5rem) clamp(0.75rem, 2.5vw, 2.5rem) 0;
  -webkit-overflow-scrolling: touch;
}
.modal__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(16, 16, 25, 0.62);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
}
.modal__panel {
  position: relative;
  width: min(100%, 1180px);
  min-height: calc(100vh - 5rem);
  margin-inline: auto;
  padding: clamp(2rem, 5vw, 4.5rem) clamp(1.4rem, 5vw, 5rem) clamp(2.5rem, 5vw, 4.5rem);
  background: var(--paper);
  border-radius: var(--radius-l) var(--radius-l) 0 0;
  box-shadow: var(--shadow-l);
  opacity: 0;
  transform: translateY(36px) scale(0.99);
  transition: opacity 0.34s ease, transform 0.34s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.modal__panel:focus-visible { outline: none; }
.modal.is-open .modal__backdrop { opacity: 1; }
.modal.is-open .modal__panel { opacity: 1; transform: translateY(0) scale(1); }

.modal__close {
  position: sticky;
  top: clamp(0.9rem, 2.5vw, 1.6rem);
  float: right;
  margin: -0.5rem -0.5rem 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background: rgba(20, 20, 28, 0.06);
  cursor: pointer;
  transition: background-color 0.15s;
  z-index: 5;
}
.modal__close:hover { background: rgba(20, 20, 28, 0.12); }
.modal__close svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 2; stroke-linecap: round; }

.modal__head { margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.modal__head h2 { font-size: clamp(1.9rem, 4.2vw, 3.1rem); font-weight: 800; letter-spacing: -0.03em; }
.modal__lead { font-size: clamp(1.05rem, 1.6vw, 1.22rem); color: var(--ink-2); margin: 0; max-width: 62ch; }
.modal__panel h3 { font-size: 1.2rem; margin: clamp(2rem, 4vw, 2.8rem) 0 1rem; }
.modal__text { color: var(--ink-2); margin: 0; }
.modal__footnote { font-size: 0.78rem; color: var(--ink-3); margin: 0.6rem 0 0; }

.modal__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.modal__gallery .ph { aspect-ratio: 16 / 10; }

.modal__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}
.mstat {
  --a: var(--violet);
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
}
.mstat b { display: block; font-size: 1.5rem; font-weight: 800; letter-spacing: -0.02em; color: var(--a); }
.mstat span { font-size: 0.86rem; color: var(--ink-2); }

.modal__list { margin: 0; padding-left: 1.2rem; display: flex; flex-direction: column; gap: 0.45rem; color: var(--ink-2); }
.modal__list b { color: var(--ink); font-weight: 600; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.chips li {
  padding: 0.42rem 0.9rem;
  background: #fff;
  border: 1px solid rgba(20, 20, 28, 0.13);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
}

/* Široký úvodní vizuál v galerii modalu */
.modal__gallery .ph--wide { grid-column: 1 / -1; aspect-ratio: 21 / 9; }

/* Produktová mřížka v detailu služby */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}
.product {
  padding: 0.9rem 1.1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
}
.product b { display: block; font-weight: 600; margin-bottom: 0.15rem; }
.product span { font-size: 0.88rem; color: var(--ink-2); line-height: 1.5; }

/* Orientační ceník */
.spec-table--price thead th:last-child,
.spec-table--price td:last-child { text-align: right; white-space: nowrap; }
.spec-table--price td:last-child { font-weight: 700; color: var(--ink); }
.spec-table--price td:first-child { font-weight: 600; color: var(--ink); }

/* Hlavička kategorie v kompletním ceníku */
.price-cat {
  --a: var(--violet);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.3rem 1.5rem;
  margin-top: clamp(2.2rem, 4vw, 3rem);
}
.price-cat h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
}
.price-cat h3::before {
  content: "";
  width: 22px;
  height: 4px;
  border-radius: 2px;
  background: var(--a);
}

.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.93rem;
}
.spec-table th, .spec-table td {
  padding: 0.65rem 0.9rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.spec-table th { font-weight: 600; white-space: nowrap; }
.spec-table tbody th { color: var(--ink); }
.spec-table thead th {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.spec-table td { color: var(--ink-2); }
.spec-table--compare { min-width: 640px; }

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}
.case-meta span {
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  background: var(--grad-cta);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.modal__text-block h3 { margin-top: 1.4rem; }
.modal__text-block p { color: var(--ink-2); font-size: 0.97rem; }

.modal__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
}

/* ---------- Cookie lišta ---------- */
.cookiebar {
  position: fixed;
  left: 1.2rem;
  bottom: 1.2rem;
  z-index: 140;
  max-width: 420px;
  padding: 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-l);
  font-size: 0.9rem;
}
.cookiebar p { margin: 0 0 0.9rem; color: var(--ink-2); }
.cookiebar__actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }

/* ---------- Animace při scrollu ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.22, 0.9, 0.3, 1);
}
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- Redukce pohybu ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

/* ---------- Responzivita ---------- */
@media (max-width: 1024px) {
  .why-grid, .tiles, .steps { grid-template-columns: repeat(2, 1fr); }
  .ref-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .hero__visual { aspect-ratio: 16 / 9; }
}

@media (min-width: 1025px) {
  .mobile-menu { display: none !important; }
}

@media (max-width: 760px) {
  body { font-size: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .modal__stats { grid-template-columns: 1fr 1fr; }
  .case-blocks { grid-template-columns: 1fr; }
  .header-phone span { display: none; }
  .header-phone {
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 50%;
    background: rgba(20, 20, 28, 0.05);
  }
  .header-phone svg { width: 19px; height: 19px; }
  .header-actions .btn { display: none; }
  .hero__chip--3 { display: none; }
  .hero__visual { aspect-ratio: 4 / 3; }

  /* Modal na mobilu: fullscreen panel od horní hrany */
  .modal { padding: 0.6rem 0 0; }
  .modal__panel {
    width: 100%;
    min-height: calc(100vh - 0.6rem);
    transform: translateY(60px);
  }
  .modal__close { top: 0.7rem; }
  .modal__gallery { grid-template-columns: 1fr; }
  .modal__gallery .ph--wide { aspect-ratio: 16 / 10; }
  .product-grid { grid-template-columns: 1fr; }
  .spec-table { font-size: 0.85rem; }
  .spec-table th, .spec-table td { padding: 0.55rem 0.55rem; }
}

@media (max-width: 520px) {
  .why-grid, .tiles, .steps, .ref-grid { grid-template-columns: 1fr; }
  .tile--w2, .ref-card--w2 { grid-column: auto; }
  .stats { grid-template-columns: 1fr 1fr; gap: 1.4rem 1.2rem; }
  .steps { gap: 2.4rem; }
  .form-row--2 { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .hero__cta .btn { width: 100%; }
  .modal__stats { grid-template-columns: 1fr; }
  .cookiebar { left: 0.8rem; right: 0.8rem; bottom: 0.8rem; max-width: none; }
  .hero__chip--2 { display: none; }
}

/* ==========================================================================
   Pás působnosti (marquee) — nekonečná smyčka měst
   ========================================================================== */
.marquee-band {
  padding: clamp(1.4rem, 3vw, 2.3rem) 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.marquee-band__inner {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.marquee-band__label {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
}
.marquee-band__label::before {
  content: "";
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--grad-brand);
}
.marquee {
  position: relative;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee-scroll 48s linear infinite;
}
.marquee:hover .marquee__track,
.marquee:focus-within .marquee__track { animation-play-state: paused; }
.marquee__item {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0;
  font-size: 1.06rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.15s;
}
.marquee__item:hover { color: var(--violet); }
.marquee__sep { padding: 0 1.05rem; color: var(--ink-3); opacity: 0.5; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee { overflow-x: auto; }
  .marquee__track { animation: none; }
}
@media (max-width: 640px) {
  .marquee-band__inner { flex-direction: column; align-items: flex-start; gap: 0.7rem; }
  .marquee { width: 100%; }
}

/* Města v patičce (statické odkazy pro crawl) */
.footer-cities {
  position: relative;
  z-index: 1;
  margin-top: 2.4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-cities__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.4rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-cities__list a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  font-size: 0.92rem;
}
.footer-cities__list a:hover { color: #fff; text-decoration: underline; }

/* ==========================================================================
   Městské landing pages
   ========================================================================== */
/* Dlaždice služeb jako odkazy */
.tile { text-decoration: none; color: inherit; }

.city-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.5rem, 6vw, 5rem) 0 clamp(2rem, 4vw, 3.5rem);
}
.city-hero__inner { position: relative; max-width: 860px; }
.city-hero h1 {
  font-size: clamp(2.3rem, 5.6vw, 4.1rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin: 0 0 1.1rem;
}
.city-hero h1 em {
  font-style: normal;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.city-hero__lead {
  font-size: clamp(1.1rem, 1.9vw, 1.3rem);
  color: var(--ink-2);
  max-width: 60ch;
  margin: 0 0 1.7rem;
}
.city-hero .hero__cta,
.city-hero .hero__perks { justify-content: flex-start; }
.city-hero__visual {
  position: relative;
  margin-top: clamp(2rem, 4vw, 3rem);
  aspect-ratio: 21 / 8;
  min-height: 220px;
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-l);
}

.local__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  margin-top: 1.7rem;
}
.info-card {
  padding: 1.5rem 1.6rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow-s);
}
.info-card h3 { font-size: 1.08rem; margin: 0 0 0.4rem; }
.info-card p { margin: 0; color: var(--ink-2); font-size: 0.96rem; }

.local__neighbors { margin-top: 2.2rem; }
.local__neighbors h3 { font-size: 1rem; margin: 0 0 0.9rem; color: var(--ink-2); }
.pill-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.pill-links a {
  display: inline-block;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(20, 20, 28, 0.14);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color 0.15s, color 0.15s;
}
.pill-links a:hover { border-color: var(--violet); color: var(--violet); }

/* Nativní FAQ (details/summary) — bez JS */
.faq-native { border-top: 1px solid var(--line); }
.faq-native details { border-bottom: 1px solid var(--line); }
.faq-native summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0.2rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.faq-native summary::-webkit-details-marker { display: none; }
.faq-native summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1;
  color: var(--violet);
  transition: transform 0.3s ease;
}
.faq-native details[open] summary::after { transform: rotate(45deg); }
.faq-native summary:hover { color: var(--violet); }
.faq-native details p { padding: 0 2.5rem 1.4rem 0.2rem; margin: 0; color: var(--ink-2); }

@media (max-width: 640px) {
  .local__cards { grid-template-columns: 1fr; }
}
