@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500&family=Noto+Serif+Display:ital,wght@1,500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* Minimal reset (replaces Tailwind Preflight) */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; }
body { line-height: 1.5; -webkit-font-smoothing: antialiased; }
img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; }
table { border-collapse: collapse; }

/* ============================================
   Zdeněk Podaný - Webové stránky pro byznys
   Primární barva: #006DEC
   ============================================ */

:root {
  --primary: #006DEC;
  --primary-dark: #005bc4;
  --primary-light: #3d8ef7;
  --primary-soft: rgba(0, 109, 236, 0.08);
  --text: #1a1a2e;
  --text-muted: #5c5c7a;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e8ecf1;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 12px 48px rgba(0, 109, 236, 0.12);
  --transition: 0.25s ease;
  --header-h: 80px;
  --hero-gap-under-nav: 10px;
  --hero-section-pad-bottom: 20px;
  /* Jednotné pozadí hero panelu (text + průhledná část fotky) */
  --hero-panel-gradient: linear-gradient(
    155deg,
    #001a42 0%,
    #002d7a 32%,
    #004fbd 65%,
    #006dec 100%
  );
}

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

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

body {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== Navigace ========== */
/* ========== Navbar – redesigned ========== */

/* Scroll progress bar */
.nav-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
  z-index: 200;
  transform-origin: left;
  pointer-events: none;
}

/* Outer header wrapper */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 20px;
  pointer-events: none;
  transition: padding 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Collapsed/floating state */
.header--scrolled {
  padding: 10px 16px;
}

/* Pill container */
.header-pill {
  max-width: 1200px;
  margin: 0 auto;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-radius 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              background 0.3s ease;
}

.header--scrolled .header-pill {
  border-radius: 100px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1), 0 1px 4px rgba(0,0,0,0.06),
              inset 0 1px 0 rgba(255,255,255,0.8);
}

/* Inner nav row */
.nav-inner {
  display: flex;
  align-items: center;
  height: 56px;
  padding: 0 20px;
  gap: 4px;
}

/* Logo */
.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 12px;
  flex-shrink: 0;
}

.logo-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(0, 109, 236, 0.2);
  transition: transform 0.25s ease;
}

.logo:hover .logo-mark {
  transform: scale(1.35);
}

.logo-first {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s ease;
  letter-spacing: -0.02em;
}

.logo-last {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  transition: color 0.2s ease;
  letter-spacing: -0.025em;
}

.logo:hover .logo-first { color: var(--primary-light); }
.logo:hover .logo-last  { color: var(--primary); }

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  flex: 1;
}

.nav-link {
  position: relative;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 6px 11px;
  border-radius: 8px;
  transition: color 0.18s ease, background-color 0.18s ease;
  white-space: nowrap;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 11px;
  right: 11px;
  height: 1.5px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-soft);
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Desktop CTA */
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: 8px;
  padding: 9px 18px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(0, 109, 236, 0.28);
  transition: box-shadow 0.25s ease, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), background 0.2s ease;
}

.nav-cta svg {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-cta:hover {
  background: var(--primary-dark);
  box-shadow: 0 6px 22px rgba(0, 109, 236, 0.38);
  transform: translateY(-1px);
}

.nav-cta:hover svg {
  transform: translateX(3px);
}

.nav-cta:active {
  transform: translateY(0) scale(0.98);
}

/* Burger toggle */
.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  margin-left: auto;
  flex-shrink: 0;
  transition: background-color 0.18s ease;
}

.nav-toggle:hover {
  background: var(--primary-soft);
}

.burger-line {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  border-radius: 2px;
  transform-origin: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease,
              width 0.25s ease;
}

.nav-toggle--open .burger-line:nth-child(1) {
  transform: translateY(3.25px) rotate(45deg);
}

.nav-toggle--open .burger-line:nth-child(2) {
  transform: translateY(-3.25px) rotate(-45deg);
}

/* Mobile full-screen overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  display: flex;
  align-items: center;
  justify-content: center;
  /* enter/exit driven by data-open attribute */
  opacity: 0;
  transition: opacity 0.25s ease;
}

.mobile-overlay[data-open="true"] {
  opacity: 1;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 0 24px;
  width: 100%;
  max-width: 400px;
  transform: translateY(24px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.28s ease;
}

.mobile-overlay[data-open="true"] .mobile-nav {
  transform: none;
  opacity: 1;
}

.mobile-nav-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  width: 100%;
}

/* Staggered item reveal */
.mobile-nav-list li {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-overlay[data-open="true"] .mobile-nav-list li { opacity: 1; transform: none; }
.mobile-overlay[data-open="true"] .mobile-nav-list li:nth-child(1) { transition-delay: 0.06s; }
.mobile-overlay[data-open="true"] .mobile-nav-list li:nth-child(2) { transition-delay: 0.11s; }
.mobile-overlay[data-open="true"] .mobile-nav-list li:nth-child(3) { transition-delay: 0.16s; }
.mobile-overlay[data-open="true"] .mobile-nav-list li:nth-child(4) { transition-delay: 0.21s; }
.mobile-overlay[data-open="true"] .mobile-nav-list li:nth-child(5) { transition-delay: 0.26s; }
.mobile-overlay[data-open="true"] .mobile-nav-list li:nth-child(6) { transition-delay: 0.31s; }
.mobile-overlay[data-open="true"] .mobile-nav-list li:nth-child(7) { transition-delay: 0.36s; }

.mobile-nav-link {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 24px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  border-radius: 14px;
  letter-spacing: -0.02em;
  transition: background 0.18s ease, color 0.18s ease;
}

.mobile-nav-link:hover {
  background: var(--primary-soft);
  color: var(--primary);
}

.mobile-nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 109, 236, 0.3);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.2s ease;
  transition-delay: 0.42s;
}

.mobile-overlay[data-open="true"] .mobile-nav-cta {
  opacity: 1;
  transform: none;
}

.mobile-nav-cta:active {
  transform: scale(0.97);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

/* ========== Tlačítka ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 109, 236, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 109, 236, 0.4);
}

.btn-secondary {
  background: var(--bg-alt);
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.btn-full {
  width: 100%;
}

.btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

/* ========== Hero (jeden panel: fotka + gradient + text jako u Redesigner) ========== */
.hero {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: stretch;
  padding: calc(var(--header-h) + var(--hero-gap-under-nav)) 0 var(--hero-section-pad-bottom);
  min-height: 100vh;
  min-height: 100dvh;
  box-sizing: border-box;
  overflow-x: clip;
  overflow-y: visible;
  background: var(--bg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--hero-panel-gradient);
  min-width: 0;
  max-width: 100%;
  width: 100%;
  min-height: calc(
    100vh - var(--header-h) - var(--hero-gap-under-nav) - var(--hero-section-pad-bottom)
  );
  min-height: calc(
    100dvh - var(--header-h) - var(--hero-gap-under-nav) - var(--hero-section-pad-bottom)
  );
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.07) inset,
    0 32px 80px rgba(0, 18, 52, 0.32),
    0 6px 24px rgba(0, 109, 236, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.hero-panel-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: transparent;
}

.hero-panel-media picture {
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
}

.hero-panel-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* spodek = celá postava; mírně vpravo = žádný pruh vpravo, levá část jde pod gradient */
  object-position: 82% bottom;
}

