/* ============================================================
   PlusHouse — Design System
   Verze 1.0 · 2026
   Brand font: PlusConnect Sans (Light 300 / Regular 400 / Medium 500 / Bold 700 / Black 900)
   Akcent: #B5E126 · Tmavá: #0F1117
   ============================================================ */

/* ---------- Fonty ---------- */
@font-face {
  font-family: 'PlusConnect Sans';
  src: url('../fonts/PlusConnectSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}
@font-face {
  font-family: 'PlusConnect Sans';
  src: url('../fonts/PlusConnectSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'PlusConnect Sans';
  src: url('../fonts/PlusConnectSans-Medium.ttf') format('truetype');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'PlusConnect Sans';
  src: url('../fonts/PlusConnectSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'PlusConnect Sans';
  src: url('../fonts/PlusConnectSans-Black.ttf') format('truetype');
  font-weight: 900;
  font-display: swap;
}

/* ---------- Design Tokens ---------- */
:root {
  /* Barvy — světlé téma */
  --bg:           #FFFFFF;
  --bg-elev:      #F7F8F5;
  --bg-soft:      #F1F3EE;

  /* Tmavé téma — pro hero, footer, dark sekce */
  --bg-dark:      #0F1117;
  --bg-dark-elev: #181B23;
  --bg-dark-soft: #21242E;

  /* Text */
  --ink:          #0F1117;
  --ink-soft:     #3F4452;
  --ink-mute:     #6B7180;
  --ink-on-dark:  #F4F5F2;
  --ink-on-dark-soft: #B8BBC2;

  /* Linky */
  --line:         #E6E8E3;
  --line-strong:  #D2D5CD;
  --line-dark:    #232735;

  /* Brand akcent */
  --accent:        #B5E126;
  --accent-ink:    #0F1117;
  --accent-hover:  #C5F236;
  --accent-soft:   rgba(181, 225, 38, 0.14);
  --accent-line:   rgba(181, 225, 38, 0.4);

  /* Stavy */
  --success:      #2A8A3F;
  --warning:      #C2741A;
  --error:        #B83232;

  /* Stíny */
  --shadow-sm:    0 1px 2px rgba(15, 17, 23, 0.06), 0 1px 3px rgba(15, 17, 23, 0.04);
  --shadow-md:    0 4px 12px rgba(15, 17, 23, 0.08), 0 2px 4px rgba(15, 17, 23, 0.04);
  --shadow-lg:    0 12px 32px rgba(15, 17, 23, 0.12), 0 4px 8px rgba(15, 17, 23, 0.06);
  --shadow-xl:    0 24px 48px rgba(15, 17, 23, 0.16), 0 8px 16px rgba(15, 17, 23, 0.08);

  /* Radius */
  --r-xs:         4px;
  --r-sm:         8px;
  --r-md:         14px;
  --r-lg:         22px;
  --r-xl:         32px;
  --r-full:       999px;

  /* Spacing scale (4px base) */
  --s-0:          0;
  --s-1:          4px;
  --s-2:          8px;
  --s-3:          12px;
  --s-4:          16px;
  --s-5:          24px;
  --s-6:          32px;
  --s-7:          48px;
  --s-8:          64px;
  --s-9:          96px;
  --s-10:         128px;

  /* Typography scale (fluidní) */
  --fs-display:   clamp(2.5rem, 3.4vw + 0.9rem, 4rem);
  --fs-h1:        clamp(2rem, 2.5vw + 1rem, 3.25rem);
  --fs-h2:        clamp(1.5rem, 1.5vw + 0.9rem, 2.25rem);
  --fs-h3:        clamp(1.25rem, 0.8vw + 0.95rem, 1.625rem);
  --fs-h4:        1.25rem;
  --fs-lead:      clamp(1.0625rem, 0.4vw + 0.95rem, 1.25rem);
  --fs-body:      1.0625rem;     /* 17px */
  --fs-small:     0.9375rem;     /* 15px */
  --fs-tiny:      0.8125rem;     /* 13px */
  --fs-label:     0.75rem;       /* 12px tracking */

  /* Layout */
  --container:    1200px;
  --container-narrow: 920px;
  --container-reading: 720px;

  /* Tranzice */
  --t-fast:       120ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-base:       220ms cubic-bezier(0.4, 0, 0.2, 1);
  --t-slow:       420ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Header */
  --header-h:     76px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  font-family: 'PlusConnect Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-weight: 400;
  font-size: var(--fs-body);
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  min-height: 100vh;
  overflow-x: hidden;
}

img, picture, svg, video {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-base);
}

button, input, textarea, select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

::selection {
  background: var(--accent);
  color: var(--accent-ink);
}

/* ---------- Typografie ---------- */
.h-display, .h1, .h2, .h3, .h4, .h5 {
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: inherit;
}

.h-display {
  font-size: var(--fs-display);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
}

.h1 { font-size: var(--fs-h1); letter-spacing: -0.025em; }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); letter-spacing: -0.015em; }
.h4 { font-size: var(--fs-h4); font-weight: 600; letter-spacing: -0.01em; }

.lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  font-weight: 400;
  color: var(--ink-soft);
}

.lead--dark {
  color: var(--ink-on-dark-soft);
}

.eyebrow {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--accent);
}

.eyebrow--center {
  justify-content: center;
}

.muted { color: var(--ink-mute); }
.muted-dark { color: var(--ink-on-dark-soft); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--s-5);
  padding-right: var(--s-5);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.container--reading {
  max-width: var(--container-reading);
}

.section {
  padding: var(--s-9) 0;
}

.section--sm { padding: var(--s-7) 0; }
.section--lg { padding: var(--s-10) 0; }

/* Trust strip + logo strip — tighter, paired together */
.trust-strip { padding-top: var(--s-7); padding-bottom: var(--s-5); }
.logo-strip { padding-top: var(--s-5); padding-bottom: var(--s-7); }

.section--dark {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
}

.section--dark .lead {
  color: var(--ink-on-dark-soft);
}

.section--dark .muted {
  color: var(--ink-on-dark-soft);
}

.section--dark a:not(.btn):not(.testimonial__link) {
  color: var(--ink-on-dark);
}

.section--soft {
  background: var(--bg-elev);
}

.section--accent {
  background: var(--accent);
  color: var(--accent-ink);
}

.section-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s-3);
  text-align: center;
  margin: 0 auto var(--s-7);
  max-width: 760px;
}

.section-head .eyebrow {
  align-self: center;      /* center the inline-flex eyebrow strip */
}

.section-head h2,
.section-head .h2 {
  margin: 0;
}

.section-head .lead {
  margin: 0 auto;
  max-width: 640px;
}

/* ---------- Grid ---------- */
.grid { display: grid; gap: var(--s-5); grid-auto-rows: 1fr; align-items: stretch; }
.grid--2  { grid-template-columns: repeat(2, 1fr); }
.grid--3  { grid-template-columns: repeat(3, 1fr); }
.grid--4  { grid-template-columns: repeat(4, 1fr); }
.grid--lg { gap: var(--s-6); }

/* Grid children stretch to row height; cards already use flex column internally */
.grid > .card,
.grid > .service-card,
.grid > .ph-feature,
.grid > .step,
.grid > article,
.grid > .testimonial { height: 100%; display: flex; flex-direction: column; }