.hero-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    98deg,
    #001a42 0%,
    rgba(0, 35, 100, 0.97) 16%,
    rgba(0, 72, 185, 0.88) 30%,
    rgba(0, 109, 236, 0.50) 44%,
    rgba(0, 109, 236, 0.08) 58%,
    transparent 70%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-panel-img {
    transform: none;
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  min-width: 0;
  width: 100%;
  max-width: min(800px, 60%);
  padding-top: clamp(40px, 6vw, 76px);
  padding-bottom: clamp(40px, 6vw, 76px);
  padding-right: clamp(28px, 4vw, 56px);
  padding-left: clamp(48px, 8vw, 112px);
  overflow-wrap: break-word;
  text-align: left;
}

/* Mobilní hero: obsah nahoře na plné modré, fotka pod (bez překryvu textu) — shodné s breakpointem hero-s.webp */
@media (max-width: 959px) {
  .hero .container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .hero {
    min-height: 0;
  }

  .hero-panel {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    min-height: 0;
  }

  .hero-panel-overlay {
    display: none;
  }

  .hero-content {
    order: 1;
    position: relative;
    z-index: 2;
    max-width: 100%;
    width: 100%;
    margin: 0;
    text-align: left;
    flex-shrink: 0;
    padding-top: clamp(28px, 7vw, 48px);
    padding-bottom: clamp(28px, 7vw, 44px);
    padding-left: clamp(24px, 6vw, 36px);
    padding-right: clamp(24px, 6vw, 36px);
    background: transparent;
  }

  .hero-panel-media {
    order: 2;
    position: relative;
    inset: auto;
    z-index: 0;
    width: 100%;
    flex: 0 0 auto;
    aspect-ratio: 1 / 1;
    max-height: min(88vw, 440px);
    margin: 0 auto;
    background: transparent;
  }

.hero-panel-media picture,
  .hero-panel-media .hero-panel-img {
    width: 100%;
    height: 100%;
  }

  /* contain: na širokém tabletu se box často zploští (max-height + šířka 100 %);
     cover + center bottom pak ořezává hlavu. Spodek zarovnán, nahoře gradient/průhled. */
  .hero-panel-img {
    object-fit: contain;
    object-position: center bottom;
  }

  .hero-eyebrow {
    display: none;
  }

  .hero-title {
    text-wrap: balance;
    font-size: clamp(1.9rem, 7vw, 2.5rem);
  }

  .hero-panel .hero-subtitle {
    font-size: 1rem;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero-panel .hero-cta-micro {
    font-size: 13px;
  }
}

/* Typografie a tlačítka na modrém panelu */
.hero-panel .hero-title {
  color: #fff;
}

.hero-panel .hero-title .highlight {
  color: #aaff45;
  text-shadow:
    0 0 30px rgba(170, 255, 69, 0.55),
    0 0 70px rgba(170, 255, 69, 0.25);
}

.hero-panel .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
}

.hero-panel .hero-cta-micro {
  color: rgba(255, 255, 255, 0.72);
}

.hero-panel .btn-primary {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14), 0 1px 0 rgba(255,255,255,0.8) inset;
}

.hero-panel .btn-primary:hover {
  background: #eef4ff;
  color: var(--primary-dark);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
  transform: translateY(-1px);
}

.hero-panel .btn-secondary {
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
}

.hero-panel .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: #fff;
  color: #fff;
  transform: translateY(-1px);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  animation: fadeInUp 0.4s ease forwards;
}

.hero-eyebrow-line {
  display: block;
  width: 32px;
  height: 2px;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 1px;
  flex-shrink: 0;
}

/* Hero title = LCP element – rychlejší animace (0.4s) pro lepší LCP */
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  text-wrap: balance;
  animation: fadeInUp 0.4s ease forwards;
}

.hero-title .highlight {
  color: var(--primary);
  position: relative;
  font-family: 'Noto Serif Display', serif;
  font-weight: 500;
  font-style: italic;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  max-width: 680px;
  animation: fadeInUp 0.4s ease 0.08s forwards;
}

.hero-cta-wrap {
  animation: fadeInUp 0.4s ease 0.16s forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-start;
}

.hero-cta-micro {
  margin: 10px 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.45;
  max-width: 520px;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== Hero – nové prvky ========== */

.hero-dots {
  display: none;
}




/* ========== Metriky ========== */
.metrics-bar {
  padding: 48px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}

.metric-item {
  padding: 0 24px;
}

.metric-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* ========== Sekce ========== */
.section {
  padding: 100px 0;
}

.section:nth-child(even) {
  background: var(--bg-alt);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  text-align: center;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

/* ========== Služby ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--bg);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}

.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-icon {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.3;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-muted);
  font-size: 1rem;
}

.services-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== Jak spolupracujeme ========== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.process-step {
  text-align: center;
  padding: 32px 24px;
}

.step-number {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: white;
  font-weight: 800;
  font-size: 1.25rem;
  border-radius: 50%;
}

.process-step h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.process-step p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section-cta {
  text-align: center;
  margin-top: 48px;
}

@media (max-width: 768px) {
  .section-cta {
    margin-top: 40px;
  }
}

/* ========== O mně – redesigned ========== */
.omne-section {
  background: var(--bg);
  padding: 96px 0 104px;
  overflow: hidden;
}

.omne-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 72px;
  align-items: center;
}

/* ---- Photo side ---- */
.omne-photo-wrap {
  position: relative;
}

.omne-photo {
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  /* tinted diffusion shadow */
  box-shadow: 0 24px 64px -16px rgba(0, 109, 236, 0.12), 0 4px 16px rgba(0,0,0,0.06);
  background: var(--bg-alt);
  /* slight asymmetric tilt for character */
  transform: rotate(-1deg);
}

.omne-photo img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.omne-photo:hover img {
  transform: scale(1.025);
}

/* Floating fact pills */
.omne-fact-pill {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 16px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  color: var(--text);
  white-space: nowrap;
}

.omne-fact-pill--tl {
  top: -14px;
  left: -12px;
}

.omne-fact-pill--br {
  bottom: -14px;
  right: -12px;
}

.omne-fact-pill-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(34,197,94,0.2);
}

.omne-fact-pill-dot--blue {
  background: var(--primary);
  box-shadow: 0 0 0 2px rgba(0,109,236,0.2);
}

/* ---- Content side ---- */
.omne-content {
  min-width: 0;
}

.omne-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  padding: 4px 12px;
  border: 1px solid rgba(0,109,236,0.2);
  border-radius: 100px;
  background: var(--primary-soft);
}

.omne-title {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 28px;
}

.omne-title-accent {
  color: var(--primary);
}

.omne-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.omne-body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  max-width: 58ch;
}

/* Fact grid */
.omne-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 32px;
}

.omne-fact {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.omne-fact:nth-child(2n) {
  border-right: none;
}

.omne-fact:nth-last-child(-n+2) {
  border-bottom: none;
}

.omne-fact-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.omne-fact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .omne-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .omne-photo-wrap {
    max-width: 380px;
    margin: 0 auto;
    width: 100%;
  }

  .omne-content {
    text-align: left;
  }

  .omne-title {
    font-size: clamp(1.75rem, 6vw, 2.4rem);
  }
}

@media (max-width: 560px) {
  .omne-section {
    padding: 72px 0 80px;
  }

  .omne-container {
    padding: 0 16px;
    gap: 36px;
  }

  .omne-photo {
    transform: none;
  }

  .omne-facts {
    grid-template-columns: 1fr;
  }

  .omne-fact {
    border-right: none;
  }

  .omne-fact:nth-last-child(-n+2) {
    border-bottom: 1px solid var(--border);
  }

  .omne-fact:last-child {
    border-bottom: none;
  }
}

/* ========== V kostce – redesigned ========== */
.vkostce-section {
  background: var(--bg-alt);
  padding: 96px 0 104px;
}

.vkostce-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

/* Left intro */
.vkostce-intro {
  position: sticky;
  top: 100px;
}

.vkostce-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 18px;
  padding: 4px 12px;
  border: 1px solid rgba(0,109,236,0.2);
  border-radius: 100px;
  background: var(--primary-soft);
}

.vkostce-title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--text);
  margin-bottom: 20px;
}

.vkostce-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 36px;
  max-width: 34ch;
}

/* Fact grid */
.vkostce-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
}

.vkostce-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px 22px 20px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 6px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.vkostce-card:hover {
  border-color: rgba(0,109,236,0.25);
  box-shadow: 0 4px 20px rgba(0,109,236,0.07);
}

/* Kontakt card spans full width */
.vkostce-card:nth-child(5) {
  grid-column: span 2;
}

.vkostce-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: var(--primary-soft);
  color: var(--primary);
  margin-bottom: 4px;
  flex-shrink: 0;
}

.vkostce-dt {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.7;
}

.vkostce-dd {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.vkostce-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.vkostce-link:hover {
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 900px) {
  .vkostce-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .vkostce-intro {
    position: static;
  }

  .vkostce-lead {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .vkostce-section {
    padding: 72px 0 80px;
  }

  .vkostce-container {
    padding: 0 16px;
    gap: 36px;
  }

  .vkostce-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .vkostce-card:nth-child(5) {
    grid-column: span 1;
  }
}

/* ========== Proč má kvalitní web smysl (porovnání) ========== */
/* Dvě třídy = stejná specificita jako .section:nth-child(even); toto pravidlo je v souboru později → tmavé pozadí zůstane */
/* ========== Proč web – redesigned ========== */
.proc-web-section {
  position: relative;
  background: #0b0d1a;
  padding: 96px 0 104px;
  overflow: hidden;
}

/* Subtle dot-grid background texture */
.proc-web-bg-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 30%, transparent 100%);
}

/* Ambient glow top-right */
.proc-web-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0,109,236,0.14) 0%, transparent 70%);
  pointer-events: none;
}

/* Ambient glow bottom-left */
.proc-web-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0,109,236,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.proc-web-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: start;
}

/* ---- Left: intro block ---- */
.proc-web-intro {
  position: sticky;
  top: 100px;
}

.proc-web-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin-bottom: 20px;
  padding: 4px 12px;
  border: 1px solid rgba(0,109,236,0.3);
  border-radius: 100px;
  background: rgba(0,109,236,0.08);
}

.proc-web-title {
  font-size: clamp(1.85rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}

.proc-web-title-accent {
  color: var(--primary-light);
}

.proc-web-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 36px;
  max-width: 34ch;
}

.proc-web-cta-btn {
  display: inline-flex;
}

/* ---- Right: comparison table ---- */
.proc-web-table-wrap {
  position: relative;
}

.proc-web-col-headers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin-bottom: 8px;
}

.proc-web-col-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 0 20px 10px;
}

.proc-web-col-label--neg {
  color: rgba(255,255,255,0.3);
}

.proc-web-col-label--pos {
  color: var(--primary-light);
}

.proc-web-rows {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.proc-web-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.25s ease;
}

.proc-web-row:hover {
  border-color: rgba(0,109,236,0.3);
}

.proc-web-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 18px 20px;
  font-size: 0.9rem;
  line-height: 1.55;
  transition: background 0.2s ease;
}

.proc-web-cell--neg {
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.4);
  border-right: 1px solid rgba(255,255,255,0.06);
}

.proc-web-row:hover .proc-web-cell--neg {
  background: rgba(255,255,255,0.04);
}

.proc-web-cell--pos {
  background: rgba(0,109,236,0.08);
  color: rgba(255,255,255,0.88);
  /* liquid glass inner border */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.proc-web-row:hover .proc-web-cell--pos {
  background: rgba(0,109,236,0.14);
}

.proc-web-icon {
  flex-shrink: 0;
  margin-top: 1px;
  display: flex;
}

.proc-web-icon--cross {
  color: rgba(239,68,68,0.65);
}

.proc-web-icon--check {
  color: #60a5fa;
}

.proc-web-cell-text {
  display: block;
}

/* ---- Mobile ---- */
@media (max-width: 900px) {
  .proc-web-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .proc-web-intro {
    position: static;
    text-align: center;
  }

  .proc-web-lead {
    max-width: 100%;
  }

  .proc-web-title {
    font-size: clamp(1.65rem, 5vw, 2.2rem);
  }
}

@media (max-width: 560px) {
  .proc-web-section {
    padding: 72px 0 80px;
  }

  .proc-web-container {
    padding: 0 16px;
    gap: 36px;
  }

  .proc-web-col-headers {
    display: none;
  }

  .proc-web-row {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }

  .proc-web-cell--neg {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .proc-web-cell--neg::before {
    content: 'Bez webu';
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(239,68,68,0.6);
    margin-bottom: 6px;
    flex-basis: 100%;
    order: -1;
  }

  .proc-web-cell--pos::before {
    content: 'S kvalitním webem';
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #60a5fa;
    margin-bottom: 6px;
    flex-basis: 100%;
    order: -1;
  }

  .proc-web-cell {
    flex-wrap: wrap;
    padding: 14px 16px;
    font-size: 0.875rem;
  }
}

/* ========== Ukázky realizovaných webů ========== */
/* ---- Showcase header ---- */
.showcase-header {
  text-align: center;
  margin-bottom: 36px;
}

.showcase-header .section-title,
.showcase-header .section-subtitle {
  margin-bottom: 0;
}

.showcase-header .section-subtitle {
  margin-top: 8px;
}

.showcase-count {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 14px;
  white-space: nowrap;
  align-self: flex-end;
  margin-bottom: 6px;
}

/* ---- Showcase grid ---- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 340px);
  gap: 14px;
}

/* ---- Showcase card ---- */
.showcase-card {
  position: relative;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  background: #0d1a2d;
  cursor: pointer;
}

.showcase-card--featured {
  grid-column: span 2;
}

/* Slim accent line at bottom, slides in on hover */
.showcase-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 4;
}

.showcase-card:hover::after {
  transform: scaleX(1);
}

/* Image */
.showcase-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
  display: block;
}