@media (max-width: 920px) {
  .grid--2, .grid--3 { grid-template-columns: 1fr; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .grid--4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 24px;
  font-weight: 700;
  font-size: var(--fs-small);
  letter-spacing: 0.02em;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-base), background var(--t-base), border-color var(--t-base), color var(--t-base);
  white-space: nowrap;
  min-height: 48px;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--primary:hover {
  background: var(--accent-hover);
}

.btn--ghost {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn--ghost:hover {
  background: var(--accent);
  color: var(--accent-ink);
}

.btn--ghost-light {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn--ghost-light:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn--lg {
  padding: 18px 32px;
  font-size: var(--fs-body);
  min-height: 56px;
}

.btn--block {
  width: 100%;
}

.btn .arrow {
  transition: transform var(--t-base);
}

.btn:hover .arrow {
  transform: translateX(3px);
}

/* ---------- Header / Navigace ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15, 17, 23, 0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background var(--t-base), border-color var(--t-base);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--s-5);
  height: var(--header-h);
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
  font-weight: 900;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
  color: var(--ink-on-dark);
  text-decoration: none;
}

.site-header__logo .logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.25rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--s-1);
  margin-left: auto;
}

.site-nav__link {
  position: relative;
  padding: 10px 14px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-on-dark);
  border-radius: var(--r-sm);
  transition: color var(--t-fast), background var(--t-fast);
}

.site-nav__link:hover {
  color: var(--accent);
}

.site-nav__link.is-active {
  color: var(--accent);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.has-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink-on-dark);
  border-radius: var(--r-sm);
  cursor: pointer;
}

.has-dropdown__trigger:hover {
  color: var(--accent);
}

.has-dropdown__trigger::after {
  content: "";
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  margin-left: 2px;
  transition: transform var(--t-fast);
}

.has-dropdown:hover .has-dropdown__trigger::after,
.has-dropdown.is-open .has-dropdown__trigger::after {
  transform: translateY(0) rotate(225deg);
}

.has-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--bg);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: var(--s-3);
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-base), transform var(--t-base);
}

.has-dropdown:hover .has-dropdown__menu,
.has-dropdown:focus-within .has-dropdown__menu,
.has-dropdown.is-open .has-dropdown__menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.has-dropdown__menu a {
  display: block;
  padding: 10px 14px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--ink);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
}

.has-dropdown__menu a:hover {
  background: var(--accent-soft);
  color: var(--accent-ink);
}

.has-dropdown__menu a small {
  display: block;
  font-size: var(--fs-tiny);
  color: var(--ink-mute);
  font-weight: 400;
  margin-top: 2px;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: var(--s-3);
}

.site-header__cta .btn {
  min-height: 40px;
  padding: 10px 18px;
}

/* Mobil burger */
.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--r-sm);
  margin-left: auto;
  color: var(--ink-on-dark);
}

.burger__lines, .burger__lines::before, .burger__lines::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform var(--t-base);
}

.burger__lines::before { transform: translateY(-7px); }
.burger__lines::after  { transform: translateY(5px); }

.burger.is-open .burger__lines { background: transparent; }
.burger.is-open .burger__lines::before { transform: rotate(45deg); }
.burger.is-open .burger__lines::after  { transform: rotate(-45deg); }

@media (max-width: 980px) {
  .site-nav, .site-header__cta { display: none; }
  .burger { display: inline-flex; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  z-index: 99;
  padding: var(--s-6) var(--s-5);
  overflow-y: auto;
  transform: translateY(-110%);
  transition: transform var(--t-slow);
}

.mobile-menu.is-open {
  transform: translateY(0);
}

.mobile-menu__list {
  display: flex;
  flex-direction: column;
  gap: var(--s-1);
}

.mobile-menu__list a {
  display: block;
  padding: var(--s-4);
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid var(--line-dark);
  color: var(--ink-on-dark);
}

.mobile-menu__list a:hover { color: var(--accent); }

.mobile-menu__list .submenu a {
  font-size: 1rem;
  padding-left: var(--s-7);
  color: var(--ink-on-dark-soft);
  border-bottom: none;
}

.mobile-menu__cta {
  margin-top: var(--s-6);
  padding: 0 var(--s-4);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  padding: calc(var(--header-h) + var(--s-9)) 0 var(--s-10);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(181, 225, 38, 0.12), transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 90%, rgba(181, 225, 38, 0.08), transparent 60%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--s-7);
  align-items: center;
}

.hero__copy h1 {
  margin: var(--s-4) 0 var(--s-5);
}

.hero__copy .lead {
  margin-bottom: var(--s-6);
  max-width: 580px;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  margin-bottom: var(--s-5);
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
  font-size: var(--fs-small);
  color: var(--ink-on-dark-soft);
}

.hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.hero__meta-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero__visual {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(180deg, rgba(15,17,23,0.15) 0%, rgba(15,17,23,0.55) 70%, rgba(15,17,23,0.85) 100%),
    url('/assets/img/projekty/jasso-malhostice/fve-vyhled-stredohori.jpg') center/cover no-repeat,
    linear-gradient(135deg, var(--bg-dark-elev), var(--bg-dark-soft));
  border: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--s-6);
  gap: var(--s-3);
}

.hero__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(181,225,38,0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(181,225,38,0.10), transparent 55%);
  pointer-events: none;
}

.hero__visual-tag {
  position: relative;
  background: rgba(15, 17, 23, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--accent-line);
  color: var(--accent);
  padding: 8px 14px;
  border-radius: var(--r-full);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  align-self: flex-start;
}

.hero__visual-caption {
  position: relative;
  color: rgba(255,255,255,0.92);
  font-size: var(--fs-small);
  line-height: 1.45;
  max-width: 380px;
}

.hero__visual-caption strong {
  color: #fff;
  font-weight: 700;
}

@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { aspect-ratio: 16 / 11; }
  .hero { padding-bottom: var(--s-8); }
}

/* ---------- Cards ---------- */
.card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-base);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.card:hover {
  border-color: var(--ink);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.card--soft { background: var(--bg-elev); border-color: transparent; }
.card--dark { background: var(--bg-dark-elev); border-color: var(--line-dark); color: var(--ink-on-dark); }

.card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.card--dark .card__icon { background: rgba(181,225,38,0.14); color: var(--accent); }

.card__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  letter-spacing: -0.01em;
}

.card__text {
  color: var(--ink-soft);
  font-size: var(--fs-body);
  line-height: 1.5;
  flex: 1;
}

.card--dark .card__text { color: var(--ink-on-dark-soft); }

.card__link {
  margin-top: auto;
  font-weight: 700;
  font-size: var(--fs-small);
  color: var(--accent-ink);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.card--dark .card__link { color: var(--accent); }

.card__link:hover { color: var(--ink); }
.card--dark .card__link:hover { color: var(--ink-on-dark); }

.card__link .arrow { transition: transform var(--t-base); }
.card__link:hover .arrow { transform: translateX(3px); }

/* ---------- Service card (homepage) ---------- */
.service-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-base), box-shadow var(--t-base);
  display: flex;
  flex-direction: column;
}

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

.service-card__cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--bg-dark-elev), var(--bg-dark-soft));
  position: relative;
  display: flex;
  align-items: end;
  padding: var(--s-4);
}

.service-card__cover-tag {
  background: rgba(181, 225, 38, 0.92);
  color: var(--accent-ink);
  padding: 6px 12px;
  border-radius: var(--r-full);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}

.service-card__title {
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.015em;
}

.service-card__desc {
  color: var(--ink-soft);
  font-size: var(--fs-small);
  line-height: 1.5;
  flex: 1;
}

.service-card__link {
  align-self: flex-start;
  margin-top: var(--s-2);
  font-weight: 700;
  font-size: var(--fs-small);
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
}

.step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

/* Connector mezi kroky — gradient se rozplývá, takže funguje na jakémkoli pozadí */
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(72px + 8px);
  right: calc(-1 * var(--s-7));
  height: 2px;
  background: linear-gradient(to right, var(--accent-line) 0%, var(--accent-line) 50%, transparent 100%);
  border-radius: 2px;
  pointer-events: none;
}

.step__num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--accent-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.75rem;
  letter-spacing: -0.02em;
  box-shadow: 0 0 0 8px var(--accent-soft);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.step__title {
  font-size: var(--fs-h4);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-top: var(--s-2);
}

.step__text {
  color: var(--ink-soft);
  line-height: 1.55;
}

.section--dark .step__text { color: var(--ink-on-dark-soft); }