.showcase-card:hover img {
  transform: scale(1.04);
  opacity: 0.82;
}

/* Number badge */
.showcase-num {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  padding: 4px 9px;
}

/* Caption overlay */
.showcase-cap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  background: linear-gradient(
    to top,
    rgba(5, 14, 32, 0.96) 0%,
    rgba(5, 14, 32, 0.75) 28%,
    rgba(5, 14, 32, 0.18) 60%,
    transparent 100%
  );
  pointer-events: none;
}

/* Story: hidden by default, slides up on hover */
.showcase-story {
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition:
    max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease,
    transform 0.3s ease;
}

.showcase-card:hover .showcase-story,
.showcase-card:focus-visible .showcase-story {
  max-height: 120px;
  opacity: 1;
  transform: translateY(0);
}

/* Footer: name + domain */
.showcase-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.showcase-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.showcase-domain {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.5);
  white-space: nowrap;
  transition: color 0.25s ease;
}

.showcase-card:hover .showcase-domain {
  color: #93c5fd;
}

/* j-mont green theme overrides */
.showcase-card--jmont::after {
  background: #5A9B5B;
}

.showcase-card--jmont img {
  object-position: top left;
}

.showcase-card--jmont .showcase-cap {
  background: linear-gradient(
    to top,
    rgba(8, 22, 8, 0.97) 0%,
    rgba(8, 22, 8, 0.76) 28%,
    rgba(8, 22, 8, 0.18) 60%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.showcase-card--jmont:hover .showcase-cap {
  background: linear-gradient(
    to top,
    rgba(12, 36, 12, 0.97) 0%,
    rgba(20, 52, 20, 0.78) 28%,
    rgba(30, 65, 30, 0.22) 60%,
    transparent 100%
  );
}

.showcase-card--jmont:hover .showcase-domain {
  color: #a3d4a4;
}

/* Taxi Pavel yellow theme overrides */
.showcase-card--taxipavel::after {
  background: #EFC700;
}

.showcase-card--taxipavel .showcase-cap {
  background: linear-gradient(
    to top,
    rgba(30, 24, 0, 0.97) 0%,
    rgba(30, 24, 0, 0.76) 28%,
    rgba(30, 24, 0, 0.18) 60%,
    transparent 100%
  );
  transition: background 0.4s ease;
}

.showcase-card--taxipavel:hover .showcase-cap {
  background: linear-gradient(
    to top,
    rgba(48, 38, 0, 0.97) 0%,
    rgba(60, 48, 0, 0.78) 28%,
    rgba(70, 56, 0, 0.22) 60%,
    transparent 100%
  );
}

.showcase-card--taxipavel:hover .showcase-domain {
  color: #f5de5c;
}

/* CTA below grid */
.showcase-cta {
  text-align: center;
  margin-top: 40px;
}

/* ---- Responsive ---- */
@media (max-width: 1100px) {
  .showcase-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 280px);
  }

  .showcase-card--featured {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 24px;
  }

  .showcase-count {
    align-self: flex-start;
  }

  .showcase-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 12px;
  }

  .showcase-card,
  .showcase-card--featured {
    grid-column: span 1;
    min-height: 240px;
  }

  /* Always show story on mobile (no hover) */
  .showcase-story {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
  }

  .showcase-cta {
    margin-top: 28px;
  }
}

/* ========== Reference (karusel) ========== */
.testimonials-carousel {
  margin: 8px auto 0;
  max-width: 900px;
}

.testimonials-carousel-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  outline: none;
  border-radius: var(--radius-lg);
  -webkit-overflow-scrolling: touch;
}

.testimonials-carousel-viewport::-webkit-scrollbar {
  display: none;
}

.testimonials-carousel-viewport:focus-visible {
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--primary);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-carousel-viewport {
    scroll-behavior: auto;
  }
}

.testimonials-track {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.testimonials-slide {
  display: flex;
  flex-direction: column;
  flex: 0 0 var(--testimonials-slide-w, 100%);
  width: var(--testimonials-slide-w, 100%);
  min-height: 1px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  box-sizing: border-box;
}

.testimonials-slide .testimonial-card {
  flex: 1;
  width: 100%;
}

.testimonials-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.testimonials-carousel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}

.testimonials-carousel-btn:hover:not(:disabled) {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.testimonials-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonials-carousel-dots {
  display: flex;
  gap: 10px;
  align-items: center;
}

.testimonials-carousel-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--border);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.testimonials-carousel-dot:hover {
  background: var(--primary-light);
}

.testimonials-carousel-dot.is-active {
  background: var(--primary);
  transform: scale(1.2);
}

.testimonial-card {
  position: relative;
  background: var(--bg);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card::before {
  content: '”';
  position: absolute;
  top: 8px;
  right: 24px;
  font-family: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-size: 5rem;
  line-height: 1;
  color: var(--primary);
  opacity: 0.08;
}

.testimonial-text {
  position: relative;
  z-index: 1;
  font-family: 'DM Sans', 'Plus Jakarta Sans', sans-serif;
  font-weight: 500;
  font-style: normal;
  margin-bottom: 24px;
  color: #5b5b5b;
  font-size: 19px;
  line-height: 1.6;
}

.testimonial-author {
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author-image {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--border);
}

.testimonial-author-info {
  display: block;
}

.testimonial-author strong {
  color: var(--text);
  font-weight: 600;
}

.testimonial-author a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
  display: inline-block;
  margin-top: 4px;
}

.testimonial-author a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 24px;
  }

  .testimonial-text {
    font-size: 16px;
    line-height: 1.55;
  }

  .testimonials-carousel-controls {
    margin-top: 20px;
    gap: 16px;
  }
}

/* ========== Ceník ========== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
  align-items: start;
  padding-top: 20px;
}

.pricing-card {
  position: relative;
  background: var(--bg);
  padding: 36px 32px 32px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  display: flex;
  flex-direction: column;
  transform: translateY(0);
}

.pricing-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.pricing-card.featured {
  border-color: transparent;
  background: var(--hero-panel-gradient);
  box-shadow: 0 24px 64px rgba(0, 109, 236, 0.30);
  transform: translateY(-16px);
  padding: 44px 32px 36px;
}

.pricing-card.featured:hover {
  border-color: transparent;
  box-shadow: 0 32px 80px rgba(0, 109, 236, 0.38);
}

.pricing-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-card.featured .pricing-card-label {
  color: rgba(255, 255, 255, 0.6);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 20px;
  background: #fff;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
}

.pricing-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--text);
}

.pricing-card.featured h3 {
  color: #fff;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.pricing-card.featured .price {
  color: #fff;
}

.pricing-divider {
  height: 1px;
  background: var(--border);
  margin-bottom: 20px;
}

.pricing-card.featured .pricing-divider {
  background: rgba(255, 255, 255, 0.2);
}

.pricing-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.pricing-card.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 0 0;
  text-align: left;
  flex: 1;
}

.pricing-features li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 11px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.45;
}

.pricing-features li:last-child {
  margin-bottom: 0;
}

.pricing-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.88);
}

.pricing-card.featured .pricing-features li::before {
  color: rgba(255, 255, 255, 0.65);
}

.pricing-card-btn {
  margin-top: 28px;
  font-size: 0.95rem;
}

.pricing-card-btn--featured {
  background: #fff;
  color: var(--primary);
  border: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.pricing-card-btn--featured:hover {
  background: #f0f6ff;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.18);
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.pricing-full-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  padding-bottom: 1px;
}

.pricing-full-link:hover {
  border-bottom-color: var(--primary);
  color: var(--primary-dark);
}

@media (max-width: 768px) {
  .pricing-card.featured {
    transform: none;
  }
  .pricing-card.featured:hover {
    transform: translateY(-4px);
  }
}

/* ========== Proč méně za stejnou kvalitu (agentura vs já) ========== */
.value-compare {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.value-compare-panel {
  max-width: 920px;
  margin: 0 auto;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.value-compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  line-height: 1.5;
}

.value-compare-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-weight: 700;
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(26, 26, 46, 0.04);
  border-bottom: 1px solid var(--border);
}

.value-compare-table thead th:first-child {
  width: 22%;
  min-width: 120px;
}

.value-compare-table thead th:last-child {
  color: var(--primary);
  background: var(--primary-soft);
}

.value-compare-table tbody th,
.value-compare-table tbody td {
  padding: 18px 20px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.value-compare-table tbody tr:last-child th,
.value-compare-table tbody tr:last-child td {
  border-bottom: none;
}

.value-compare-table tbody th {
  font-weight: 700;
  color: var(--text);
}

.value-compare-table tbody td {
  color: var(--text-muted);
}

.value-compare-highlight {
  background: var(--primary-soft);
  color: var(--text);
  font-weight: 700;
  border-left: 1px solid var(--border);
}

@media (max-width: 720px) {
  .value-compare-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .value-compare-table tbody tr {
    display: block;
    padding: 4px 0;
    border-bottom: 1px solid var(--border);
  }

  .value-compare-table tbody tr:last-child {
    border-bottom: none;
  }

  .value-compare-table tbody th {
    display: block;
    width: 100%;
    padding: 16px 18px 8px;
    border-bottom: none;
    font-size: 0.9375rem;
  }

  .value-compare-table tbody td {
    display: block;
    width: 100%;
    padding: 12px 18px;
    border-bottom: none;
    border-left: none;
    background: transparent;
  }

  .value-compare-table tbody td.value-compare-highlight {
    background: var(--primary-soft);
  }

  .value-compare-table tbody td::before {
    content: attr(data-label);
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 6px;
  }
}

/* ========== FAQ ========== */
.faq {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: var(--bg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item:hover {
  border-color: rgba(0, 109, 236, 0.25);
}

.faq-item.is-open {
  border-color: var(--primary-light);
  box-shadow: var(--shadow);
}

.faq-question {
  position: relative;
  padding: 18px 48px 18px 20px;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--text);
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::marker {
  content: '';
}

.faq-question::after {
  content: '';
  position: absolute;
  right: 22px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.is-open .faq-question::after {
  margin-top: -2px;
  transform: rotate(-135deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.45s;
  border-top: 1px solid transparent;
  padding: 0 20px;
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
  border-top-color: var(--border);
}

.faq-answer p {
  margin: 0;
  min-height: 0;
  overflow: hidden;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
  opacity: 0;
  transform: translateY(-6px);
  transition:
    padding 0.45s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.06s,
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
}

.faq-item.is-open .faq-answer p {
  opacity: 1;
  transform: translateY(0);
  padding-top: 16px;
  padding-bottom: 20px;
}

.faq .section-cta {
  margin-top: 36px;
}

.faq-cta-lead {
  max-width: 520px;
  margin: 0 auto 20px;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 768px) {
  .faq-cta-lead {
    font-size: 1rem;
    margin-bottom: 18px;
    padding: 0 8px;
  }

  .faq-question {
    padding: 16px 44px 16px 16px;
    font-size: 0.9375rem;
  }

  .faq-question::after {
    right: 18px;
  }

  .faq-answer {
    padding: 0 16px;
  }

  .faq-answer p {
    font-size: 0.9rem;
    padding-bottom: 0;
  }

  .faq-item.is-open .faq-answer p {
    padding-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer {
    transition: none;
  }

  .faq-item.is-open .faq-answer {
    grid-template-rows: 1fr;
  }

  .faq-answer p {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .faq-question::after {
    transition: none;
  }
}

/* ========== Scroll reveal efekt ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.services-grid .reveal:nth-child(1) { transition-delay: 0s; }
.services-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.services-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.process-steps .reveal:nth-child(1) { transition-delay: 0s; }
.process-steps .reveal:nth-child(2) { transition-delay: 0.08s; }
.process-steps .reveal:nth-child(3) { transition-delay: 0.16s; }
.process-steps .reveal:nth-child(4) { transition-delay: 0.24s; }

.showcase-grid .reveal:nth-child(1) { transition-delay: 0s; }
.showcase-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.showcase-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.showcase-grid .reveal:nth-child(4) { transition-delay: 0.24s; }
.showcase-grid .reveal:nth-child(5) { transition-delay: 0.32s; }

.pricing-grid .reveal:nth-child(1) { transition-delay: 0s; }
.pricing-grid .reveal:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .reveal:nth-child(3) { transition-delay: 0.2s; }

.faq-list .faq-item.reveal:nth-child(1) { transition-delay: 0s; }
.faq-list .faq-item.reveal:nth-child(2) { transition-delay: 0.04s; }
.faq-list .faq-item.reveal:nth-child(3) { transition-delay: 0.08s; }
.faq-list .faq-item.reveal:nth-child(4) { transition-delay: 0.12s; }
.faq-list .faq-item.reveal:nth-child(5) { transition-delay: 0.16s; }
.faq-list .faq-item.reveal:nth-child(6) { transition-delay: 0.2s; }
.faq-list .faq-item.reveal:nth-child(7) { transition-delay: 0.24s; }

/* ========== Kontakt ========== */
.contact-form {
  max-width: 620px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg);
  transition: border-color var(--transition);
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235c5c7a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-feedback {
  max-width: 620px;
  margin: 24px auto 0;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-weight: 500;
  text-align: center;
}

.form-feedback--success {
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.form-feedback--error {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

.contact-alternative {
  text-align: center;
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-alternative a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition);
}

.contact-alternative a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* ========== Footer ========== */
/* ========== Footer – redesigned ========== */
.footer {
  background: #0b0d1a;
  color: rgba(255,255,255,0.6);
  position: relative;
  overflow: hidden;
}

/* Ambient glow */
.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(0,109,236,0.12) 0%, transparent 70%);
  pointer-events: none;
}

/* CTA strip */
.footer-cta-strip {
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 40px 24px;
}

.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-cta-label {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.025em;
  margin-bottom: 4px;
}

.footer-cta-sub {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.45);
  margin: 0;
}

.footer-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

/* Main footer grid */
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 48px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
}

/* Brand column */
.footer-brand-link {
  text-decoration: none;
  display: inline-flex;
  margin-bottom: 16px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-logo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
}

.footer-logo-first {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: -0.02em;
}

.footer-logo-last {
  font-size: 1.1rem;
  font-weight: 800;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.025em;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  margin-bottom: 28px;
}

/* Social pills */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.55);
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
  /* liquid glass */
  background: rgba(255,255,255,0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.footer-social-pill:hover {
  border-color: rgba(0,109,236,0.5);
  color: rgba(255,255,255,0.9);
  background: rgba(0,109,236,0.1);
}

/* Column headings */
.footer-col-heading {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-col-heading--spaced {
  margin-top: 32px;
}

/* Link lists */
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-list a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.18s ease;
}

.footer-list a:hover {
  color: rgba(255,255,255,0.9);
}

.footer-list li {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
}

/* Bottom bar */
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.25);
  margin: 0;
}

.footer-tagline {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand-col {
    grid-column: span 2;
  }
}

@media (max-width: 600px) {
  .footer-cta-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .footer-cta-btn {
    width: 100%;
    justify-content: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 40px 16px 36px;
    gap: 32px;
  }

  .footer-brand-col {
    grid-column: span 1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 16px 16px 24px;
  }
}

/* ========== Mobilní rychlé volání (FAB) ========== */
.call-fab {
  display: none;
}

@media (max-width: 768px) {
  .call-fab {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: max(16px, env(safe-area-inset-right, 0px));
    bottom: max(16px, env(safe-area-inset-bottom, 0px));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    box-shadow: 0 4px 20px rgba(0, 109, 236, 0.45);
    z-index: 90;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition);
    touch-action: manipulation;
  }

  .call-fab:hover,
  .call-fab:active {
    background: var(--primary-dark);
    transform: scale(1.06);
    box-shadow: 0 6px 26px rgba(0, 109, 236, 0.5);
  }

  .call-fab:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
  }

  .call-fab-icon {
    width: 26px;
    height: 26px;
  }

  /* Cookie lišta dole – FAB nepřekrývat tlačítka souhlasu */
  body:has(.cookie-consent:not([hidden])) .call-fab {
    bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }
}