@media (max-width: 920px) {
  .steps { grid-template-columns: 1fr; gap: var(--s-6); }
  .step:not(:last-child)::after { display: none; }
}

/* ---------- Stat strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-5);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: var(--s-5);
  border-left: 3px solid var(--accent);
}

.stat__value {
  font-size: clamp(1.75rem, 1.5vw + 1rem, 2.5rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
}

.stat__label {
  font-size: var(--fs-small);
  color: var(--ink-mute);
}

.section--dark .stat__label { color: var(--ink-on-dark-soft); }

@media (max-width: 920px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .stats { grid-template-columns: 1fr; }
}

/* ---------- Logos / partners ---------- */
.logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: var(--s-7);
  opacity: 0.85;
}

.logos__item {
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  color: var(--ink-mute);
  white-space: nowrap;
  flex-shrink: 0;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: var(--r-xl);
  padding: var(--s-8) var(--s-7);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.cta-banner h2 {
  margin-bottom: var(--s-3);
}

.cta-banner__actions {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  justify-content: end;
}

.cta-banner .btn--primary {
  background: var(--accent-ink);
  color: var(--accent);
}

.cta-banner .btn--primary:hover { background: #1F2330; }

.cta-banner .btn--ghost-light {
  border-color: var(--accent-ink);
  color: var(--accent-ink);
}

@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; padding: var(--s-7) var(--s-5); }
  .cta-banner__actions { justify-content: start; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  padding: var(--s-9) 0 var(--s-5);
}

.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-6);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid var(--line-dark);
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
  max-width: 360px;
}

.site-footer__col h4 {
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--s-4);
}

.site-footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.site-footer__col a {
  color: var(--ink-on-dark-soft);
  font-size: var(--fs-small);
  transition: color var(--t-fast);
}

.site-footer__col a:hover {
  color: var(--accent);
}

.site-footer__bottom {
  margin-top: var(--s-5);
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-4);
  align-items: center;
  justify-content: space-between;
  font-size: var(--fs-tiny);
  color: var(--ink-on-dark-soft);
}

.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-5);
}

.site-footer__legal a:hover { color: var(--accent); }

.site-footer__social {
  display: flex;
  gap: var(--s-2);
}

.site-footer__social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--bg-dark-elev);
  border: 1px solid var(--line-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-on-dark);
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}

.site-footer__social a:hover {
  background: var(--accent);
  color: var(--accent-ink);
  border-color: var(--accent);
}

@media (max-width: 980px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .site-footer__bottom { flex-direction: column; align-items: start; }
}

/* ---------- Page hero (kratší než homepage hero) ---------- */
.page-hero {
  position: relative;
  background: var(--bg-dark);
  color: var(--ink-on-dark);
  padding: calc(var(--header-h) + var(--s-8)) 0 var(--s-8);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 50% at 70% 20%, rgba(181, 225, 38, 0.10), transparent 60%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  max-width: 760px;
}

.page-hero h1 {
  margin: var(--s-3) 0 var(--s-4);
}

/* Breadcrumbs */
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-2);
  font-size: var(--fs-small);
  color: var(--ink-on-dark-soft);
  margin-bottom: var(--s-3);
}

.crumbs a:hover { color: var(--accent); }
.crumbs__sep { opacity: 0.5; }

/* ---------- Feature list (with checkmarks) ---------- */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
}

.feature-list__item {
  position: relative;
  padding-left: 36px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.section--dark .feature-list__item { color: var(--ink-on-dark-soft); }

.feature-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent);
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 8.5l3 3 7-7' stroke='%230F1117' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 14px;
  background-repeat: no-repeat;
  background-position: center;
}

.feature-list__item strong {
  color: var(--ink);
  font-weight: 700;
}

.section--dark .feature-list__item strong { color: var(--ink-on-dark); }

/* ---------- Two-col content (image + text) ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-7);
  align-items: center;
}

.two-col--reverse > :first-child { order: 2; }

.two-col__media {
  border-radius: var(--r-xl);
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-dark-elev), var(--bg-dark-soft));
  overflow: hidden;
}

.two-col__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-col__content > .eyebrow { margin-bottom: var(--s-3); }
.two-col__content h2 { margin-bottom: var(--s-4); }
.two-col__content .lead { margin-bottom: var(--s-5); }

@media (max-width: 920px) {
  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse > :first-child { order: 0; }
}

/* ---------- Form ---------- */
.form {
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: var(--fs-small);
  font-weight: 600;
  color: var(--ink);
}

.field input, .field textarea, .field select {
  padding: 14px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-md);
  background: var(--bg);
  font-size: var(--fs-body);
  font-family: inherit;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  width: 100%;
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.field--check {
  flex-direction: row;
  align-items: start;
  gap: var(--s-3);
}

.field--check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
}

.field--check label {
  font-weight: 400;
  color: var(--ink-soft);
  font-size: var(--fs-small);
  line-height: 1.5;
}

.field--check a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-underline-offset: 3px;
}

/* ---------- Blog ---------- */
.blog-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--s-3);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--s-3);
  margin-bottom: var(--s-7);
  box-shadow: var(--shadow-sm);
}

.blog-toolbar select, .blog-toolbar input {
  padding: 12px 16px;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--r-full);
  font-size: var(--fs-small);
  background: var(--bg);
  min-width: 220px;
  flex: 1;
}

.blog-toolbar select:focus, .blog-toolbar input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.blog-toolbar__count {
  font-size: var(--fs-small);
  color: var(--ink-mute);
  margin-left: auto;
  padding: 0 var(--s-3);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: var(--s-5);
}

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

.blog-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: var(--ink);
}

.blog-card__cover {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, var(--bg-dark-elev), var(--bg-dark-soft));
  overflow: hidden;
  position: relative;
}

.blog-card__cover img {
  width: 100%; height: 100%; object-fit: cover;
}

.blog-card__cat {
  position: absolute;
  top: var(--s-3);
  left: var(--s-3);
  background: var(--accent);
  color: var(--accent-ink);
  font-size: var(--fs-tiny);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: var(--r-full);
}

.blog-card__body {
  padding: var(--s-5);
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  flex: 1;
}

.blog-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.blog-card__excerpt {
  font-size: var(--fs-small);
  color: var(--ink-soft);
  line-height: 1.55;
  flex: 1;
}

.blog-card__meta {
  display: flex;
  gap: var(--s-3);
  font-size: var(--fs-tiny);
  color: var(--ink-mute);
  margin-top: auto;
  padding-top: var(--s-3);
  border-top: 1px solid var(--line);
}

/* Blog article */
.article {
  max-width: var(--container-reading);
  margin: 0 auto;
  padding: var(--s-7) var(--s-5) var(--s-9);
}

.article h1 {
  font-size: var(--fs-h1);
  font-weight: 900;
  letter-spacing: -0.025em;
  margin-bottom: var(--s-5);
  line-height: 1.1;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: var(--fs-small);
  color: var(--ink-mute);
  margin-bottom: var(--s-6);
}

.article__meta .badge {
  background: var(--accent-soft);
  color: var(--accent-ink);
  padding: 4px 10px;
  border-radius: var(--r-full);
  font-weight: 700;
  font-size: var(--fs-tiny);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article__cover {
  margin: 0 calc(-1 * var(--s-4)) var(--s-7);
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.article__cover img { width: 100%; height: 100%; object-fit: cover; }

.article p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s-5);
}

.article h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: var(--s-7) 0 var(--s-4);
  scroll-margin-top: 100px;
}

.article h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  letter-spacing: -0.01em;
  margin: var(--s-6) 0 var(--s-3);
}

.article ul, .article ol {
  margin: var(--s-4) 0 var(--s-5) var(--s-5);
  list-style: disc;
}

.article ol { list-style: decimal; }

.article li {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: var(--s-2);
}

.article a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  font-weight: 500;
}

.article a:hover { color: var(--accent-ink); background: var(--accent-soft); }

.article strong { color: var(--ink); font-weight: 700; }