/* ========== Mobilní menu (burger od 860px) – handled by Framer Motion overlay ========== */

@media (max-width: 768px) {
  .hero {
    --hero-gap-under-nav: 8px;
    --hero-section-pad-bottom: 16px;
    padding: calc(var(--header-h) + var(--hero-gap-under-nav)) 0 var(--hero-section-pad-bottom);
  }

  .hero-cta {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .section {
    padding: 60px 0;
  }
}

/* ========== Cookie consent ========== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 0;
  padding-bottom: max(20px, env(safe-area-inset-bottom));
  background: var(--bg);
  border-top: 1px solid var(--border);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  animation: cookieSlideUp 0.4s ease;
}

.cookie-consent[hidden] {
  display: none !important;
}

@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.cookie-consent-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1;
  min-width: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.cookie-consent-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  word-break: break-word;
}

.cookie-consent-text a:hover {
  color: var(--primary-dark);
}

.cookie-consent-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-consent-accept {
  flex-shrink: 0;
}

.cookie-consent-reject {
  background: none;
  border: none;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  padding: 10px 16px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.cookie-consent-reject:hover {
  color: var(--text);
}

/* Tablet – začíná zalamování */
@media (max-width: 900px) {
  .cookie-consent-inner {
    gap: 20px;
  }

  .cookie-consent-text {
    font-size: 0.9rem;
  }
}

/* Mobil */
@media (max-width: 768px) {
  .cookie-consent {
    padding: 16px 0;
    padding-bottom: max(16px, env(safe-area-inset-bottom));
  }

  .cookie-consent-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    text-align: center;
  }

  .cookie-consent-text {
    font-size: 0.875rem;
    min-width: unset;
  }

  .cookie-consent-actions {
    flex-direction: column;
    justify-content: stretch;
    gap: 12px;
  }

  .cookie-consent-accept {
    width: 100%;
    justify-content: center;
  }

  .cookie-consent-reject {
    padding: 10px 16px;
  }
}

/* Úzké displeje (malé telefony) */
@media (max-width: 380px) {
  .cookie-consent {
    padding: 12px 0;
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }

  .cookie-consent-text {
    font-size: 0.8125rem;
  }

  .cookie-consent-actions {
    gap: 8px;
  }
}

/* ========== Právní stránky (Zásady ochrany osobních údajů) ========== */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
}

.legal-content {
  max-width: 720px;
  margin: 0 auto;
}

.legal-title {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.legal-revised {
  margin-bottom: 40px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* VOP – přehledná hlavička dokumentu */
.legal-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-bottom: 28px;
  box-shadow: var(--shadow);
}

.legal-card-line {
  margin-bottom: 14px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text);
}

.legal-card-line:last-of-type {
  margin-bottom: 0;
}

.legal-card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.legal-badge {
  display: inline-block;
  padding: 6px 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-soft);
  border-radius: 100px;
}

.legal-card-meta {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-lead {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 36px;
  padding: 16px 20px;
  border-left: 4px solid var(--primary);
  background: rgba(0, 109, 236, 0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.legal-content--vop {
  max-width: 760px;
}

.legal-content h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.01em;
}

.legal-content h2 + h3 {
  margin-top: 14px;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-top: 32px;
  margin-bottom: 16px;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text);
}

.legal-content ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: var(--text);
}

.legal-content a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

.legal-content a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 40px 0;
}

.legal-back {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}

.legal-back a {
  font-weight: 500;
}

/* ========== Stránka 404 ========== */
.page-404 {
  min-height: calc(100vh - 72px - 200px);
  display: flex;
  align-items: center;
  padding: 120px 0 100px;
}

.page-404-content {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.page-404-number {
  font-size: clamp(5rem, 15vw, 8rem);
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 24px;
}

.page-404-title {
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
}

.page-404-text {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.6;
}

.page-404-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

@media (max-width: 768px) {
  .page-404 {
    padding: 100px 0 80px;
  }

  .page-404-actions {
    flex-direction: column;
  }

  .page-404-actions .btn {
    width: 100%;
  }
}

/* ========== Blog – přehled článků ========== */
.blog-index {
  padding-top: 80px;
  padding-bottom: 96px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 8px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.blog-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

/* Náhledový obrázek */
.blog-card-thumb-link {
  display: block;
  text-decoration: none;
}

.blog-card-thumb {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--bg-alt);
}

.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.blog-card:hover .blog-card-thumb img {
  transform: scale(1.04);
}

/* Placeholder gradient místo obrázku */
.blog-card-thumb--placeholder {
  background: var(--hero-panel-gradient);
  position: relative;
}

.blog-card-thumb--placeholder::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 50%);
}

/* Obsah karty */
.blog-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 28px 28px 24px;
  gap: 12px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-card-meta time {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-card-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  background: var(--primary-soft);
  padding: 3px 10px;
  border-radius: 100px;
}

.blog-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin: 0;
}

.blog-card-title a {
  color: var(--text);
  text-decoration: none;
  transition: color var(--transition);
}

.blog-card-title a:hover,
.blog-card:hover .blog-card-title a {
  color: var(--primary);
}

.blog-card-perex {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  margin-top: auto;
  padding-top: 4px;
  transition: gap var(--transition);
}

.blog-card-cta:hover {
  gap: 10px;
}

.blog-empty {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.125rem;
  padding: 48px 0;
}

/* Responzivita */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

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

  .blog-card-body {
    padding: 22px 20px 20px;
  }

  .blog-index {
    padding-top: 56px;
    padding-bottom: 64px;
  }
}

/* ============================================================
   Blog post — article page
   ============================================================ */

.blog-post {
  padding: 48px 0 96px;
}

.blog-post-container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}

.blog-post-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 40px;
  transition: color var(--transition);
}

.blog-post-back:hover {
  color: var(--primary);
}

/* Header */
.blog-post-header {
  margin-bottom: 40px;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.blog-post-meta time {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 500;
}

.blog-post-tag {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--primary);
  background: rgba(0, 109, 236, 0.08);
  padding: 3px 10px;
  border-radius: 100px;
}

.blog-post-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 20px;
}

.blog-post-lead {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* Hero image */
.blog-post-hero {
  margin-bottom: 48px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--hero-panel-gradient);
}

.blog-post-hero img {
  width: 100%;
  height: auto;
  display: block;
}

/* Body typography */
.blog-post-body {
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--text);
}

.blog-post-body > * + * {
  margin-top: 1.5em;
}

.blog-post-body h2 {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin-top: 2.5em;
  margin-bottom: 0.6em;
  color: var(--text);
}

.blog-post-body h3 {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.35;
  margin-top: 2em;
  margin-bottom: 0.5em;
  color: var(--text);
}

.blog-post-body p {
  margin: 0;
}

.blog-post-body a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: opacity var(--transition);
}

.blog-post-body a:hover {
  opacity: 0.75;
}

.blog-post-body strong {
  font-weight: 700;
  color: var(--text);
}

.blog-post-body ul,
.blog-post-body ol {
  padding-left: 1.5em;
}

.blog-post-body ul {
  list-style: disc;
}

.blog-post-body ol {
  list-style: decimal;
}

.blog-post-body li + li {
  margin-top: 0.4em;
}

.blog-post-body blockquote {
  border-left: 4px solid var(--primary);
  padding: 4px 0 4px 24px;
  margin-left: 0;
  color: var(--text-muted);
  font-style: italic;
}

.blog-post-body code {
  font-family: "SF Mono", "Fira Code", "Fira Mono", monospace;
  font-size: 0.875em;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 1px 6px;
}

.blog-post-body pre {
  background: #1a1a2e;
  border-radius: 12px;
  padding: 24px;
  overflow-x: auto;
}

.blog-post-body pre code {
  background: none;
  border: none;
  padding: 0;
  font-size: 0.9rem;
  color: #e2e8f0;
}

/* ========== Stránka /cenik ========== */

.cenik-page {
  padding-top: var(--header-h);
}

.cenik-hero {
  background: var(--hero-panel-gradient);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.cenik-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 80% 50%, rgba(0, 109, 236, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.cenik-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 32px;
  transition: color var(--transition);
}

.cenik-breadcrumb:hover {
  color: #fff;
}

.cenik-hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.cenik-hero-sub {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
}

.cenik-main-pricing {
  background: var(--bg-alt);
}

/* ── Addon cards ── */

.cenik-addons {
  background: var(--bg);
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 20px;
  margin-bottom: 0;
  align-items: start;
}

.addon-card {
  background: var(--bg);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.addon-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.addon-card--featured {
  border-color: transparent;
  background: var(--hero-panel-gradient);
  box-shadow: 0 20px 56px rgba(0, 109, 236, 0.28);
  transform: translateY(-12px);
}

.addon-card--featured:hover {
  border-color: transparent;
  box-shadow: 0 28px 72px rgba(0, 109, 236, 0.36);
  transform: translateY(-16px);
}

.addon-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.addon-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.addon-card--featured .addon-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.addon-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.addon-card--featured .addon-card-label {
  color: rgba(255, 255, 255, 0.55);
}

.addon-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
  line-height: 1.2;
}

.addon-card--featured .addon-card-title {
  color: #fff;
}

.addon-card-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 20px;
}

.addon-card--featured .addon-card-desc {
  color: rgba(255, 255, 255, 0.72);
}

.addon-pricing-options {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 16px 20px;
  background: rgba(0, 109, 236, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(0, 109, 236, 0.1);
}

.addon-card--featured .addon-pricing-options {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.15);
}

.addon-price-option {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
}

.addon-price-amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -0.02em;
}

.addon-card--featured .addon-price-amount {
  color: #fff;
}

.addon-price-period {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
}

.addon-card--featured .addon-price-period {
  color: rgba(255, 255, 255, 0.6);
}

.addon-price-option--alt .addon-price-amount {
  font-size: 1.2rem;
  color: var(--text);
}

.addon-card--featured .addon-price-option--alt .addon-price-amount {
  color: rgba(255, 255, 255, 0.85);
}

.addon-price-divider {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

.addon-card--featured .addon-price-divider {
  color: rgba(255, 255, 255, 0.45);
}

.addon-price-save {
  font-size: 0.72rem;
  font-weight: 700;
  color: #16a34a;
  background: #dcfce7;
  border-radius: 100px;
  padding: 2px 8px;
  white-space: nowrap;
  align-self: center;
}

.addon-card--featured .addon-price-save {
  color: #16a34a;
  background: #dcfce7;
}

.addon-features {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  flex: 1;
}

.addon-features li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.45;
}

.addon-features li:last-child {
  margin-bottom: 0;
}

.addon-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--primary);
  font-weight: 700;
}

.addon-card--featured .addon-features li {
  color: rgba(255, 255, 255, 0.88);
}