.article blockquote {
  border-left: 4px solid var(--accent);
  padding: var(--s-3) 0 var(--s-3) var(--s-5);
  margin: var(--s-6) 0;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}

.article .callout {
  background: var(--bg-elev);
  border-left: 4px solid var(--accent);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin: var(--s-6) 0;
}

.article .callout strong { display: block; margin-bottom: var(--s-2); }

.article hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: var(--s-7) 0;
}

.article .related-services {
  background: var(--bg-elev);
  padding: var(--s-6);
  border-radius: var(--r-lg);
  margin-top: var(--s-8);
}

.article .related-services h3 {
  margin-top: 0;
  font-size: var(--fs-h4);
}

.article .related-services ul {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--s-2);
}

.article .related-services a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  font-weight: 600;
}

.article .related-services a::after {
  content: "→";
  transition: transform var(--t-base);
}

.article .related-services a:hover::after { transform: translateX(3px); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.text-balance { text-wrap: balance; }
.mt-4 { margin-top: var(--s-4); }
.mt-5 { margin-top: var(--s-5); }
.mt-6 { margin-top: var(--s-6); }
.mt-7 { margin-top: var(--s-7); }
.mb-4 { margin-bottom: var(--s-4); }
.mb-5 { margin-bottom: var(--s-5); }
.mb-6 { margin-bottom: var(--s-6); }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-banner, .burger, .mobile-menu { display: none !important; }
  body { color: #000; background: #fff; }
}

/* ============================================================
   SITE ENHANCE — Cookie bar, Search overlay, Search toggle
   ============================================================ */

/* ---------- Search toggle (lupa v navigaci) ---------- */
.ph-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  margin-left: var(--s-3, 8px);
}
.ph-search-toggle:hover {
  background: rgba(181, 225, 38, 0.12);
  border-color: var(--accent, #B5E126);
  color: var(--accent, #B5E126);
  transform: translateY(-1px);
}
.ph-search-toggle:focus-visible {
  outline: 2px solid var(--accent, #B5E126);
  outline-offset: 2px;
}

/* ---------- Search overlay ---------- */
.ph-search {
  position: fixed;
  inset: 0;
  background: rgba(8, 10, 14, 0.86);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9998;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 16px 24px;
  opacity: 0;
  transition: opacity 0.18s ease;
}
.ph-search.is-open { display: flex; opacity: 1; }
.ph-search__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}
.ph-search__close:hover { background: rgba(255, 255, 255, 0.12); }
.ph-search__box {
  width: 100%;
  max-width: 720px;
  background: #14171F;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  overflow: hidden;
}
.ph-search__form {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(181, 225, 38, 0.04), transparent);
}
.ph-search__icon { color: var(--accent, #B5E126); flex: 0 0 auto; }
.ph-search__input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 18px;
  font-family: inherit;
  padding: 8px 0;
}
.ph-search__input::placeholder { color: rgba(255, 255, 255, 0.45); }
.ph-search__kbd {
  font-family: ui-monospace, SFMono-Regular, monospace;
  font-size: 11px;
  padding: 4px 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.65);
  background: rgba(255, 255, 255, 0.04);
}
.ph-search__results {
  max-height: 50vh;
  overflow-y: auto;
}
.ph-search__hit {
  display: block;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  color: #fff;
  text-decoration: none;
  transition: background 0.12s;
}
.ph-search__hit:hover, .ph-search__hit:focus-visible {
  background: rgba(181, 225, 38, 0.06);
  outline: none;
}
.ph-search__hit strong { display: block; font-size: 15px; font-weight: 600; }
.ph-search__hit span { display: block; font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-top: 2px; }
.ph-search__empty { padding: 22px; color: rgba(255, 255, 255, 0.6); font-size: 14px; }
.ph-search__empty a { color: var(--accent, #B5E126); }
.ph-search__suggest {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}
.ph-search__suggest button {
  background: rgba(181, 225, 38, 0.08);
  border: 1px solid rgba(181, 225, 38, 0.25);
  color: var(--accent, #B5E126);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.12s;
}
.ph-search__suggest button:hover { background: rgba(181, 225, 38, 0.18); }

/* ---------- Cookie bar ---------- */
.ph-cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  background: #14171F;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.2, 0.9, 0.3, 1.2), opacity 0.32s;
  max-width: 720px;
  margin: 0 auto;
}
.ph-cookie.is-open { transform: translateY(0); opacity: 1; }
.ph-cookie__inner { padding: 20px 22px; display: grid; gap: 14px; }
.ph-cookie__copy strong { display: block; color: var(--accent, #B5E126); font-size: 14px; margin-bottom: 4px; letter-spacing: 0.02em; }
.ph-cookie__copy p { margin: 0; color: rgba(255, 255, 255, 0.78); font-size: 14px; line-height: 1.55; }
.ph-cookie__copy a { color: var(--accent, #B5E126); text-decoration: underline; }
.ph-cookie__panel { display: grid; gap: 8px; padding: 12px 14px; background: rgba(255, 255, 255, 0.03); border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.05); }
.ph-cookie__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 13px; color: rgba(255, 255, 255, 0.85); cursor: pointer; }
.ph-cookie__row strong { color: #fff; font-weight: 600; }
.ph-cookie__row input[type="checkbox"] {
  appearance: none;
  width: 36px; height: 20px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  position: relative; cursor: pointer;
  transition: background 0.18s;
  flex: 0 0 auto;
}
.ph-cookie__row input[type="checkbox"]::after {
  content: ''; position: absolute; top: 2px; left: 2px;
  width: 16px; height: 16px; border-radius: 999px;
  background: #fff; transition: transform 0.18s;
}
.ph-cookie__row input[type="checkbox"]:checked {
  background: var(--accent, #B5E126);
}
.ph-cookie__row input[type="checkbox"]:checked::after {
  transform: translateX(16px);
  background: #0F1117;
}
.ph-cookie__row input[type="checkbox"]:disabled { opacity: 0.6; cursor: not-allowed; }
.ph-cookie__actions { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.ph-cookie__actions .btn { font-size: 13px; padding: 8px 16px; }

/* ---------- Mobile responzivita pro novou navigaci a hero ---------- */
@media (max-width: 720px) {
  .ph-cookie { left: 8px; right: 8px; bottom: 8px; border-radius: 14px; }
  .ph-cookie__inner { padding: 16px 16px; }
  .ph-cookie__actions { justify-content: stretch; }
  .ph-cookie__actions .btn { flex: 1 1 auto; min-width: 0; }
  .ph-search { padding: 56px 8px 16px; }
  .ph-search__box { border-radius: 14px; }
  .ph-search__form { padding: 14px 16px; }
  .ph-search__input { font-size: 16px; }
  .ph-search__kbd { display: none; }
  .ph-search__hit { padding: 12px 16px; }
  .ph-search__suggest { padding: 12px 16px; }
}

/* ---------- Globální mobile hardening (kdyby chybělo v původních media queries) ---------- */
@media (max-width: 900px) {
  .site-header__cta { display: none; }
  .site-nav { display: none; }
  .burger { display: inline-flex; }
  .ph-search-toggle { width: 38px; height: 38px; }
  .container { padding-left: 16px; padding-right: 16px; }
  .h-display, h1.h-display { font-size: clamp(2.2rem, 7vw, 3.4rem); line-height: 1.1; }
  .h1 { font-size: clamp(1.8rem, 5.5vw, 2.6rem); }
  .h2 { font-size: clamp(1.4rem, 4.5vw, 2rem); }
  .grid--3 { grid-template-columns: 1fr; }
  .grid--2 { grid-template-columns: 1fr; }
  .hero__inner { grid-template-columns: 1fr !important; gap: var(--s-5, 24px); }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .site-footer__top { grid-template-columns: 1fr 1fr; gap: 24px; }
  .site-footer__brand { grid-column: 1 / -1; }
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
}
@media (max-width: 540px) {
  .site-footer__top { grid-template-columns: 1fr; }
  .btn--lg { font-size: 14px; padding: 12px 18px; }
  .article { padding-left: 6px; padding-right: 6px; }
  .article h2 { font-size: 1.4rem; }
  .article h3 { font-size: 1.15rem; }
}

/* Burger viditelný na mobilu */
.burger { display: none; }
@media (max-width: 900px) { .burger { display: inline-flex; } }

/* Mobile menu pozice fix (pokud chybí) */
.mobile-menu { display: none; }
.mobile-menu.is-open { display: block; }

/* ============================================================
   PRICING TABLE — Položkový ceník (zrcadlí ERP)
   ============================================================ */
.ph-pricing { color: var(--ink, #fff); }
.ph-pricing__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: stretch;
  margin: var(--s-5, 24px) 0 var(--s-4, 16px);
}
.ph-pricing__search {
  position: relative;
  flex: 1 1 380px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  transition: border-color 0.18s, background 0.18s, box-shadow 0.18s;
}
.ph-pricing__search:focus-within {
  border-color: var(--accent, #B5E126);
  background: rgba(181, 225, 38, 0.05);
  box-shadow: 0 0 0 4px rgba(181, 225, 38, 0.08);
}
.ph-pricing__search svg { color: rgba(255, 255, 255, 0.45); flex: 0 0 auto; }
.ph-pricing__search:focus-within svg { color: var(--accent, #B5E126); }
.ph-pricing__search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}
.ph-pricing__search input::placeholder { color: rgba(255, 255, 255, 0.4); }

/* Filtry — pill chipsy s ikonami a count badge */
.ph-pricing__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  flex: 1 1 100%;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.15) transparent;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 4px;
  margin: 0 -2px;
}
.ph-pricing__filters::-webkit-scrollbar { height: 4px; }
.ph-pricing__filters::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 4px; }
.ph-pricing__filters::-webkit-scrollbar-track { background: transparent; }

.ph-pricing__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  padding: 8px 12px 8px 10px;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.15s cubic-bezier(.2,.8,.2,1);
  white-space: nowrap;
  flex: 0 0 auto;
  line-height: 1;
}
.ph-pricing__chip:hover {
  background: rgba(181, 225, 38, 0.08);
  color: #fff;
  border-color: rgba(181, 225, 38, 0.3);
  transform: translateY(-1px);
}
.ph-pricing__chip:focus-visible {
  outline: 2px solid var(--accent, #B5E126);
  outline-offset: 2px;
}
.ph-pricing__chip.is-active {
  background: var(--accent, #B5E126);
  color: #0F1117;
  border-color: var(--accent, #B5E126);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(181, 225, 38, 0.25);
}
.ph-pricing__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}
.ph-pricing__chip-icon svg { width: 18px; height: 18px; opacity: 0.7; }
.ph-pricing__chip:hover .ph-pricing__chip-icon svg,
.ph-pricing__chip.is-active .ph-pricing__chip-icon svg { opacity: 1; }
.ph-pricing__chip-label { line-height: 1; }
.ph-pricing__chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0;
  line-height: 1;
}
.ph-pricing__chip:hover .ph-pricing__chip-count {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}
.ph-pricing__chip.is-active .ph-pricing__chip-count {
  background: rgba(15, 17, 23, 0.18);
  color: rgba(15, 17, 23, 0.9);
}

/* Meta info — počet + datum aktualizace */
.ph-pricing__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px 24px;
  margin: 4px 0 18px;
  padding: 12px 16px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
}
.ph-pricing__meta [data-pricing-count] {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.ph-pricing__count-num {
  display: inline-block;
  background: rgba(181, 225, 38, 0.12);
  color: var(--accent, #B5E126);
  padding: 3px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  font-size: 13px;
  margin-right: 4px;
  line-height: 1.4;
}
.ph-pricing__meta [data-pricing-updated] {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.01em;
}
.ph-pricing__meta [data-pricing-updated] svg { color: rgba(255, 255, 255, 0.45); flex: 0 0 auto; }
.ph-pricing__table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
}
.ph-pricing__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.ph-pricing__table th, .ph-pricing__table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: top;
}
.ph-pricing__table th {
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.02);
  position: sticky;
  top: 0;
  z-index: 1;
}
.ph-pricing__table td.num, .ph-pricing__table th.num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
.ph-pricing__table td strong { font-weight: 600; color: #fff; }
.ph-pricing__table tbody tr:hover { background: rgba(181, 225, 38, 0.04); }
.ph-pricing__cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(181, 225, 38, 0.1);
  color: var(--accent, #B5E126);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.ph-pricing__empty {
  padding: 32px 16px;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  margin-top: 12px;
}

@media (max-width: 720px) {
  .ph-pricing__table { font-size: 13px; }
  .ph-pricing__table th, .ph-pricing__table td { padding: 10px 12px; }
}

/* ============================================================
   Service card photo cover varianta
   ============================================================ */
.service-card__cover--photo {
  background-size: cover !important;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.service-card__cover--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 23, 0) 40%, rgba(15, 17, 23, 0.55) 100%);
  pointer-events: none;
}
.service-card__cover--photo .service-card__cover-tag {
  position: relative;
  z-index: 1;
}

/* ============================================================
   Page hero s fotkou — pro service stránky
   ============================================================ */
.page-hero--photo {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  z-index: -2;
}
.page-hero--photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 17, 23, 0.92) 0%, rgba(15, 17, 23, 0.75) 50%, rgba(15, 17, 23, 0.55) 100%);
  z-index: -1;
}

/* ============================================================
   Blog article fotky — figure / figcaption
   ============================================================ */
.article figure {
  margin: var(--s-6, 32px) 0;
}
.article figure img {
  width: 100%;
  height: auto;
  border-radius: var(--r-lg, 14px);
  display: block;
}
.article figure figcaption {
  margin-top: var(--s-3, 12px);
  font-size: 14px;
  color: var(--ink-mute, #6B7180);
  font-style: italic;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   GALERIE REFERENCÍ
   ============================================================ */
.ph-ref { color: var(--ink, #fff); }
.ph-ref__loading {
  text-align: center;
  padding: 80px 16px;
  color: rgba(255, 255, 255, 0.6);
}
.ph-ref__empty {
  text-align: center;
  padding: 80px 16px;
  color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 16px;
}

.ph-ref__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 24px;
}
.ph-ref__search {
  position: relative;
  flex: 1 1 320px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  transition: border-color 0.15s, background 0.15s;
}
.ph-ref__search:focus-within {
  border-color: var(--accent, #B5E126);
  background: rgba(181, 225, 38, 0.06);
}
.ph-ref__search svg { color: rgba(255, 255, 255, 0.5); flex: 0 0 auto; }
.ph-ref__search input {
  flex: 1;
  background: transparent;
  border: 0;
  outline: none;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  min-width: 0;
}
.ph-ref__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  flex: 1 1 100%;
}
.ph-ref__chip {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.12s;
}
.ph-ref__chip:hover {
  background: rgba(181, 225, 38, 0.08);
  color: #fff;
}
.ph-ref__chip.is-active {
  background: var(--accent, #B5E126);
  color: #0F1117;
  border-color: var(--accent, #B5E126);
  font-weight: 600;
}
.ph-ref__count {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 24px;
}

.ph-ref__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 24px;
}
.ph-ref__grid > * { display: flex; flex-direction: column; height: 100%; }
.ph-ref__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: transform 0.18s, border-color 0.18s, box-shadow 0.18s;
  display: flex;
  flex-direction: column;
}
.ph-ref__card:hover {
  border-color: rgba(181, 225, 38, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.ph-ref__cover {
  display: block;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
}
.ph-ref__cover::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 17, 23, 0) 50%, rgba(15, 17, 23, 0.65) 100%);
  pointer-events: none;
}
.ph-ref__photo-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(15, 17, 23, 0.85);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  z-index: 1;
}
.ph-ref__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}
.ph-ref__cat {
  display: inline-block;
  padding: 3px 10px;
  background: rgba(181, 225, 38, 0.1);
  color: var(--accent, #B5E126);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.02em;
  align-self: flex-start;
  margin-bottom: 4px;
}
.ph-ref__title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 4px;
  color: #fff;
}
.ph-ref__meta {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 8px;
}
.ph-ref__desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 16px;
}
.ph-ref__link {
  margin-top: auto;
  color: var(--accent, #B5E126);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.15s;
}
.ph-ref__link:hover { gap: 10px; }
.ph-ref__link--disabled {
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
  font-weight: 400;
}

/* ============================================================
   MARKETING — trust strip, testimonials, hero assurance
   ============================================================ */

/* Hero assurance line — pod CTA */
.hero__assurance {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: var(--s-4, 16px);
  padding: 8px 14px;
  background: rgba(181, 225, 38, 0.06);
  border: 1px solid rgba(181, 225, 38, 0.18);
  border-radius: 999px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}
.hero__assurance svg { color: var(--accent, #B5E126); flex: 0 0 auto; }

/* Trust statistics */
.trust-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}
.trust-stat {
  padding: 14px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.2s;
}
.trust-stat:hover {
  background: rgba(181, 225, 38, 0.04);
  border-color: rgba(181, 225, 38, 0.2);
  transform: translateY(-2px);
}
.trust-stat__num {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--accent, #B5E126);
  margin-bottom: 4px;
  font-variant-numeric: tabular-nums;
}
.trust-stat__label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.4;
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  gap: 24px;
}
.testimonials > * { height: 100%; }
.testimonial {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s, transform 0.2s;
}
.testimonial:hover {
  border-color: rgba(181, 225, 38, 0.25);
  transform: translateY(-3px);
}
.testimonial__rating {
  color: var(--accent, #B5E126);
  font-size: 18px;
  letter-spacing: 4px;
  line-height: 1;
}
.testimonial__quote {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.92);
  font-style: italic;
  padding-left: 12px;
  border-left: 3px solid var(--accent, #B5E126);
}
.testimonial__author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.testimonial__author strong {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}
.testimonial__author span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
}
.testimonial__link {
  color: var(--accent, #B5E126);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.15s;
  margin-top: auto;
}
.testimonial__link:hover { gap: 8px; }

/* CTA banner assurance — checklist */
.cta-banner__assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}
.cta-banner__assurance span { white-space: nowrap; }

/* Floating mobile CTA — viditelný jen na mobilu, vpravo dole */
.ph-fab {
  position: fixed;
  bottom: 16px;
  right: 16px;
  z-index: 9990;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: var(--accent, #B5E126);
  color: #0F1117;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(181, 225, 38, 0.4);
  transform: translateY(0);
  transition: transform 0.2s, box-shadow 0.2s;
}
.ph-fab:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45), 0 6px 16px rgba(181, 225, 38, 0.5);
}
.ph-fab svg { color: #0F1117; }

@media (max-width: 720px) {
  .ph-fab { display: inline-flex; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .trust-stat { padding: 12px 8px; }
  .testimonial { padding: 22px 20px 20px; }
  .cta-banner__assurance { gap: 10px; font-size: 12px; }
}
@media (max-width: 480px) {
  .hero__assurance { font-size: 12px; padding: 7px 12px; }
  .ph-fab { padding: 12px 18px; font-size: 13px; bottom: 12px; right: 12px; }
}

/* ============================================================
   REFSITE rating — hero + testimonial pct
   ============================================================ */
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: var(--s-3, 12px);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  transition: all 0.2s;
}
.hero__rating:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(181, 225, 38, 0.35);
  transform: translateY(-1px);
}
.hero__rating-stars {
  color: var(--accent, #B5E126);
  font-size: 16px;
  letter-spacing: 2px;
  line-height: 1;
}
.hero__rating-num {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: rgba(181, 225, 38, 0.15);
  border-radius: 999px;
  color: var(--accent, #B5E126);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.hero__rating-text { color: rgba(255, 255, 255, 0.75); }
.hero__rating-text strong { color: #fff; font-weight: 600; }

.testimonial__pct {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 8px;
  background: rgba(181, 225, 38, 0.12);
  border-radius: 999px;
  color: var(--accent, #B5E126);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  vertical-align: middle;
  font-family: inherit;
}

@media (max-width: 540px) {
  .hero__rating { flex-wrap: wrap; gap: 8px; padding: 10px 12px; font-size: 12px; }
  .hero__rating-text { flex: 1 1 100%; }
}

/* ============================================================
   FVE KALKULAČKA — interaktivní slidery + výsledky
   ============================================================ */
.kalk {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.kalk__inputs {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  padding: 32px;
}

/* Mode toggle (B2C / B2B segmented control) */
.kalk__mode-toggle {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  margin-bottom: 24px;
}
.kalk__mode-btn {
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s;
  font-family: inherit;
}
.kalk__mode-btn:hover { color: #fff; }
.kalk__mode-btn.is-active {
  background: var(--accent, #B5E126);
  color: var(--accent-ink, #0F1117);
}

.kalk__field { margin-bottom: 28px; }
.kalk__field:last-child { margin-bottom: 0; }
.kalk__label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.95);
}
.kalk__hint {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  font-weight: 400;
  margin-left: 6px;
}
.kalk__range {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  margin-bottom: 6px;
}
.kalk__range input[type="range"] {
  width: 100%;
  height: 6px;
  appearance: none;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  outline: none;
}
.kalk__range input[type="range"]::-webkit-slider-thumb {
  appearance: none;
  width: 22px; height: 22px;
  background: var(--accent, #B5E126);
  border: 3px solid #0F1117;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--accent, #B5E126);
}
.kalk__range input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--accent, #B5E126);
  border: 3px solid #0F1117;
  border-radius: 50%;
  cursor: pointer;
}
.kalk__value {
  display: inline-flex;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--accent, #B5E126);
  background: rgba(181, 225, 38, 0.12);
  padding: 4px 12px;
  border-radius: 999px;
  min-width: 110px;
  justify-content: center;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.kalk__scale {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  padding-right: 130px;
  font-variant-numeric: tabular-nums;
}

.kalk__opts {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
}
.kalk__opts--check { grid-template-columns: 1fr 1fr; }
.kalk__opt {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.15s;
}
.kalk__opt:hover { border-color: rgba(181, 225, 38, 0.25); background: rgba(181, 225, 38, 0.04); }
.kalk__opt input { margin-top: 2px; flex: 0 0 auto; accent-color: var(--accent, #B5E126); }
.kalk__opt-body { display: block; }
.kalk__opt-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.kalk__opt-body small {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.4;
}
.kalk__opt:has(input:checked) {
  border-color: var(--accent, #B5E126);
  background: rgba(181, 225, 38, 0.08);
}

/* Výsledky vpravo */
.kalk__results {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 100px;
}
.kalk__result-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px 20px;
  transition: all 0.18s;
}
.kalk__result-card--accent {
  background: linear-gradient(135deg, rgba(181, 225, 38, 0.1), rgba(181, 225, 38, 0.04));
  border-color: rgba(181, 225, 38, 0.3);
}
.kalk__result-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 4px;
}
.kalk__result-card--accent .kalk__result-label { color: var(--accent, #B5E126); }
.kalk__result-num {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}
.kalk__result-card--accent .kalk__result-num { color: var(--accent, #B5E126); }
.kalk__result-unit {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  margin-left: 4px;
}
.kalk__result-card--accent .kalk__result-unit { color: rgba(181, 225, 38, 0.7); }
.kalk__result-meta {
  display: block;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  line-height: 1.5;
}
.kalk__cta {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Methodology — collapsed details */
.kalk__methodology {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 18px 22px;
}
.kalk__methodology summary {
  cursor: pointer;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  list-style: none;
  position: relative;
  padding-right: 32px;
}
.kalk__methodology summary::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 22px;
  color: var(--accent, #B5E126);
  transition: transform 0.2s;
}
.kalk__methodology[open] summary::after { content: '−'; }
.kalk__methodology-body {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.kalk__methodology-body p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  margin: 0 0 12px;
}

@media (max-width: 1024px) {
  .kalk { grid-template-columns: 1fr; }
  .kalk__results { position: static; }
}
@media (max-width: 720px) {
  .kalk__inputs { padding: 22px 20px; }
  .kalk__opts, .kalk__opts--check { grid-template-columns: 1fr; }
  .kalk__scale { padding-right: 0; font-size: 10px; }
  .kalk__value { min-width: 90px; font-size: 13px; }
}

/* ============================================================
   EXIT-INTENT MODAL
   ============================================================ */
.ph-exit {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(8, 10, 14, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  transition: opacity 0.2s;
}
.ph-exit.is-open { display: flex; opacity: 1; }
.ph-exit__box {
  position: relative;
  width: 100%;
  max-width: 540px;
  background: linear-gradient(180deg, #14171F 0%, #1a1d27 100%);
  border: 1px solid rgba(181, 225, 38, 0.25);
  border-radius: 18px;
  padding: 36px 32px 28px;
  color: #fff;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5);
  transform: translateY(20px) scale(0.96);
  opacity: 0;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.3, 1.1);
}
.ph-exit.is-open .ph-exit__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.ph-exit__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.ph-exit__close:hover { background: rgba(255, 255, 255, 0.12); color: #fff; }
.ph-exit__eyebrow {
  display: inline-block;
  background: rgba(181, 225, 38, 0.15);
  color: var(--accent, #B5E126);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.ph-exit__title {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.ph-exit__body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 22px;
}
.ph-exit__body strong { color: var(--accent, #B5E126); }
.ph-exit__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.ph-exit__actions .btn { width: 100%; justify-content: center; }
.ph-exit__small {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  margin: 14px 0 0;
}

/* ============================================================
   LEAD MAGNET — landing /lead/10-chyb-fve
   ============================================================ */
.lm-hero {
  background: linear-gradient(120deg, rgba(15, 17, 23, 0.95) 0%, rgba(20, 23, 31, 0.95) 100%);
  padding: 60px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.lm-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: start;
}
.lm-cover {
  position: sticky;
  top: 100px;
  background: linear-gradient(135deg, #14171F, #1a1d27);
  border: 1px solid rgba(181, 225, 38, 0.25);
  border-radius: 18px;
  padding: 36px 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}
.lm-cover__visual {
  aspect-ratio: 4 / 5;
  background: linear-gradient(135deg, #0F1117, #1a1d27);
  border: 1px solid rgba(181, 225, 38, 0.2);
  border-radius: 12px;
  padding: 22px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.lm-cover__visual::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(181, 225, 38, 0.08), transparent 60%);
}
.lm-cover__num {
  font-size: 72px;
  font-weight: 900;
  color: var(--accent, #B5E126);
  line-height: 1;
  letter-spacing: -0.04em;
}
.lm-cover__name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.lm-cover__brand {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lm-form input[type="email"],
.lm-form input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  margin-bottom: 10px;
  transition: border-color 0.15s, background 0.15s;
}
.lm-form input:focus {
  border-color: var(--accent, #B5E126);
  background: rgba(181, 225, 38, 0.05);
}
.lm-form label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
  margin: 12px 0 18px;
  cursor: pointer;
}
.lm-form input[type="checkbox"] { margin-top: 2px; flex: 0 0 auto; accent-color: var(--accent, #B5E126); }

@media (max-width: 900px) {
  .lm-grid { grid-template-columns: 1fr; }
  .lm-cover { position: static; }
}

/* ============================================================
   MOTION DESIGN — showcase efekty (motion.js + CSS animace)
   Respektuje prefers-reduced-motion.
   ============================================================ */

/* 1) SCROLL PROGRESS BAR */
.ph-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent, #B5E126) 0%, #DBFE5C 50%, var(--accent, #B5E126) 100%);
  background-size: 200% 100%;
  transform-origin: left;
  transform: scaleX(0);
  z-index: 10000;
  pointer-events: none;
  box-shadow: 0 0 12px rgba(181, 225, 38, 0.6);
  animation: phShimmer 3s linear infinite;
  will-change: transform;
}
@keyframes phShimmer {
  to { background-position: -200% 0; }
}

/* 2) REVEAL ON SCROLL — fade + slide up
   Defaults to VISIBLE. Hidden state only when JS aktivuje .js-motion na <html>.
   Tím se zaručí, že bez JS nebo při pomalém načtení je text vždy viditelný. */
.ph-reveal {
  transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.js-motion .ph-reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(28px);
  will-change: opacity, transform;
}
.ph-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* 3) NUMBER COUNTERS — pulse na první render */
.trust-stat__num {
  display: inline-block;
  transition: text-shadow 0.4s;
}
.trust-stat:hover .trust-stat__num {
  text-shadow: 0 0 24px rgba(181, 225, 38, 0.6);
}

/* 4) MAGNETIC BUTTONS — transform handled v JS, jen smooth transition */
.btn--primary.btn--lg,
.ph-fab {
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), background 0.2s, box-shadow 0.2s !important;
  will-change: transform;
}

/* 5) 3D TILT — base style, transform handled v JS */
.service-card,
.testimonial,
.ph-ref__card {
  transform-style: preserve-3d;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover,
.testimonial:hover,
.ph-ref__card:hover {
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(181, 225, 38, 0.15);
}
/* Service card cover lift z hloubky */
.service-card__cover,
.testimonial__rating,
.ph-ref__cover {
  transform: translateZ(20px);
}

/* 6) PARALLAX — page-hero--photo */
.page-hero--photo::before {
  transform: translate3d(0, var(--parallax-y, 0), 0);
  transition: transform 0.05s linear;
  will-change: transform;
}

/* 7) MARQUEE — partner loga jako infinite scroll */
.logos--marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.logos__track {
  display: flex;
  gap: var(--s-6, 32px);
  width: max-content;
  animation: phMarquee 28s linear infinite;
  will-change: transform;
}
.logos__track:hover { animation-play-state: paused; }
@keyframes phMarquee {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

/* 8) CURSOR BLOB — radiální gradient sledující kurzor */
.ph-blob {
  position: fixed;
  top: 0;
  left: 0;
  width: 600px;
  height: 600px;
  pointer-events: none;
  border-radius: 50%;
  margin-left: -300px;
  margin-top: -300px;
  background: radial-gradient(circle, rgba(181, 225, 38, 0.10) 0%, rgba(181, 225, 38, 0.04) 30%, transparent 60%);
  z-index: 1;
  mix-blend-mode: screen;
  will-change: transform;
  transition: opacity 0.4s;
  opacity: 0;
  animation: phBlobIn 0.5s 0.5s ease forwards;
}
@keyframes phBlobIn { to { opacity: 1; } }

/* 9) PAGE TRANSITION — fade out při odchodu */
body {
  transition: opacity 0.25s ease, filter 0.25s ease;
}
body.ph-leaving {
  opacity: 0.4;
  filter: blur(2px);
}

/* 10) HERO GRADIENT MESH — pulsing background na home hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(circle at 20% 30%, rgba(181, 225, 38, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(181, 225, 38, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 50% 50%, rgba(181, 225, 38, 0.04) 0%, transparent 50%);
  z-index: 0;
  animation: phMeshDrift 24s ease-in-out infinite;
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 1; }
@keyframes phMeshDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-3%, 2%) scale(1.05); }
  66% { transform: translate(2%, -2%) scale(0.98); }
}

/* 11) HOVER ELEVATION na service-card cover obrázku */
.service-card__cover--photo {
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.service-card:hover .service-card__cover--photo {
  transform: scale(1.06);
}
/* Cover zoom je pod overflow:hidden parentu — zajistit */
.service-card { overflow: hidden; }

/* 12) ICON micro-animations — šipky se pohnou při hover */
.btn .arrow,
.card__link .arrow,
.service-card__link .arrow,
.testimonial__link .arrow,
.ph-ref__link .arrow {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.btn:hover .arrow,
.card__link:hover .arrow,
.service-card:hover .arrow,
.testimonial:hover .arrow,
.ph-ref__card:hover .arrow {
  transform: translateX(4px);
}

/* 13) STAR RATING pulse */
.testimonial__rating,
.hero__rating-stars {
  animation: phStarsPulse 5s ease-in-out infinite;
  display: inline-block;
}
@keyframes phStarsPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

/* 14) ACCENT UNDERLINE — h2 dostane animovanou linku pod nadpisem */
.section-head h2.h2 {
  position: relative;
  display: inline-block;
}
.section-head h2.h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent, #B5E126), transparent);
  transition: transform 0.8s 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform-origin: center;
}
.section-head.ph-reveal.is-visible h2.h2::after,
.is-visible.section-head h2.h2::after {
  transform: translateX(-50%) scaleX(1);
}

/* 15) FOCUS RING — vizuální zlepšení pro accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent, #B5E126);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 16) STICKY HEADER smooth border na scroll */
.site-header {
  transition: background 0.3s, border-bottom-color 0.3s, backdrop-filter 0.3s;
}

/* 17) REDUCED MOTION fallback — všechno se vypne */
[data-reduce-motion="true"] *,
[data-reduce-motion="true"] *::before,
[data-reduce-motion="true"] *::after {
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}
[data-reduce-motion="true"] .ph-reveal {
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   MARKETING LAYER 2.0 — social proof, sticky CTA, reading,
   newsletter inline, related articles, WhatsApp
   ============================================================ */

/* SOCIAL PROOF TOAST */
.ph-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9996;
  max-width: 320px;
  background: #14171F;
  border: 1px solid rgba(181, 225, 38, 0.25);
  border-radius: 14px;
  padding: 14px 40px 14px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #fff;
  font-family: inherit;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  transform: translateX(calc(-100% - 40px));
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1), opacity 0.4s;
}
.ph-toast.is-open { transform: translateX(0); opacity: 1; }
.ph-toast__close {
  position: absolute;
  top: 6px;
  right: 8px;
  width: 24px;
  height: 24px;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  cursor: pointer;
  border-radius: 50%;
}
.ph-toast__close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }
.ph-toast__avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  background: rgba(181, 225, 38, 0.18);
  color: var(--accent, #B5E126);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
}
.ph-toast__body { font-size: 12px; line-height: 1.5; }
.ph-toast__body strong { display: block; color: #fff; font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.ph-toast__body span { display: block; color: rgba(255, 255, 255, 0.75); }
.ph-toast__body em {
  display: block;
  color: rgba(181, 225, 38, 0.85);
  font-style: normal;
  font-size: 11px;
  margin-top: 2px;
}
@media (max-width: 720px) {
  .ph-toast { left: 12px; right: 12px; max-width: none; }
  .ph-toast.is-open { transform: translateY(0); }
  .ph-toast { transform: translateY(calc(100% + 40px)); }
}

/* STICKY BOTTOM CTA BAR */
.ph-stickybar {
  position: fixed;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 9994;
  background: linear-gradient(180deg, #14171F, #0F1117);
  border-top: 1px solid rgba(181, 225, 38, 0.25);
  padding: 12px 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.3, 1.1), bottom 0.4s;
  box-shadow: 0 -12px 32px rgba(0, 0, 0, 0.45);
}
.ph-stickybar.is-visible { transform: translateY(0); bottom: 0; }
.ph-stickybar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.ph-stickybar__text { flex: 1; min-width: 0; }
.ph-stickybar__text strong { display: block; color: #fff; font-size: 14px; }
.ph-stickybar__text span { display: block; color: rgba(255, 255, 255, 0.6); font-size: 12px; }
.ph-stickybar__actions { display: flex; align-items: center; gap: 10px; flex: 0 0 auto; }
.ph-stickybar__phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(181, 225, 38, 0.12);
  color: var(--accent, #B5E126);
  border: 1px solid rgba(181, 225, 38, 0.3);
  border-radius: 999px;
  text-decoration: none;
  font-size: 18px;
}
.ph-stickybar__close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 0;
  cursor: pointer;
  font-size: 18px;
  border-radius: 50%;
}
.ph-stickybar__close:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

@media (max-width: 540px) {
  .ph-stickybar__text span { display: none; }
  .ph-stickybar__phone { width: 36px; height: 36px; }
  .ph-stickybar .btn { padding: 9px 14px; font-size: 13px; }
}

/* Když je viditelný stickybar, FAB se posune nahoru */
.ph-stickybar.is-visible ~ .ph-fab { bottom: 92px; }

/* READING PROGRESS bar (jen blog post) */
.ph-reading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.ph-reading.is-visible { opacity: 1; }
.ph-reading__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent, #B5E126), #DBFE5C);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.05s linear;
}
.ph-reading__pct {
  position: fixed;
  top: 12px;
  right: 16px;
  background: #14171F;
  color: var(--accent, #B5E126);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 1px solid rgba(181, 225, 38, 0.3);
  opacity: 0;
  transition: opacity 0.3s;
  font-variant-numeric: tabular-nums;
}
.ph-reading.is-visible + .ph-reading__pct,
.ph-reading.is-visible .ph-reading__pct { opacity: 1; }

/* NEWSLETTER INLINE — uvnitř blog article */
.ph-nl-inline {
  margin: 48px 0 32px;
  padding: 28px 32px;
  background: linear-gradient(135deg, rgba(181, 225, 38, 0.08) 0%, rgba(181, 225, 38, 0.02) 100%);
  border: 1px solid rgba(181, 225, 38, 0.2);
  border-radius: 18px;
}
.ph-nl-inline h3 { margin: 0 0 6px; font-size: 20px; color: #fff; letter-spacing: -0.01em; }
.ph-nl-inline p { color: rgba(255, 255, 255, 0.75); font-size: 14px; line-height: 1.55; margin: 0 0 16px; }
.ph-nl-inline__form {
  display: flex;
  gap: 8px;
}
.ph-nl-inline__form input {
  flex: 1;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  outline: none;
}
.ph-nl-inline__form input:focus { border-color: var(--accent, #B5E126); }
.ph-nl-inline__small {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.5) !important;
  margin: 12px 0 0 !important;
}
.ph-nl-inline__small a { color: var(--accent, #B5E126); }
@media (max-width: 540px) {
  .ph-nl-inline { padding: 20px 18px; }
  .ph-nl-inline__form { flex-direction: column; }
  .ph-nl-inline__form input, .ph-nl-inline__form button { width: 100%; }
}

/* RELATED ARTICLES — pod blog postem */
.ph-related {
  max-width: 920px;
  margin: 32px auto 64px;
  padding: 0 16px;
}
.ph-related h3 {
  font-size: 22px;
  margin: 0 0 20px;
  color: #fff;
  letter-spacing: -0.01em;
}
.ph-related__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 14px;
}
.ph-related__card {
  display: block;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  color: #fff;
  text-decoration: none;
  transition: all 0.18s;
}
.ph-related__card:hover {
  background: rgba(181, 225, 38, 0.05);
  border-color: rgba(181, 225, 38, 0.3);
  transform: translateY(-2px);
}
.ph-related__cat {
  display: inline-block;
  background: rgba(181, 225, 38, 0.12);
  color: var(--accent, #B5E126);
  padding: 2px 9px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.ph-related__card h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
}
.ph-related__card p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  line-height: 1.5;
}
.ph-related__more {
  color: var(--accent, #B5E126);
  font-size: 13px;
  font-weight: 600;
}

/* WhatsApp tlačítko odstraněno (původně .ph-wa) */

/* Pre-rendered SEO článek pro crawlers — visually hidden, zůstává v DOM */
article[data-prerendered] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