.addon-card--featured .addon-features li::before {
  color: rgba(255, 255, 255, 0.6);
}

.addon-card-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(0, 0, 0, 0.04);
  border-radius: 8px;
  padding: 10px 12px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.addon-card-note svg {
  flex-shrink: 0;
  margin-top: 2px;
  opacity: 0.6;
}

.addon-card--featured .addon-card-note {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65);
}

.addon-card--featured .addon-card-note strong {
  color: rgba(255, 255, 255, 0.9);
}

.addon-card-btn {
  margin-top: auto;
  font-size: 0.95rem;
  width: 100%;
  text-align: center;
}

.addon-card-btn--featured {
  background: #fff;
  color: var(--primary);
  border: none;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.14);
}

.addon-card-btn--featured:hover {
  background: #f0f6ff;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(0, 0, 0, 0.18);
}

/* ========== Pricing Table (interaktivní srovnání plánů) ========== */

.pt-wrapper {
  margin-top: 8px;
}

/* Toggle */
.pt-toggle-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px;
  width: fit-content;
  margin: 0 auto 36px;
}

.pt-toggle-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 22px;
  border: none;
  background: none;
  border-radius: 100px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text-muted);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.pt-toggle-btn--active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 10px rgba(0, 109, 236, 0.32);
}

.pt-save-chip {
  font-size: 0.7rem;
  font-weight: 700;
  background: #dcfce7;
  color: #16a34a;
  padding: 2px 7px;
  border-radius: 100px;
  white-space: nowrap;
}

.pt-toggle-btn--active .pt-save-chip {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

/* Table wrapper */
.pt-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.pt-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--bg);
}

/* Header row */
.pt-th-label {
  width: 32%;
  padding: 28px 24px 20px;
  vertical-align: bottom;
  border-bottom: 1px solid var(--border);
}

.pt-th-plan {
  width: 22.6%;
  padding: 24px 20px 20px;
  text-align: center;
  vertical-align: bottom;
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
  position: relative;
}

.pt-th-plan--featured {
  background: var(--hero-panel-gradient);
  border-left: 2px solid transparent;
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

/* Accent top bar on featured */
.pt-th-plan--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 0 0 0 0;
}

.pt-plan-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 6px;
}

.pt-plan-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.pt-th-plan--featured .pt-plan-name {
  color: #fff;
}

.pt-plan-price-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  margin-bottom: 4px;
}

.pt-plan-price {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  white-space: nowrap;
}

.pt-th-plan--featured .pt-plan-price {
  color: #fff;
}

.pt-plan-period {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
}

.pt-th-plan--featured .pt-plan-period {
  color: rgba(255, 255, 255, 0.6);
}

.pt-plan-equiv {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.pt-th-plan--featured .pt-plan-equiv {
  color: rgba(255, 255, 255, 0.5);
}

.pt-plan-cta {
  display: block;
  margin-top: 14px;
  font-size: 0.83rem;
  padding: 9px 14px;
  width: 100%;
  text-align: center;
}

.pt-plan-cta--featured {
  background: #fff;
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  font-size: 0.83rem;
  font-weight: 700;
  padding: 9px 14px;
  display: block;
  width: 100%;
  text-align: center;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.15);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.pt-plan-cta--featured:hover {
  background: #f0f6ff;
  transform: translateY(-1px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.18);
}

/* Body rows */
.pt-row {
  border-bottom: 1px solid var(--border);
}

.pt-row:last-child {
  border-bottom: none;
}

.pt-row--even {
  background: var(--bg-alt);
}

.pt-td-label {
  padding: 15px 24px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
}

.pt-td-check {
  padding: 15px 20px;
  text-align: center;
  border-left: 1px solid var(--border);
  vertical-align: middle;
}

.pt-td-check--featured {
  background: rgba(0, 109, 236, 0.05);
  border-left-color: rgba(0, 109, 236, 0.1);
}

.pt-row--even .pt-td-check--featured {
  background: rgba(0, 109, 236, 0.08);
}

.pt-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 6px;
  flex-shrink: 0;
}

.pt-check--featured {
  background: var(--primary);
  color: #fff;
}

.pt-dash {
  color: var(--border);
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 640px) {
  .pt-toggle-btn {
    padding: 8px 16px;
    font-size: 0.82rem;
  }
  .pt-plan-price {
    font-size: 1.25rem;
  }
  .pt-td-label {
    font-size: 0.82rem;
    padding: 13px 14px;
  }
  .pt-td-check {
    padding: 13px 12px;
  }
  .pt-th-label {
    padding: 20px 14px 16px;
  }
  .pt-th-plan {
    padding: 20px 12px 16px;
  }
}

/* ========== Hodinová sazba ========== */

.cenik-hourly {
  background: var(--bg);
  padding-top: 0;
}

.hourly-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 48px;
  justify-content: space-between;
}

.hourly-card-content {
  flex: 1;
}

.hourly-card-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.hourly-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 12px;
}

.hourly-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 20px;
  max-width: 520px;
}

.hourly-card-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.hourly-card-features li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9rem;
  color: var(--text);
}

.hourly-card-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.hourly-card-price-side {
  text-align: center;
  flex-shrink: 0;
}

.hourly-price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
  white-space: nowrap;
}

.hourly-price-period {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hourly-cta {
  white-space: nowrap;
}

@media (max-width: 768px) {
  .hourly-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px;
    gap: 28px;
  }
  .hourly-card-price-side {
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 12px;
    flex-wrap: wrap;
  }
  .hourly-price-period {
    margin-bottom: 0;
  }
  .hourly-cta {
    margin-top: 12px;
  }
}

/* ── CTA sekce ── */

.cenik-cta-section {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 80px 0;
}

.cenik-cta-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cenik-cta-inner h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.cenik-cta-inner p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

.cenik-cta-btn {
  margin-top: 8px;
  font-size: 1rem;
  padding: 16px 36px;
}

.cenik-cta-back {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 4px;
  transition: color var(--transition);
}

.cenik-cta-back:hover {
  color: var(--primary);
}

/* Responsive */
@media (max-width: 1024px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }

  .addon-card--featured {
    transform: none;
  }

  .addon-card--featured:hover {
    transform: translateY(-4px);
  }
}

@media (max-width: 640px) {
  .cenik-hero {
    padding: 48px 0 56px;
  }

  .addon-card {
    padding: 28px 22px;
  }

  .addon-pricing-options {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.blog-post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.5em 0;
}

/* Footer */
.blog-post-footer {
  margin-top: 64px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* Responsive */
@media (max-width: 640px) {
  .blog-post {
    padding: 32px 0 72px;
  }

  .blog-post-container {
    padding: 0 20px;
  }

  .blog-post-back {
    margin-bottom: 28px;
  }

  .blog-post-body {
    font-size: 1rem;
  }

  .blog-post-body h2 {
    font-size: 1.3rem;
  }

  .blog-post-body h3 {
    font-size: 1.1rem;
  }
}
