/* ══════════════════════════════════════════════════════════════
   main.css — jediný stylopis webu Tulkit
   Vzniklo sloučením 11 stránkových souborů.
   Struktura: proměnné → sdílené komponenty → cookie lišta
              → odchylky jednotlivých stránek (body.page-*)
   ══════════════════════════════════════════════════════════════ */

/* ── Paleta a typografie ─────────────────────────────────── */
:root {
  --bg: #f7f6f3;
  --blue: #1a6fb5;
  --blue-light: #deeef9;
  --blue-mid: #2a87d4;
  --blue-pale: #f0f7fd;
  --border: #e4e2dc;
  --green: #1a7a4a;
  --green-light: #e2f4ec;
  --ink: #141210;
  --muted: #7a7671;
  --orange: #d95b22;
  --orange-light: #fdf0e8;
  --radius: 16px;
  --red: #c0392b;
  --red-light: #fdf0ee;
  --sans: 'Outfit', sans-serif;
  --serif: 'Instrument Serif', serif;
  --shadow: 0 4px 24px rgba(26,111,181,0.08);
  --shadow-lg: 0 12px 48px rgba(26,111,181,0.13);
  --teal: #1a6fb5;
  --teal-light: #deeef9;
  --teal-mid: #2a87d4;
  --teal-pale: #f0f7fd;
  --warn: #8a1f1f;
  --warn-bg: #fdedec;
  --white: #ffffff;
}

/* ── Sdílené komponenty (navigace, patička, tlačítka, typografie) ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 5px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--blue-light);
  border-radius: 3px;
}
.fade-up {
  animation: fadeUp 0.7s ease both;
}
.fade-up-1 {
  animation-delay: 0.1s;
}
.fade-up-2 {
  animation-delay: 0.22s;
}
.fade-up-3 {
  animation-delay: 0.34s;
}
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5vw;
  background: rgba(247,246,243,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo-text {
  font-family: var(--serif);
  font-size: 1.3rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.btn-ghost {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--ink);
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.875rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
.btn-primary {
  background: var(--blue);
  color: white;
  border: none;
  padding: 0.55rem 1.25rem;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(26,111,181,0.25);
}
.btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 8rem 5vw 5rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60vw;
  height: 70vh;
  background: radial-gradient(ellipse, var(--blue-light) 0%, transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero-sub {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 480px;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.btn-large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}
.hero-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  transition: gap 0.2s, color 0.2s;
}
.hero-link:hover {
  gap: 0.65rem;
  color: var(--blue);
}
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--blue);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}
.hero-visual {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.9s 0.3s ease both;
}
section {
  padding: 6rem 5vw;
}
.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 600px;
  margin-bottom: 1.2rem;
}
.section-sub {
  color: var(--muted);
  font-size: 1rem;
  max-width: 520px;
  line-height: 1.75;
}
.features-header {
  text-align: center;
  margin-bottom: 4rem;
}
.features-header .section-title {
  margin: 0.5rem auto 1rem;
}
.features-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}
.feature-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.feature-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.feature-card.highlight {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
.feature-card.highlight .feature-icon {
  background: rgba(255,255,255,0.15);
}
.feature-card.highlight p {
  color: rgba(255,255,255,0.75);
}
.pricing-header .section-title {
  margin: 0.5rem auto 1rem;
}
.pricing-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.testimonial-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.testimonial-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.85rem;
  font-weight: 500;
}
.testimonial-role {
  font-size: 0.75rem;
  color: var(--muted);
}
.cta-section {
  background: var(--blue);
  padding: 6rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: white;
  margin-bottom: 1rem;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
  line-height: 1.7;
  position: relative;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  flex-wrap: wrap;
}
.btn-white-solid {
  background: white;
  color: var(--blue);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.btn-white-solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.btn-white-outline {
  background: transparent;
  color: white;
  border: 1.5px solid rgba(255,255,255,0.4);
  padding: 0.85rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
}
.btn-white-outline:hover {
  border-color: white;
  background: rgba(255,255,255,0.08);
}
footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 4rem 5vw 2.5rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-tagline {
  font-size: 0.85rem;
  line-height: 1.65;
  max-width: 240px;
  margin-top: 0.5rem;
}
.footer-col h5 {
  color: white;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.footer-col a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: white;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}
.footer-copy {
  color: rgba(255,255,255,0.35);
}
.nav-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  width: 42px;
  height: 42px;
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.nav-toggle:hover {
  border-color: var(--blue);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  z-index: 199;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 14px 36px rgba(20,18,16,0.10);
  padding: 0.5rem 5vw 1.5rem;
  max-height: calc(100vh - 68px);
  overflow-y: auto;
}
.mobile-menu.open {
  display: block;
  animation: mobileMenuIn 0.2s ease;
}
.mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}
.mobile-menu li + li {
  border-top: 1px solid var(--border);
}
.mobile-menu li {
  width: 100%;
}
.mobile-menu ul a {
  display: block;
  width: 100%;
  padding: 0.95rem 0.25rem;
  color: var(--ink);
  text-decoration: none;
  text-align: left;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 400;
}
.mobile-menu a:hover {
  color: var(--blue);
}
.mobile-menu-cta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--border);
}
.mobile-menu-cta a {
  text-align: center;
  padding: 0.85rem 1rem;
  border-radius: 9px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav-logo svg {
  width: 32px;
  height: 32px;
}
.how {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.how-header {
  text-align: center;
  margin-bottom: 4rem;
}
.how-header .section-title {
  margin: 0.5rem auto 1rem;
}
.how-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.how-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  position: relative;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.how-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
.how-step-num {
  position: absolute;
  top: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
}
.how-step-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.how-step h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 0.65rem;
}
.how-step p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.7;
}
.pricing {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.pricing-header {
  text-align: center;
  margin-bottom: 1rem;
}
.pricing-note {
  text-align: center;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 3rem;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 4px 30px rgba(26,111,181,0.15);
}
.pricing-badge {
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.22rem 0.85rem;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.04em;
}
.pricing-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.pricing-desc {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}
.pricing-price {
  margin-bottom: 1.5rem;
}
.pricing-amount {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--blue);
  line-height: 1;
}
.pricing-period {
  font-size: 0.8rem;
  color: var(--muted);
}
.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.75rem;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--ink);
}
.pricing-features li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.pricing-features li.dim {
  color: var(--muted);
}
.pricing-features li.dim::before {
  content: '–';
  color: var(--border);
}
.btn-plan {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.8rem 1rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-plan-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 12px rgba(26,111,181,0.25);
}
.btn-plan-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}
.btn-plan-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
.btn-plan-outline:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
#order-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,16,0.55);
  backdrop-filter: blur(4px);
}
.modal-box {
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
  animation: popIn 0.3s ease both;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--bg);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.modal-close:hover {
  background: var(--border);
  color: var(--ink);
}
.modal-plan-badge {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--blue-pale);
  border: 1.5px solid var(--blue-light);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin-bottom: 1.5rem;
}
.modal-plan-badge > span {
  font-size: 1.5rem;
}
.modal-plan-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.modal-plan-name {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--blue);
}
.modal-plan-price {
  margin-left: auto;
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--blue);
  white-space: nowrap;
}
.modal-plan-price span {
  font-family: var(--sans);
  font-size: 0.7rem;
  color: var(--muted);
}
.modal-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.modal-sub {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.85rem;
}
.form-group label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
}
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 0.6rem 0.85rem;
  font-family: var(--sans);
  font-size: 0.875rem;
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,181,0.1);
  background: var(--white);
}
.form-group textarea {
  resize: vertical;
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.55;
}
.form-consent input {
  width: auto;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-consent a {
  color: var(--blue);
}
.modal-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 16px rgba(26,111,181,0.25);
}
.modal-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}
.modal-submit:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
#modal-success {
  text-align: center;
  padding: 1rem 0;
}
#modal-success h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
#modal-success p {
  color: var(--muted);
  line-height: 1.6;
}
footer a {
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .875rem;
}
footer a:hover {
  color: white;
}

/* ── cookie-consent.css (platí na všech stránkách) ──────────────────── */
.cc-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: var(--cc-white);
  border-top: 1px solid var(--cc-border);
  box-shadow: 0 -8px 32px rgba(20,18,16,.10);
  padding: 1.15rem 5vw;
  font-family: 'Outfit', system-ui, sans-serif;
  display: none;
}
.cc-bar.cc-show {
  display: block;
}
.cc-bar-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.cc-text {
  flex: 1;
  min-width: 260px;
  font-size: .875rem;
  line-height: 1.6;
  color: var(--cc-ink);
  font-weight: 300;
}
.cc-text strong {
  font-weight: 600;
}
.cc-text a {
  color: var(--cc-blue);
  text-decoration: underline;
}
.cc-actions {
  display: flex;
  gap: .6rem;
  align-items: center;
  flex-wrap: wrap;
}
.cc-btn {
  font-family: inherit;
  font-size: .875rem;
  font-weight: 500;
  padding: .65rem 1.4rem;
  border-radius: 9px;
  cursor: pointer;
  border: 1.5px solid transparent;
  white-space: nowrap;
  transition: background .2s, border-color .2s, transform .15s;
}
.cc-btn-accept {
  background: var(--cc-blue);
  color: #fff;
}
.cc-btn-accept:hover {
  background: var(--cc-blue-dark);
  transform: translateY(-1px);
}
.cc-btn-reject {
  background: var(--cc-white);
  color: var(--cc-ink);
  border-color: var(--cc-border);
}
.cc-btn-reject:hover {
  border-color: var(--cc-blue);
}
.cc-btn-settings {
  background: none;
  border: none;
  color: var(--cc-muted);
  font-family: inherit;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
  padding: .65rem .5rem;
  white-space: nowrap;
}
.cc-btn-settings:hover {
  color: var(--cc-blue);
}
.cc-modal {
  position: fixed;
  inset: 0;
  z-index: 9600;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cc-modal.cc-show {
  display: flex;
}
.cc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(20,18,16,.55);
  backdrop-filter: blur(3px);
}
.cc-box {
  position: relative;
  z-index: 1;
  background: var(--cc-white);
  border-radius: 18px;
  padding: 1.75rem;
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0,0,0,.22);
  font-family: 'Outfit', system-ui, sans-serif;
}
.cc-box h2 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem;
  margin: 0 0 .4rem;
  color: var(--cc-ink);
  font-weight: 400;
}
.cc-box > p {
  font-size: .875rem;
  color: var(--cc-muted);
  line-height: 1.65;
  margin: 0 0 1.5rem;
  font-weight: 300;
}
.cc-box > p a {
  color: var(--cc-blue);
}
.cc-group {
  border: 1px solid var(--cc-border);
  border-radius: 11px;
  padding: 1rem 1.15rem;
  margin-bottom: .75rem;
}
.cc-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .35rem;
}
.cc-group-title {
  font-size: .95rem;
  font-weight: 600;
  color: var(--cc-ink);
}
.cc-group-desc {
  font-size: .8rem;
  color: var(--cc-muted);
  line-height: 1.55;
  font-weight: 300;
}
.cc-badge {
  font-size: .7rem;
  font-weight: 600;
  color: var(--cc-muted);
  background: var(--cc-bg);
  border-radius: 100px;
  padding: .2rem .6rem;
  white-space: nowrap;
}
.cc-switch {
  position: relative;
  width: 44px;
  height: 25px;
  flex-shrink: 0;
}
.cc-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.cc-slider {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: #cfccc6;
  border-radius: 25px;
  transition: background .22s;
}
.cc-slider::before {
  content: '';
  position: absolute;
  height: 19px;
  width: 19px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform .22s;
  box-shadow: 0 1px 4px rgba(0,0,0,.2);
}
.cc-switch input:checked + .cc-slider {
  background: var(--cc-blue);
}
.cc-switch input:checked + .cc-slider::before {
  transform: translateX(19px);
}
.cc-switch input:focus-visible + .cc-slider {
  outline: 2px solid var(--cc-blue);
  outline-offset: 2px;
}
.cc-modal-actions {
  display: flex;
  gap: .6rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.cc-modal-actions .cc-btn {
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.cc-footer-link {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  text-decoration: none;
  opacity: .85;
}
.cc-footer-link:hover {
  opacity: 1;
  text-decoration: underline;
}
@media (max-width: 720px) {
  .cc-bar {
    padding: 1rem 1.25rem;
  }
  .cc-bar-inner {
    gap: 1rem;
  }
  .cc-actions {
    width: 100%;
  }
  .cc-actions .cc-btn {
    flex: 1;
  }
  .cc-btn-settings {
    width: 100%;
    order: 3;
  }
}

/* ══ tulkit.css → body.page-home ══════════════════════════════ */
body.page-home ::-webkit-scrollbar-thumb {
  background: var(--teal-light);
}
body.page-home nav {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(247,246,243,0.9);
  transition: box-shadow 0.3s;
}
body.page-home .nav-logo {
  gap: 0.5rem;
}
body.page-home .nav-logo-text {
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
body.page-home .btn-ghost {
  font-weight: 400;
}
body.page-home .btn-ghost:hover {
  border-color: var(--teal);
  background: var(--teal-pale);
}
body.page-home .btn-primary {
  background: var(--teal);
}
body.page-home .btn-primary:hover {
  background: var(--teal-mid);
  box-shadow: 0 4px 20px rgba(26,111,181,0.35);
}
body.page-home .hero {
  min-height: 100vh;
  padding: 7rem 5vw 4rem;
}
body.page-home .hero::before {
  background: radial-gradient(ellipse, var(--teal-light) 0%, transparent 70%);
}
body.page-home .hero-badge {
  background: var(--teal-light);
  color: var(--teal);
  animation: fadeUp 0.6s ease both;
}
body.page-home .hero-badge-dot {
  background: var(--teal);
}
body.page-home .hero h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
}
body.page-home .hero h1 em {
  color: var(--teal);
}
body.page-home .hero-link:hover {
  color: var(--teal);
}
body.page-home .hero-stat-num {
  color: var(--teal);
}
body.page-home .section-label {
  color: var(--teal);
}
body.page-home .feature-card:hover {
  border-color: var(--teal-light);
}
body.page-home .feature-icon {
  background: var(--teal-light);
}
body.page-home .feature-card.highlight {
  background: var(--teal);
  border-color: var(--teal);
}
body.page-home .testimonials-grid {
  margin-top: unset;
}
body.page-home .cta-section {
  background: var(--teal);
}
body.page-home .cta-actions {
  flex-wrap: unset;
}
body.page-home .btn-white-solid {
  color: var(--teal);
}
body.page-home .btn-white-outline {
  font-weight: 400;
}
body.page-home .footer-tagline {
  margin-top: unset;
}
body.page-home .nav-toggle:hover {
  border-color: var(--teal);
}
body.page-home .mobile-menu a:hover {
  color: var(--teal);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.04); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
body.page-home .fade-up-4 {
  animation-delay: 0.46s;
}
body.page-home nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
body.page-home .nav-logo-mark {
  width: 34px;
  height: 34px;
  background: var(--teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-home .nav-logo-mark svg {
  fill: white;
  width: 18px;
  height: 18px;
}
body.page-home .hero-card-main {
  background: var(--white);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float 5s ease-in-out infinite;
}
body.page-home .hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}
body.page-home .hero-card-title {
  font-weight: 500;
  font-size: 0.9rem;
}
body.page-home .hero-card-badge {
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
}
body.page-home .exercise-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
body.page-home .exercise-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}
body.page-home .exercise-item:hover {
  background: var(--teal-pale);
}
body.page-home .exercise-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body.page-home .exercise-name {
  font-size: 0.85rem;
  font-weight: 500;
}
body.page-home .exercise-sets {
  font-size: 0.75rem;
  color: var(--muted);
}
body.page-home .exercise-check {
  margin-left: auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-home .exercise-check.done {
  background: var(--teal);
  border-color: var(--teal);
}
body.page-home .exercise-check.done::after {
  content: '✓';
  color: white;
  font-size: 0.6rem;
  font-weight: 600;
}
body.page-home .hero-card-mini {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 1rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
body.page-home .hero-card-mini-tl {
  top: -1.5rem;
  left: -2rem;
  animation: float 4s 1s ease-in-out infinite;
}
body.page-home .hero-card-mini-br {
  bottom: -1.5rem;
  right: -1.5rem;
  animation: float 4.5s 0.5s ease-in-out infinite;
}
body.page-home .mini-label {
  font-size: 0.7rem;
  color: var(--muted);
  margin-bottom: 0.25rem;
}
body.page-home .mini-value {
  font-size: 1.3rem;
  font-family: var(--serif);
  color: var(--teal);
}
body.page-home .mini-progress {
  margin-top: 0.5rem;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  width: 120px;
}
body.page-home .mini-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--teal-mid));
  border-radius: 2px;
  width: 72%;
}
body.page-home .mini-ai {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.page-home .mini-ai-dot {
  width: 8px;
  height: 8px;
  background: var(--orange);
  border-radius: 50%;
  animation: pulse 1.5s ease infinite;
}
body.page-home .mini-ai-text {
  font-size: 0.78rem;
  font-weight: 500;
}
body.page-home .audience {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-home .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 3.5rem;
  border-radius: var(--radius);
  overflow: visible;
  border: 1px solid var(--border);
}
body.page-home .audience-card {
  padding: 3rem;
  background: var(--white);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
  border: 2px solid transparent;
}
body.page-home .audience-card:hover {
  box-shadow: 0 8px 32px rgba(26,111,181,0.15);
  transform: translateY(3px);
  border-color: var(--blue-light);
  z-index: 1;
}
body.page-home .audience-card.physio:hover {
  border-color: var(--blue);
}
body.page-home .audience-card.patient:hover {
  border-color: var(--orange);
}
body.page-home .audience-card.company:hover {
  border-color: var(--blue);
}
body.page-home .audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.3s;
}
body.page-home .audience-card.physio::before {
  background: var(--teal-pale);
}
body.page-home .audience-card.patient::before {
  background: var(--orange-light);
}
body.page-home .audience-card.company::before {
  background: #f0f7fd;
}
body.page-home .audience-card.company .audience-link {
  color: #1a6fb5;
}
body.page-home .audience-card:hover::before {
  opacity: 1;
}
body.page-home .audience-card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
body.page-home .audience-card h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
body.page-home .audience-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
  margin-bottom: 1.5rem;
}
body.page-home .audience-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  z-index: 1;
  transition: gap 0.2s;
}
body.page-home .audience-link:hover {
  gap: 0.65rem;
}
body.page-home .audience-card.physio .audience-link {
  color: var(--teal);
}
body.page-home .audience-card.patient .audience-link {
  color: var(--orange);
}
body.page-home .feature-card.accent .feature-icon {
  background: var(--orange-light);
}
body.page-home .how-step.active 


.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
}
body.page-home .testimonials {
  padding: 6rem 5vw;
}
body.page-home .testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
body.page-home .testimonials-header .section-title {
  margin: 0.5rem auto 0;
}
body.page-home .blog {
  background: var(--white);
  border-top: 1px solid var(--border);
}
body.page-home .blog-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
body.page-home .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
body.page-home .blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--bg);
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s;
}
body.page-home .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.page-home .blog-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
body.page-home .blog-thumb.t1 {
  background: linear-gradient(135deg, var(--teal-light), var(--teal-pale));
}
body.page-home .blog-thumb.t2 {
  background: linear-gradient(135deg, var(--orange-light), #fff5f0);
}
body.page-home .blog-thumb.t3 {
  background: linear-gradient(135deg, #f0eeff, #e8e4ff);
}
body.page-home .blog-body {
  padding: 1.5rem;
}
body.page-home .blog-tag {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.page-home .blog-card-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
body.page-home .blog-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
body.page-home .blog-meta {
  font-size: 0.75rem;
  color: var(--muted);
}
body.page-home .selfdiag {
  background: linear-gradient(135deg, var(--teal) 0%, #134e80 100%);
  padding: 5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--border);
}
body.page-home .selfdiag::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 50vw;
  height: 160%;
  background: radial-gradient(ellipse, rgba(217,91,34,0.25) 0%, transparent 65%);
  pointer-events: none;
}
body.page-home .selfdiag-inner {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
body.page-home .selfdiag-icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
body.page-home .selfdiag-label {
  display: inline-block;
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
body.page-home .selfdiag h2 {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: #fff;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin-bottom: 1.1rem;
}
body.page-home .selfdiag p {
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}
body.page-home .btn-selfdiag {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-family: var(--sans);
  font-size: 1.12rem;
  font-weight: 600;
  padding: 1.1rem 2.6rem;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 10px 34px rgba(217,91,34,0.45);
  transition: transform 0.18s, box-shadow 0.18s, background 0.2s;
}
body.page-home .btn-selfdiag:hover {
  transform: translateY(-3px);
  background: #e86a32;
  box-shadow: 0 16px 46px rgba(217,91,34,0.55);
}
body.page-home .selfdiag-note {
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
body.page-home .footer-brand-name {
  margin-bottom: 0.75rem;
  display: block;
}
body.page-home .footer-brand-mark {
  width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
body.page-home .footer-brand-mark svg {
  fill: white;
  width: 14px;
  height: 14px;
}
body.page-home .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
body.page-home .footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
body.page-home .footer-social a:hover {
  background: var(--teal);
  color: white;
  border-color: var(--teal);
}
body.page-home .footer-legal {
  display: flex;
  gap: 1.5rem;
}
body.page-home .footer-legal a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
body.page-home .footer-legal a:hover {
  color: rgba(255,255,255,0.7);
}
@media (max-width: 900px) {
  body.page-home .hero {
    grid-template-columns: 1fr;
    padding-top: 6rem;
  }
  body.page-home .hero-visual {
    display: none;
  }
  body.page-home .audience-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-home .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-home .testimonials-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  body.page-home .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  body.page-home .features-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .blog-grid {
    grid-template-columns: 1fr;
  }
  body.page-home .blog-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  body.page-home .footer-top {
    grid-template-columns: 1fr;
  }
  body.page-home .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  body.page-home .cta-actions {
    flex-direction: column;
  }
  body.page-home .hero-stats {
    gap: 1.5rem;
  }
}
@keyframes mobileMenuIn { from { transform: translateY(-8px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  body.page-home .mobile-menu.open {
    animation: none;
  }
}
@media (max-width: 900px) {
  body.page-home .nav-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  body.page-home .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 600px) {
  body.page-home nav .btn-ghost {
    display: none !important;
  }
  body.page-home nav .nav-cta {
    gap: 0.5rem;
  }
  body.page-home nav .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* ══ pacient.css → body.page-pacient ══════════════════════════════ */
body.page-pacient nav {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(247,246,243,0.95);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
body.page-pacient .hero-stat-note {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.4;
  max-width: 210px;
  opacity: 0.85;
}
body.page-pacient .exercise-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
body.page-pacient .ex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
body.page-pacient .ex-title {
  font-weight: 500;
  font-size: 0.9rem;
}
body.page-pacient .ex-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
}
body.page-pacient .ex-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
body.page-pacient .ex-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}
body.page-pacient .ex-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body.page-pacient .ex-name {
  font-size: 0.85rem;
  font-weight: 500;
}
body.page-pacient .ex-detail {
  font-size: 0.72rem;
  color: var(--muted);
}
body.page-pacient .ex-status {
  margin-left: auto;
}
body.page-pacient .ex-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
}
body.page-pacient .ex-pill.done {
  background: #d1fae5;
  color: #065f46;
}
body.page-pacient .ex-pill.next {
  background: var(--blue-light);
  color: var(--blue);
}
body.page-pacient .ex-pill.rest {
  background: var(--orange-light);
  color: var(--orange);
}
body.page-pacient .ex-progress-bar {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
body.page-pacient .ex-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
body.page-pacient .ex-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
body.page-pacient .ex-bar-fill {
  height: 100%;
  width: 60%;
  background: var(--blue);
  border-radius: 3px;
}
body.page-pacient .pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
body.page-pacient .pricing-amount-old {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--muted);
  text-decoration: line-through;
  line-height: 1;
}
body.page-pacient .sale-text {
  color: var(--orange);
  font-weight: 600;
}
body.page-pacient .pricing-badge.sale {
  background: var(--orange);
}
@media (max-width: 900px) {
  body.page-pacient .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  body.page-pacient .hero-visual {
    display: none;
  }
  body.page-pacient .how-steps {
    grid-template-columns: 1fr;
  }
  body.page-pacient .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-pacient .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  body.page-pacient .testimonials-grid {
    grid-template-columns: 1fr;
  }
  body.page-pacient .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  body.page-pacient .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  body.page-pacient .features-grid {
    grid-template-columns: 1fr;
  }
  body.page-pacient .footer-top {
    grid-template-columns: 1fr;
  }
  body.page-pacient .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  body.page-pacient .cta-actions {
    flex-direction: column;
  }
}
@keyframes popIn { 0% { opacity:0; transform:scale(0.92); } 100% { opacity:1; transform:scale(1); } }
@media (max-width:500px) {
  body.page-pacient .form-row {
    grid-template-columns: 1fr;
  }
  body.page-pacient .modal-box {
    padding: 1.5rem 1.25rem;
  }
}
body.page-pacient .btn-wizard {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #1a6fb5, #3b9fd8);
  color: #fff;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 18px rgba(26,111,181,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
}
body.page-pacient .btn-wizard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,181,0.35);
}
@keyframes mobileMenuIn { from { transform: translateY(-8px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  body.page-pacient .mobile-menu.open {
    animation: none;
  }
}
@media (max-width: 900px) {
  body.page-pacient .nav-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  body.page-pacient .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 600px) {
  body.page-pacient nav .btn-ghost {
    display: none !important;
  }
  body.page-pacient nav .nav-cta {
    gap: 0.5rem;
  }
  body.page-pacient nav .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}
body.page-pacient .video-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-pacient .video-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
body.page-pacient .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 20px 60px rgba(26,111,181,.20);
  transition: transform .25s, box-shadow .25s;
}
body.page-pacient .video-embed:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 72px rgba(26,111,181,.28);
}
body.page-pacient .video-embed:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
body.page-pacient .video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.page-pacient .video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
body.page-pacient .video-embed.loaded {
  cursor: default;
  transform: none;
}
body.page-pacient .video-embed.loaded:hover {
  transform: none;
}
body.page-pacient .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 78px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.4));
  transition: transform .22s, filter .22s;
}
body.page-pacient .video-embed:hover .video-play {
  transform: translate(-50%,-50%) scale(1.09);
}
body.page-pacient .video-privacy {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  background: rgba(20,18,16,.72);
  color: #fff;
  font-size: .72rem;
  padding: .3rem .8rem;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
  body.page-pacient .video-play {
    width: 58px;
    height: 41px;
  }
  body.page-pacient .video-privacy {
    font-size: .66rem;
    bottom: .6rem;
  }
}

/* ══ pacient-funel.css → body.page-pacient-funel ══════════════════════════════ */
body.page-pacient-funel nav {
  top: 34px;
  position: unset;
  z-index: unset;
  display: unset;
  align-items: unset;
  justify-content: unset;
  padding: unset;
  background: unset;
  backdrop-filter: unset;
  border-bottom: unset;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
body.page-pacient-funel .hero-stat-note {
  font-size: 0.68rem;
  color: var(--muted);
  margin-top: 0.35rem;
  line-height: 1.4;
  max-width: 210px;
  opacity: 0.85;
}
body.page-pacient-funel .exercise-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
body.page-pacient-funel .ex-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
body.page-pacient-funel .ex-title {
  font-weight: 500;
  font-size: 0.9rem;
}
body.page-pacient-funel .ex-badge {
  background: #d1fae5;
  color: #065f46;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
}
body.page-pacient-funel .ex-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
body.page-pacient-funel .ex-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}
body.page-pacient-funel .ex-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
body.page-pacient-funel .ex-name {
  font-size: 0.85rem;
  font-weight: 500;
}
body.page-pacient-funel .ex-detail {
  font-size: 0.72rem;
  color: var(--muted);
}
body.page-pacient-funel .ex-status {
  margin-left: auto;
}
body.page-pacient-funel .ex-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
}
body.page-pacient-funel .ex-pill.done {
  background: #d1fae5;
  color: #065f46;
}
body.page-pacient-funel .ex-pill.next {
  background: var(--blue-light);
  color: var(--blue);
}
body.page-pacient-funel .ex-pill.rest {
  background: var(--orange-light);
  color: var(--orange);
}
body.page-pacient-funel .ex-progress-bar {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
body.page-pacient-funel .ex-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
body.page-pacient-funel .ex-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}
body.page-pacient-funel .ex-bar-fill {
  height: 100%;
  width: 60%;
  background: var(--blue);
  border-radius: 3px;
}
body.page-pacient-funel .pricing-amount-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}
body.page-pacient-funel .pricing-amount-old {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--muted);
  text-decoration: line-through;
  line-height: 1;
}
body.page-pacient-funel .sale-text {
  color: var(--orange);
  font-weight: 600;
}
body.page-pacient-funel .pricing-badge.sale {
  background: var(--orange);
}
@media (max-width: 900px) {
  body.page-pacient-funel .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  body.page-pacient-funel .hero-visual {
    display: none;
  }
  body.page-pacient-funel .how-steps {
    grid-template-columns: 1fr;
  }
  body.page-pacient-funel .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-pacient-funel .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  body.page-pacient-funel .testimonials-grid {
    grid-template-columns: 1fr;
  }
  body.page-pacient-funel .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  body.page-pacient-funel .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  body.page-pacient-funel .features-grid {
    grid-template-columns: 1fr;
  }
  body.page-pacient-funel .footer-top {
    grid-template-columns: 1fr;
  }
  body.page-pacient-funel .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  body.page-pacient-funel .cta-actions {
    flex-direction: column;
  }
}
@keyframes popIn { 0% { opacity:0; transform:scale(0.92); } 100% { opacity:1; transform:scale(1); } }
@media (max-width:500px) {
  body.page-pacient-funel .form-row {
    grid-template-columns: 1fr;
  }
  body.page-pacient-funel .modal-box {
    padding: 1.5rem 1.25rem;
  }
}
body.page-pacient-funel .btn-wizard {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: linear-gradient(135deg, #1a6fb5, #3b9fd8);
  color: #fff;
  border-radius: 10px;
  padding: 0.85rem 1.5rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: none;
  box-shadow: 0 4px 18px rgba(26,111,181,0.25);
  transition: transform 0.18s, box-shadow 0.18s;
}
body.page-pacient-funel .btn-wizard:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,111,181,0.35);
}
body.page-pacient-funel .announce {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 250;
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0.5rem 1rem;
  letter-spacing: 0.01em;
}
body.page-pacient-funel .announce strong {
  font-weight: 600;
}
body.page-pacient-funel .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.25rem;
  margin-top: 1.5rem;
  font-size: 0.82rem;
  color: var(--muted);
}
body.page-pacient-funel .hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
body.page-pacient-funel .hero-trust span::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
}
body.page-pacient-funel .hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow);
  font-size: 0.8rem;
  font-weight: 500;
}
body.page-pacient-funel .hero-rating .stars {
  color: #f59e0b;
  letter-spacing: 1px;
}
body.page-pacient-funel .hero-rating .rating-num {
  color: var(--ink);
  font-weight: 600;
}
body.page-pacient-funel .hero-rating .rating-cnt {
  color: var(--muted);
  font-weight: 400;
}
body.page-pacient-funel .trust-strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 5vw;
}
body.page-pacient-funel .trust-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
body.page-pacient-funel .trust-stat-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  color: var(--blue);
  line-height: 1;
}
body.page-pacient-funel .trust-stat-label {
  font-size: 0.82rem;
  color: var(--muted);
  margin-top: 0.45rem;
  line-height: 1.4;
}
body.page-pacient-funel .problem {
  background: var(--bg);
}
body.page-pacient-funel .problem-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
body.page-pacient-funel .problem-header .section-title {
  margin: 0.5rem auto 1rem;
}
body.page-pacient-funel .problem-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
body.page-pacient-funel .problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1080px;
  margin: 0 auto;
}
body.page-pacient-funel .problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}
body.page-pacient-funel .problem-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  background: var(--orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}
body.page-pacient-funel .problem-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
body.page-pacient-funel .problem-card p {
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}
body.page-pacient-funel .problem-bridge {
  text-align: center;
  max-width: 640px;
  margin: 3.5rem auto 0;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  line-height: 1.4;
  color: var(--ink);
}
body.page-pacient-funel .problem-bridge em {
  font-style: italic;
  color: var(--blue);
}
body.page-pacient-funel .compare {
  background: var(--white);
  border-top: 1px solid var(--border);
}
body.page-pacient-funel .compare-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
body.page-pacient-funel .compare-header .section-title {
  margin: 0.5rem auto 1rem;
}
body.page-pacient-funel .compare-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
body.page-pacient-funel .compare-table {
  max-width: 820px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
body.page-pacient-funel .compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
}
body.page-pacient-funel .compare-row + .compare-row {
  border-top: 1px solid var(--border);
}
body.page-pacient-funel .compare-row > div {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  font-size: 0.88rem;
}
body.page-pacient-funel .compare-row.head > div {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
body.page-pacient-funel .compare-row.head {
  background: var(--bg);
}
body.page-pacient-funel .compare-col-feature {
  color: var(--muted);
}
body.page-pacient-funel .compare-col-tulkit {
  background: var(--blue-pale);
  font-weight: 500;
  color: var(--ink);
  border-left: 1px solid var(--blue-light);
  border-right: 1px solid var(--blue-light);
}
body.page-pacient-funel .compare-row.head .compare-col-tulkit {
  color: var(--blue);
}
body.page-pacient-funel .compare-col-other {
  color: var(--muted);
}
body.page-pacient-funel .compare-check {
  color: var(--blue);
  font-weight: 700;
  margin-right: 0.4rem;
}
body.page-pacient-funel .compare-cross {
  color: #c0392b;
  font-weight: 700;
  margin-right: 0.4rem;
}
body.page-pacient-funel .guarantee {
  background: var(--blue-pale);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-pacient-funel .guarantee-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
body.page-pacient-funel .guarantee-badge {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-lg);
}
body.page-pacient-funel .guarantee h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 1rem;
  line-height: 1.2;
}
body.page-pacient-funel .guarantee p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 560px;
}
body.page-pacient-funel .faq {
  background: var(--bg);
}
body.page-pacient-funel .faq-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
body.page-pacient-funel .faq-header .section-title {
  margin: 0.5rem auto 1rem;
}
body.page-pacient-funel .faq-header .section-sub {
  margin: 0 auto;
  text-align: center;
}
body.page-pacient-funel .faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
body.page-pacient-funel .faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
body.page-pacient-funel .faq-item[open] {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}
body.page-pacient-funel .faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
}
body.page-pacient-funel .faq-item summary::-webkit-details-marker {
  display: none;
}
body.page-pacient-funel .faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s;
  line-height: 1;
}
body.page-pacient-funel .faq-item[open] summary::after {
  transform: rotate(45deg);
}
body.page-pacient-funel .faq-item .faq-answer {
  padding: 0 1.5rem 1.35rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}
body.page-pacient-funel .pricing-guarantee-note {
  text-align: center;
  max-width: 560px;
  margin: 2.5rem auto 0;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  border-radius: 100px;
  padding: 0.6rem 1.4rem;
  font-size: 0.86rem;
  color: var(--blue);
}
body.page-pacient-funel .pricing-wrap-center {
  text-align: center;
}
body.page-pacient-funel .cta-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  position: relative;
}
body.page-pacient-funel .cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
body.page-pacient-funel .cta-trust span::before {
  content: '✓';
  color: #fff;
  font-weight: 700;
}
body.page-pacient-funel .section-center {
  text-align: center;
}
body.page-pacient-funel .section-center .section-title {
  margin-left: auto;
  margin-right: auto;
}
body.page-pacient-funel .section-center .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (max-width: 900px) {
  body.page-pacient-funel .trust-strip-inner {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
  body.page-pacient-funel .problem-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-pacient-funel .compare-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
  body.page-pacient-funel .compare-row > div {
    padding: 0.85rem 0.9rem;
    font-size: 0.8rem;
  }
}
@media (max-width: 600px) {
  body.page-pacient-funel .announce {
    font-size: 0.72rem;
    padding: 0.45rem 0.75rem;
  }
  body.page-pacient-funel nav {
    top: 30px;
  }
  body.page-pacient-funel .problem-grid {
    grid-template-columns: 1fr;
  }
  body.page-pacient-funel .compare-row {
    grid-template-columns: 1.3fr 0.85fr 0.85fr;
  }
  body.page-pacient-funel .compare-row > div {
    padding: 0.7rem 0.6rem;
    font-size: 0.74rem;
  }
}
@keyframes mobileMenuIn { from { transform: translateY(-8px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  body.page-pacient-funel .mobile-menu.open {
    animation: none;
  }
}
@media (max-width: 900px) {
  body.page-pacient-funel .nav-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  body.page-pacient-funel .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 600px) {
  body.page-pacient-funel nav .btn-ghost {
    display: none !important;
  }
  body.page-pacient-funel nav .nav-cta {
    gap: 0.5rem;
  }
  body.page-pacient-funel nav .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}
body.page-pacient-funel .video-section {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-pacient-funel .video-inner {
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
body.page-pacient-funel .video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  background: #000;
  box-shadow: 0 20px 60px rgba(26,111,181,.20);
  transition: transform .25s, box-shadow .25s;
}
body.page-pacient-funel .video-embed:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 72px rgba(26,111,181,.28);
}
body.page-pacient-funel .video-embed:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}
body.page-pacient-funel .video-embed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
body.page-pacient-funel .video-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
body.page-pacient-funel .video-embed.loaded {
  cursor: default;
  transform: none;
}
body.page-pacient-funel .video-embed.loaded:hover {
  transform: none;
}
body.page-pacient-funel .video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 78px;
  height: 55px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 4px 14px rgba(0,0,0,.4));
  transition: transform .22s, filter .22s;
}
body.page-pacient-funel .video-embed:hover .video-play {
  transform: translate(-50%,-50%) scale(1.09);
}
body.page-pacient-funel .video-privacy {
  position: absolute;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  background: rgba(20,18,16,.72);
  color: #fff;
  font-size: .72rem;
  padding: .3rem .8rem;
  border-radius: 100px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
@media (max-width: 600px) {
  body.page-pacient-funel .video-play {
    width: 58px;
    height: 41px;
  }
  body.page-pacient-funel .video-privacy {
    font-size: .66rem;
    bottom: .6rem;
  }
}

/* ══ fyzioterapeut.css → body.page-fyzioterapeut ══════════════════════════════ */
body.page-fyzioterapeut nav {
  position: fixed;
  left: 0;
  right: 0;
  background: rgba(247,246,243,0.95);
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.04); } }
body.page-fyzioterapeut .dashboard-card {
  background: var(--white);
  border-radius: 20px;
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
body.page-fyzioterapeut .dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}
body.page-fyzioterapeut .dash-title {
  font-weight: 500;
  font-size: 0.9rem;
}
body.page-fyzioterapeut .dash-badge {
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.65rem;
  border-radius: 6px;
}
body.page-fyzioterapeut .patient-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
body.page-fyzioterapeut .patient-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 1rem;
  background: var(--bg);
  border-radius: 10px;
  border: 1px solid var(--border);
}
body.page-fyzioterapeut .patient-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
body.page-fyzioterapeut .patient-name {
  font-size: 0.85rem;
  font-weight: 500;
}
body.page-fyzioterapeut .patient-status {
  font-size: 0.72rem;
  color: var(--muted);
}
body.page-fyzioterapeut .patient-progress {
  margin-left: auto;
}
body.page-fyzioterapeut .progress-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 100px;
}
body.page-fyzioterapeut .progress-pill.good {
  background: #d1fae5;
  color: #065f46;
}
body.page-fyzioterapeut .progress-pill.mid {
  background: var(--orange-light);
  color: var(--orange);
}
body.page-fyzioterapeut .progress-pill.new {
  background: var(--blue-light);
  color: var(--blue);
}
body.page-fyzioterapeut .how-step-screen {
  display: block;
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 32px rgba(26,111,181,0.15);
  border: 1px solid var(--border);
  overflow: hidden;
}
body.page-fyzioterapeut .how-step-screen img {
  width: 100%;
  height: auto;
  display: block;
}
body.page-fyzioterapeut .how-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  font-size: 1.5rem;
  padding-top: 2rem;
}
body.page-fyzioterapeut .pricing-free {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--blue);
}
@media (max-width: 900px) {
  body.page-fyzioterapeut .hero {
    grid-template-columns: 1fr;
    padding-top: 7rem;
  }
  body.page-fyzioterapeut .hero-visual {
    display: none;
  }
  body.page-fyzioterapeut .how-steps {
    grid-template-columns: 1fr;
  }
  body.page-fyzioterapeut .features-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-fyzioterapeut .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
  }
  body.page-fyzioterapeut .testimonials-grid {
    grid-template-columns: 1fr;
  }
  body.page-fyzioterapeut .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  body.page-fyzioterapeut .nav-links {
    display: none;
  }
}
@media (max-width: 600px) {
  body.page-fyzioterapeut .features-grid {
    grid-template-columns: 1fr;
  }
  body.page-fyzioterapeut .footer-top {
    grid-template-columns: 1fr;
  }
  body.page-fyzioterapeut .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
  }
  body.page-fyzioterapeut .cta-actions {
    flex-direction: column;
  }
}
@keyframes popIn { 0% { opacity:0; transform:scale(0.92); } 100% { opacity:1; transform:scale(1); } }
@media (max-width:500px) {
  body.page-fyzioterapeut .form-row {
    grid-template-columns: 1fr;
  }
  body.page-fyzioterapeut .modal-box {
    padding: 1.5rem 1.25rem;
  }
}
@keyframes mobileMenuIn { from { transform: translateY(-8px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  body.page-fyzioterapeut .mobile-menu.open {
    animation: none;
  }
}
@media (max-width: 900px) {
  body.page-fyzioterapeut .nav-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  body.page-fyzioterapeut .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 600px) {
  body.page-fyzioterapeut nav .btn-ghost {
    display: none !important;
  }
  body.page-fyzioterapeut nav .nav-cta {
    gap: 0.5rem;
  }
  body.page-fyzioterapeut nav .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* ══ firma.css → body.page-firma ══════════════════════════════ */
body.page-firma .fade-up {
  animation: fadeUp 0.65s ease both;
}
body.page-firma .nav-links {
  gap: 1.5rem;
}
body.page-firma .nav-links a {
  font-size: 0.875rem;
  font-weight: unset;
}
body.page-firma .btn-primary {
  display: inline-block;
}
body.page-firma .btn-primary:hover {
  box-shadow: 0 4px 20px rgba(26,111,181,0.35);
}
body.page-firma .hero {
  padding: 5rem 5vw 4rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--blue-pale) 100%);
  min-height: unset;
}
body.page-firma .hero::before {
  right: -5%;
  width: 50vw;
  height: 80vh;
  background: radial-gradient(ellipse, rgba(26,111,181,0.1) 0%, transparent 70%);
  z-index: unset;
}
body.page-firma .hero-badge {
  font-size: 0.78rem;
}
body.page-firma .hero-badge-dot {
  animation: pulse 2s infinite;
}
body.page-firma .hero h1 {
  font-size: clamp(2.4rem,4.5vw,3.5rem);
  margin-bottom: 1.25rem;
}
body.page-firma .hero-sub {
  font-size: 1rem;
  max-width: 460px;
  margin-bottom: 2rem;
  line-height: 1.75;
}
body.page-firma .hero-actions {
  margin-bottom: 2.5rem;
}
body.page-firma .hero-link {
  font-size: 0.875rem;
}
body.page-firma section {
  padding: 5rem 5vw;
}
body.page-firma .section-label {
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
body.page-firma .section-title {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  margin-bottom: 1rem;
  max-width: unset;
}
body.page-firma .section-sub {
  font-size: 0.95rem;
}
body.page-firma .btn-white-outline {
  border: 1.5px solid rgba(255,255,255,0.45);
  font-size: 0.95rem;
  display: inline-block;
  cursor: unset;
}
body.page-firma footer {
  color: rgba(255,255,255,0.55);
  padding: 3rem 5vw 2rem;
  text-align: center;
  font-size: 0.8rem;
}
body.page-firma .footer-copy {
  color: rgba(255,255,255,0.3);
}
body.page-firma .form-group input, body.page-firma .form-group select, body.page-firma .form-group textarea {
  box-sizing: unset;
}
body.page-firma .modal-submit:hover {
  box-shadow: 0 6px 24px rgba(26,111,181,0.35);
}
body.page-firma footer a {
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-size: unset;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes popIn { 0% { opacity:0; transform:scale(0.95); } 100% { opacity:1; transform:scale(1); } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
body.page-firma .btn-primary.large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}
body.page-firma .hero-roi {
  position: relative;
  z-index: 1;
  animation: fadeIn 0.8s 0.3s ease both;
}
body.page-firma .roi-card {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  animation: float 5s ease-in-out infinite;
}
body.page-firma .roi-title {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}
body.page-firma .roi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.875rem;
}
body.page-firma .roi-row:last-of-type {
  border-bottom: none;
}
body.page-firma .roi-label {
  color: var(--muted);
}
body.page-firma .roi-val {
  font-weight: 500;
}
body.page-firma .roi-val.positive {
  color: var(--green);
}
body.page-firma .roi-val.negative {
  color: var(--orange);
}
body.page-firma .roi-total {
  margin-top: 1rem;
  background: var(--blue-pale);
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body.page-firma .roi-total-label {
  font-size: 0.85rem;
  font-weight: 500;
}
body.page-firma .roi-total-val {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--blue);
}
body.page-firma .roi-mini {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 0.85rem 1rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
body.page-firma .roi-mini-tl {
  top: -1.5rem;
  left: -2rem;
  animation: float 4s 1s ease-in-out infinite;
}
body.page-firma .roi-mini-br {
  bottom: -1.5rem;
  right: -1.5rem;
  animation: float 4.5s 0.5s ease-in-out infinite;
}
body.page-firma .mini-label {
  font-size: 0.68rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
body.page-firma .mini-val {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--blue);
}
body.page-firma .centered {
  text-align: center;
}
body.page-firma .centered .section-title, body.page-firma .centered .section-sub {
  margin-left: auto;
  margin-right: auto;
}
body.page-firma .vyhody {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-firma .vyhody-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
body.page-firma .vyhoda-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
body.page-firma .vyhoda-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
body.page-firma .vyhoda-card.highlight {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
body.page-firma .vyhoda-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
body.page-firma .vyhoda-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
body.page-firma .vyhoda-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}
body.page-firma .vyhoda-card:not(.highlight) p {
  color: var(--muted);
}
body.page-firma .vyhoda-card.highlight p {
  color: rgba(255,255,255,0.8);
}
body.page-firma .jak {
  background: var(--bg);
}
body.page-firma .jak-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
body.page-firma .steps {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
}
body.page-firma .step {
  display: flex;
  gap: 1.25rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
body.page-firma .step:last-child {
  border-bottom: none;
}
body.page-firma .step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--blue);
}
body.page-firma .step h4 {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
body.page-firma .step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
body.page-firma .impl-visual {
  position: sticky;
  top: 6rem;
}
body.page-firma .impl-card {
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 1rem;
}
body.page-firma .impl-card h4 {
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.page-firma .impl-step-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.82rem;
}
body.page-firma .impl-step-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  flex-shrink: 0;
}
body.page-firma .impl-step-dot.done {
  background: var(--blue);
  color: white;
}
body.page-firma .impl-timeline {
  background: var(--blue-pale);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.82rem;
}
body.page-firma .impl-timeline-row {
  display: flex;
  justify-content: space-between;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}
body.page-firma .impl-timeline-row:last-child {
  border-bottom: none;
}
body.page-firma .impl-timeline-label {
  color: var(--muted);
}
body.page-firma .impl-timeline-val {
  font-weight: 500;
  color: var(--blue);
}
body.page-firma .cenik {
  background: var(--white);
  border-top: 1px solid var(--border);
}
body.page-firma .cenik-pasma {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
body.page-firma .pasmo-card {
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  padding: 1.75rem 1.5rem;
  background: var(--bg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
body.page-firma .pasmo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
body.page-firma .pasmo-card.featured {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: var(--shadow);
}
body.page-firma .pasmo-badge {
  position: absolute;
  top: -0.7rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  white-space: nowrap;
}
body.page-firma .pasmo-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
body.page-firma .pasmo-zam {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
body.page-firma .pasmo-price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.25rem;
}
body.page-firma .pasmo-amount {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--blue);
  line-height: 1;
}
body.page-firma .pasmo-per {
  font-size: 0.78rem;
  color: var(--muted);
}
body.page-firma .pasmo-save {
  font-size: 0.72rem;
  color: var(--green);
  font-weight: 500;
  margin-bottom: 1.25rem;
}
body.page-firma .pasmo-example {
  font-size: 0.78rem;
  color: var(--muted);
  background: var(--bg);
  border-radius: 8px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
  line-height: 1.55;
  border: 1px solid var(--border);
}
body.page-firma .pasmo-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}
body.page-firma .pasmo-btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 12px rgba(26,111,181,0.25);
}
body.page-firma .pasmo-btn.primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}
body.page-firma .pasmo-btn.outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
body.page-firma .pasmo-btn.outline:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
body.page-firma .cenik-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 1.5rem;
  line-height: 1.7;
}
body.page-firma .kalk {
  background: var(--blue-pale);
  border-top: 1px solid var(--blue-light);
  border-bottom: 1px solid var(--blue-light);
  padding: 4rem 5vw;
}
body.page-firma .kalk-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
body.page-firma .kalk-inner h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}
body.page-firma .kalk-inner p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}
body.page-firma .kalk-slider-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
body.page-firma .kalk-slider-wrap label {
  font-size: 0.85rem;
  color: var(--muted);
  white-space: nowrap;
}
body.page-firma input[type=range] {
  flex: 1;
  accent-color: var(--blue);
  height: 6px;
  cursor: pointer;
}
body.page-firma .kalk-count {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--blue);
  min-width: 3rem;
  text-align: right;
}
body.page-firma .kalk-result {
  background: var(--white);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  box-shadow: var(--shadow);
}
body.page-firma .kalk-result-item {
  text-align: center;
}
body.page-firma .kalk-result-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--blue);
  line-height: 1;
}
body.page-firma .kalk-result-label {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.25rem;
}
body.page-firma .kalk-cta {
  margin-top: 1.5rem;
}
body.page-firma .kontakt {
  background: var(--white);
  border-top: 1px solid var(--border);
}
body.page-firma .kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
body.page-firma .kontakt-info h2 {
  font-family: var(--serif);
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.25;
}
body.page-firma .kontakt-info p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
body.page-firma .kontakt-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  color: var(--muted);
}
body.page-firma .kontakt-detail a {
  color: var(--blue);
  text-decoration: none;
}
body.page-firma .kontakt-detail a:hover {
  text-decoration: underline;
}
body.page-firma .kontakt-form {
  background: var(--bg);
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid var(--border);
}
body.page-firma .form-submit {
  width: 100%;
  padding: 0.85rem;
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 3px 16px rgba(26,111,181,0.25);
}
body.page-firma .form-submit:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(26,111,181,0.35);
}
body.page-firma .form-submit:disabled {
  background: var(--muted);
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
body.page-firma .form-success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
body.page-firma .form-success-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
body.page-firma .form-success h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
body.page-firma .form-success p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}
body.page-firma .faq-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
body.page-firma .faq-list {
  max-width: 680px;
  margin: 2.5rem auto 0;
}
body.page-firma .faq-item {
  border-top: 1px solid var(--border);
}
body.page-firma .faq-item:last-child {
  border-bottom: 1px solid var(--border);
}
body.page-firma .faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  transition: color 0.2s;
}
body.page-firma .faq-q:hover {
  color: var(--blue);
}
body.page-firma .faq-q span {
  color: var(--muted);
  font-size: 1.1rem;
  transition: transform 0.3s;
}
body.page-firma .faq-q.open span {
  transform: rotate(45deg);
  color: var(--blue);
}
body.page-firma .faq-a {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  padding-bottom: 1.1rem;
  display: none;
}
body.page-firma .faq-a.open {
  display: block;
  animation: fadeUp 0.3s ease both;
}
body.page-firma .cta-band {
  background: var(--blue);
  padding: 5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.page-firma .cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 200%;
  background: radial-gradient(ellipse,rgba(255,255,255,0.07) 0%,transparent 60%);
  pointer-events: none;
}
body.page-firma .cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3.5vw,3rem);
  color: white;
  margin-bottom: 0.75rem;
  position: relative;
}
body.page-firma .cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
}
body.page-firma .cta-band-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
body.page-firma .btn-white {
  background: white;
  color: var(--blue);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: inline-block;
}
body.page-firma .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
body.page-firma .footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
@media (max-width:900px) {
  body.page-firma .hero {
    grid-template-columns: 1fr;
  }
  body.page-firma .hero-roi {
    display: none;
  }
  body.page-firma .jak-inner {
    grid-template-columns: 1fr;
  }
  body.page-firma .impl-visual {
    display: none;
  }
  body.page-firma .vyhody-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-firma .cenik-pasma {
    grid-template-columns: 1fr 1fr;
  }
  body.page-firma .kontakt-inner {
    grid-template-columns: 1fr;
  }
  body.page-firma nav .nav-links {
    display: none;
  }
}
@media (max-width:600px) {
  body.page-firma .vyhody-grid {
    grid-template-columns: 1fr;
  }
  body.page-firma .cenik-pasma {
    grid-template-columns: 1fr;
  }
  body.page-firma .form-row {
    grid-template-columns: 1fr;
  }
  body.page-firma .kalk-result {
    flex-direction: column;
  }
  body.page-firma .cta-band-actions {
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  body.page-firma .form-row {
    grid-template-columns: 1fr;
  }
  body.page-firma .modal-box {
    padding: 1.5rem 1.25rem;
  }
}
@keyframes mobileMenuIn { from { transform: translateY(-8px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  body.page-firma .mobile-menu.open {
    animation: none;
  }
}
@media (max-width: 900px) {
  body.page-firma .nav-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  body.page-firma .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 600px) {
  body.page-firma nav .btn-ghost {
    display: none !important;
  }
  body.page-firma nav .nav-cta {
    gap: 0.5rem;
  }
  body.page-firma nav .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* ══ onas.css → body.page-onas ══════════════════════════════ */
body.page-onas .nav-links {
  gap: 1.5rem;
}
body.page-onas .nav-links a {
  font-size: 0.875rem;
  font-weight: unset;
}
body.page-onas .btn-ghost {
  cursor: unset;
}
body.page-onas .btn-primary {
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
body.page-onas .hero-badge {
  font-size: 0.78rem;
}
body.page-onas .hero-badge-dot {
  animation: pulse 2s infinite;
}
body.page-onas .hero h1 {
  font-size: clamp(2.6rem,6vw,4.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}
body.page-onas .hero-sub {
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.8;
}
body.page-onas .hero-actions {
  align-items: unset;
}
body.page-onas section {
  padding: 5rem 5vw;
}
body.page-onas .section-label {
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}
body.page-onas .section-title {
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  margin-bottom: 1rem;
  max-width: unset;
}
body.page-onas .section-sub {
  font-size: 0.95rem;
  max-width: 540px;
}
body.page-onas .btn-white-outline {
  border: 1.5px solid rgba(255,255,255,0.45);
  font-size: 0.95rem;
  display: inline-block;
  cursor: unset;
}
body.page-onas footer {
  color: rgba(255,255,255,0.55);
  padding: 4rem 5vw 2rem;
}
body.page-onas .footer-tagline {
  margin-top: 0.75rem;
}
body.page-onas .footer-col h5 {
  margin-bottom: 1rem;
}
body.page-onas .footer-bottom {
  color: rgba(255,255,255,0.3);
}
@keyframes fadeUp { from { opacity:0; transform:translateY(24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes float { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-8px); } }
@keyframes pulse { 0%,100% { transform:scale(1); } 50% { transform:scale(1.05); } }
body.page-onas .btn-primary.large {
  padding: 0.85rem 2rem;
  font-size: 1rem;
  border-radius: 10px;
}
body.page-onas .centered {
  text-align: center;
}
body.page-onas .centered .section-title, body.page-onas .centered .section-sub {
  margin-left: auto;
  margin-right: auto;
}
body.page-onas .hero-inner {
  max-width: 760px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}
body.page-onas .mise {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
body.page-onas .mise-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
body.page-onas .mise-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem,3vw,2rem);
  line-height: 1.4;
  color: var(--ink);
  padding-left: 2rem;
  border-left: 3px solid var(--blue);
  font-style: italic;
}
body.page-onas .mise-text p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
body.page-onas .mise-text p:last-child {
  margin-bottom: 0;
}
body.page-onas .mise-text strong {
  color: var(--ink);
  font-weight: 500;
}
body.page-onas .pribeh {
  background: var(--bg);
}
body.page-onas .timeline {
  max-width: 720px;
  margin: 3rem auto 0;
  position: relative;
}
body.page-onas .timeline::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--blue-light), var(--border));
}
body.page-onas .timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
body.page-onas .timeline-item:last-child {
  margin-bottom: 0;
}
body.page-onas .timeline-dot {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  z-index: 1;
  position: relative;
  transition: border-color 0.3s, background 0.3s;
}
body.page-onas .timeline-item:hover .timeline-dot {
  border-color: var(--blue);
  background: var(--blue-pale);
}
body.page-onas .timeline-year {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
body.page-onas .timeline-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}
body.page-onas .timeline-text {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.7;
}
body.page-onas .uspech {
  background: var(--blue);
  padding: 5rem 5vw;
  position: relative;
  overflow: hidden;
}
body.page-onas .uspech::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -10%;
  width: 60vw;
  height: 120%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 65%);
  pointer-events: none;
}
body.page-onas .uspech-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}
body.page-onas .uspech-header .section-label {
  color: rgba(255,255,255,0.6);
}
body.page-onas .uspech-header .section-title {
  color: white;
  max-width: 100%;
  margin: 0.5rem auto 0;
}
body.page-onas .uspech-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}
body.page-onas .uspech-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 2rem;
  transition: background 0.25s, transform 0.25s;
}
body.page-onas .uspech-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
body.page-onas .uspech-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
body.page-onas .uspech-place {
  font-family: var(--serif);
  font-size: 2rem;
  color: white;
  line-height: 1;
  margin-bottom: 0.35rem;
}
body.page-onas .uspech-name {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin-bottom: 0.4rem;
}
body.page-onas .uspech-year {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.page-onas .uspech-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-top: 0.75rem;
}
body.page-onas .co-delame {
  background: var(--white);
  border-top: 1px solid var(--border);
}
body.page-onas .co-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
body.page-onas .co-card {
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
body.page-onas .co-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
body.page-onas .co-card.blue {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
body.page-onas .co-icon {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}
body.page-onas .co-card h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
body.page-onas .co-card p {
  font-size: 0.85rem;
  line-height: 1.7;
}
body.page-onas .co-card:not(.blue) p {
  color: var(--muted);
}
body.page-onas .co-card.blue p {
  color: rgba(255,255,255,0.8);
}
body.page-onas .vize {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
body.page-onas .vize-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
body.page-onas .vize-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}
body.page-onas .vize-pillar {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  transition: border-color 0.2s, box-shadow 0.2s;
}
body.page-onas .vize-pillar:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow);
}
body.page-onas .vize-pillar-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
body.page-onas .vize-pillar h4 {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}
body.page-onas .vize-pillar p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}
body.page-onas .vize-statement {
  position: sticky;
  top: 6rem;
  background: var(--ink);
  border-radius: 24px;
  padding: 2.5rem;
  color: white;
}
body.page-onas .vize-statement h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
body.page-onas .vize-statement h3 em {
  font-style: italic;
  color: #7ec8f5;
}
body.page-onas .vize-statement p {
  color: rgba(255,255,255,0.65);
  font-size: 0.875rem;
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
body.page-onas .vize-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
body.page-onas .vize-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  font-size: 0.75rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.12);
}
body.page-onas .tym {
  background: var(--white);
  border-top: 1px solid var(--border);
}
body.page-onas .tym-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 2rem;
  margin-top: 3rem;
}
body.page-onas .tym-card {
  text-align: center;
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg);
  transition: transform 0.25s, box-shadow 0.25s;
}
body.page-onas .tym-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.page-onas .tym-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  overflow: hidden;
}
body.page-onas .tym-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}
body.page-onas .tym-role {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
body.page-onas .tym-bio {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}
body.page-onas .tym-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
body.page-onas .tym-link {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  text-decoration: none;
  transition: background 0.2s;
  color: var(--muted);
}
body.page-onas .tym-link:hover {
  background: var(--blue);
  color: white;
}
body.page-onas .tym-card.featured {
  background: var(--blue-pale);
  border-color: var(--blue-light);
}
body.page-onas .video-sekce {
  background: var(--ink);
  padding: 5rem 5vw;
  text-align: center;
}
body.page-onas .video-sekce h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  color: white;
  margin-bottom: 0.75rem;
}
body.page-onas .video-sekce p {
  color: rgba(255,255,255,0.65);
  font-size: 0.95rem;
  max-width: 500px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
body.page-onas .video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}
body.page-onas .video-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 1.75rem;
  text-align: left;
  text-decoration: none;
  color: white;
  transition: background 0.2s, transform 0.2s;
}
body.page-onas .video-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-3px);
}
body.page-onas .video-card-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}
body.page-onas .video-card h4 {
  font-family: var(--serif);
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
body.page-onas .video-card p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin-bottom: 1rem;
}
body.page-onas .video-card-link {
  font-size: 0.8rem;
  color: #7ec8f5;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
body.page-onas .cta-band {
  background: var(--blue);
  padding: 5rem 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}
body.page-onas .cta-band::before {
  content: "";
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 80vw;
  height: 200%;
  background: radial-gradient(ellipse,rgba(255,255,255,0.07) 0%,transparent 60%);
  pointer-events: none;
}
body.page-onas .cta-band h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem,3.5vw,3rem);
  color: white;
  margin-bottom: 0.75rem;
  position: relative;
}
body.page-onas .cta-band p {
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 0.95rem;
  line-height: 1.7;
  position: relative;
}
body.page-onas .btn-white {
  background: white;
  color: var(--blue);
  border: none;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: inline-block;
}
body.page-onas .btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.18);
}
body.page-onas .footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
body.page-onas .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
body.page-onas .footer-social a {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.2s;
}
body.page-onas .footer-social a:hover {
  background: var(--blue);
  color: white;
}
body.page-onas .footer-bottom a {
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}
body.page-onas .footer-bottom a:hover {
  color: rgba(255,255,255,0.7);
}
@media (max-width:900px) {
  body.page-onas section[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  body.page-onas .mise-inner, body.page-onas .vize-inner {
    grid-template-columns: 1fr;
  }
  body.page-onas .vize-statement {
    position: static;
  }
  body.page-onas .uspech-grid {
    grid-template-columns: 1fr;
  }
  body.page-onas .co-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-onas .tym-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-onas .video-grid {
    grid-template-columns: 1fr;
  }
  body.page-onas .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  body.page-onas nav .nav-links {
    display: none;
  }
}
@media (max-width:600px) {
  body.page-onas .co-grid {
    grid-template-columns: 1fr;
  }
  body.page-onas .tym-grid {
    grid-template-columns: 1fr;
  }
  body.page-onas .cta-actions {
    flex-direction: column;
  }
  body.page-onas .footer-inner {
    grid-template-columns: 1fr;
  }
  body.page-onas .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
@keyframes mobileMenuIn { from { transform: translateY(-8px); } to { transform: translateY(0); } }
@media (prefers-reduced-motion: reduce) {
  body.page-onas .mobile-menu.open {
    animation: none;
  }
}
@media (max-width: 900px) {
  body.page-onas .nav-toggle {
    display: flex;
  }
}
@media (min-width: 901px) {
  body.page-onas .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 600px) {
  body.page-onas nav .btn-ghost {
    display: none !important;
  }
  body.page-onas nav .nav-cta {
    gap: 0.5rem;
  }
  body.page-onas nav .btn-primary {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
  }
}

/* ══ blog.css → body.page-blog ══════════════════════════════ */
body.page-blog {
  overflow-x: unset;
}
body.page-blog .btn-ghost {
  cursor: unset;
}
body.page-blog .btn-primary {
  display: inline-block;
  transition: background 0.2s;
  cursor: unset;
  box-shadow: unset;
}
body.page-blog .btn-primary:hover {
  transform: unset;
}
body.page-blog footer {
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 5vw;
  text-align: center;
  font-size: 0.8rem;
}
body.page-blog .footer-copy {
  color: rgba(255,255,255,0.3);
  margin-top: 0.75rem;
}
body.page-blog footer a {
  color: rgba(255,255,255,0.55);
  margin: 0 0.75rem;
  font-size: unset;
}
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
body.page-blog .blog-hero {
  padding: 4rem 5vw 3rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--blue-pale) 100%);
  border-bottom: 1px solid var(--border);
}
body.page-blog .blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.3rem 0.85rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
body.page-blog .blog-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem,5vw,3.5rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
}
body.page-blog .blog-hero h1 em {
  font-style: italic;
  color: var(--blue);
}
body.page-blog .blog-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
body.page-blog .blog-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding: 1.5rem 5vw;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
body.page-blog .filter-btn {
  background: none;
  border: 1.5px solid var(--border);
  color: var(--muted);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}
body.page-blog .filter-btn:hover, body.page-blog .filter-btn.active {
  background: var(--blue);
  border-color: var(--blue);
  color: white;
}
body.page-blog .blog-main {
  padding: 3rem 5vw;
  max-width: 1200px;
  margin: 0 auto;
}
body.page-blog .blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
}
body.page-blog .article-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
body.page-blog .article-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue-light);
}
body.page-blog .article-thumb {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  position: relative;
  overflow: hidden;
}
body.page-blog .article-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}
body.page-blog .article-card:hover .article-thumb img {
  transform: scale(1.04);
}
body.page-blog .article-thumb.placeholder {
  background: var(--blue-light);
}
body.page-blog .article-body {
  padding: 1.5rem;
}
body.page-blog .article-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 500;
  padding: 0.18rem 0.55rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.page-blog .article-tag.orange {
  background: var(--orange-light);
  color: var(--orange);
}
body.page-blog .article-tag.purple {
  background: #f0eeff;
  color: #6b3fa0;
}
body.page-blog .article-title {
  font-family: var(--serif);
  font-size: 1.15rem;
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
body.page-blog .article-excerpt {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1rem;
}
body.page-blog .article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--muted);
}
body.page-blog .article-read-more {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  color: var(--blue);
  font-weight: 500;
  font-size: 0.8rem;
}
body.page-blog .article-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
body.page-blog .article-card.featured .article-thumb {
  aspect-ratio: auto;
  min-height: 280px;
}
body.page-blog .article-card.featured .article-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
}
body.page-blog .article-card.featured .article-title {
  font-size: 1.5rem;
}
body.page-blog .coming-soon {
  margin-top: 3rem;
  background: var(--blue-pale);
  border: 1px solid var(--blue-light);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}
body.page-blog .coming-soon h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}
body.page-blog .coming-soon p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 400px;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}
body.page-blog .newsletter {
  background: var(--blue);
  padding: 4rem 5vw;
  text-align: center;
  margin-top: 0;
}
body.page-blog .newsletter h2 {
  font-family: var(--serif);
  font-size: 1.8rem;
  color: white;
  margin-bottom: 0.5rem;
}
body.page-blog .newsletter p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
body.page-blog .newsletter-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
  margin: 0 auto;
}
body.page-blog .newsletter-form input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.875rem;
  outline: none;
}
body.page-blog .newsletter-form button {
  background: var(--ink);
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
body.page-blog .newsletter-form button:hover {
  background: #2a2826;
}
@media (max-width:900px) {
  body.page-blog .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.page-blog .article-card.featured {
    grid-column: auto;
    display: block;
  }
  body.page-blog .article-card.featured .article-thumb {
    aspect-ratio: 16/9;
    min-height: auto;
  }
}
@media (max-width:600px) {
  body.page-blog .blog-grid {
    grid-template-columns: 1fr;
  }
  body.page-blog .newsletter-form {
    flex-direction: column;
  }
}

/* ══ clanek.css → body.page-clanek ══════════════════════════════ */
body.page-clanek {
  --green: #1a9e5e;
  --green-light: #e9f7f0;
}
body.page-clanek {
  line-height: 1.7;
  overflow-x: unset;
}
body.page-clanek .btn-ghost {
  cursor: unset;
  font-family: unset;
}
body.page-clanek .btn-primary {
  color: #fff;
  display: inline-block;
  transition: background .2s;
  cursor: unset;
  font-family: unset;
  box-shadow: unset;
}
body.page-clanek .btn-primary:hover {
  transform: unset;
}
body.page-clanek footer {
  color: rgba(255,255,255,.6);
  padding: 2.5rem 5vw;
  text-align: center;
}
body.page-clanek .footer-copy {
  font-size: .8rem;
  display: block !important;
}
body.page-clanek footer a:hover {
  color: #fff;
}
body.page-clanek .art-head {
  padding: 3rem 5vw 2rem;
  background: linear-gradient(135deg, var(--bg) 0%, var(--blue-pale) 100%);
  border-bottom: 1px solid var(--border);
}
body.page-clanek .art-head-inner {
  max-width: 760px;
  margin: 0 auto;
}
body.page-clanek .art-breadcrumb {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
body.page-clanek .art-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
body.page-clanek .art-breadcrumb a:hover {
  color: var(--blue);
  text-decoration: underline;
}
body.page-clanek .art-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: .28rem .8rem;
  border-radius: 100px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .03em;
  margin-bottom: 1rem;
}
body.page-clanek .art-tag.orange {
  background: var(--orange-light);
  color: var(--orange);
}
body.page-clanek .art-head h1 {
  font-family: var(--serif);
  font-size: clamp(1.9rem,4.5vw,3rem);
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  font-weight: 400;
}
body.page-clanek .art-perex {
  font-size: 1.08rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
body.page-clanek .art-author {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
body.page-clanek .art-author img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--white);
  box-shadow: var(--shadow);
}
body.page-clanek .art-author-name {
  font-size: .9rem;
  font-weight: 600;
}
body.page-clanek .art-author-name a {
  color: var(--ink);
  text-decoration: none;
}
body.page-clanek .art-author-name a:hover {
  color: var(--blue);
}
body.page-clanek .art-author-meta {
  font-size: .78rem;
  color: var(--muted);
}
body.page-clanek .art-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 5vw 4rem;
}
body.page-clanek .art-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem,3vw,2rem);
  line-height: 1.25;
  font-weight: 400;
  margin: 2.75rem 0 1rem;
  letter-spacing: -.01em;
  scroll-margin-top: 5rem;
}
body.page-clanek .art-body h2:first-child {
  margin-top: 0;
}
body.page-clanek .art-body h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin: 1.85rem 0 .6rem;
}
body.page-clanek .art-body p {
  margin-bottom: 1.15rem;
  font-size: 1.02rem;
}
body.page-clanek .art-body a {
  color: var(--blue);
}
body.page-clanek .art-body strong {
  font-weight: 600;
}
body.page-clanek .art-body ul, body.page-clanek .art-body ol {
  margin: 0 0 1.25rem 1.35rem;
}
body.page-clanek .art-body li {
  margin-bottom: .55rem;
  font-size: 1.02rem;
}
body.page-clanek .art-toc {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem 1.6rem;
  margin-bottom: 2.5rem;
}
body.page-clanek .art-toc-title {
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--muted);
  margin-bottom: .85rem;
}
body.page-clanek .art-toc ol {
  margin: 0 0 0 1.15rem;
}
body.page-clanek .art-toc li {
  margin-bottom: .4rem;
  font-size: .92rem;
}
body.page-clanek .art-toc a {
  color: var(--blue);
  text-decoration: none;
}
body.page-clanek .art-toc a:hover {
  text-decoration: underline;
}
body.page-clanek .art-note {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 1.1rem 1.35rem;
  margin: 1.75rem 0;
  font-size: .95rem;
}
body.page-clanek .art-note strong {
  color: var(--blue);
}
body.page-clanek .art-warn {
  background: var(--red-light);
  border-left: 3px solid var(--red);
  border-radius: 0 10px 10px 0;
  padding: 1.25rem 1.45rem;
  margin: 1.75rem 0;
}
body.page-clanek .art-warn-title {
  font-weight: 700;
  color: var(--red);
  margin-bottom: .6rem;
  font-size: 1rem;
}
body.page-clanek .art-warn ul {
  margin: .5rem 0 0 1.2rem;
}
body.page-clanek .art-warn li {
  font-size: .95rem;
  margin-bottom: .4rem;
}
body.page-clanek .art-tip {
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  padding: 1.1rem 1.35rem;
  margin: 1.75rem 0;
  font-size: .95rem;
}
body.page-clanek .art-tip strong {
  color: var(--green);
}
body.page-clanek .art-exercise {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.4rem 1.6rem;
  margin-bottom: 1rem;
}
body.page-clanek .art-exercise h3 {
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: .6rem;
}
body.page-clanek .art-exercise-num {
  background: var(--blue);
  color: #fff;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
body.page-clanek .art-exercise p {
  margin-bottom: .6rem;
  font-size: .97rem;
}
body.page-clanek .art-exercise p:last-child {
  margin-bottom: 0;
}
body.page-clanek .art-exercise-meta {
  font-size: .85rem;
  color: var(--muted);
  background: var(--bg);
  border-radius: 7px;
  padding: .45rem .8rem;
  display: inline-block;
  margin-top: .5rem;
}
body.page-clanek .art-table-wrap {
  overflow-x: auto;
  margin: 1.75rem 0;
}
body.page-clanek .art-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
body.page-clanek .art-body th {
  background: var(--bg);
  text-align: left;
  padding: .8rem 1rem;
  font-weight: 600;
  font-size: .88rem;
}
body.page-clanek .art-body td {
  padding: .8rem 1rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
}
body.page-clanek .art-faq {
  border: 1px solid var(--border);
  border-radius: 11px;
  background: var(--white);
  margin-bottom: .7rem;
  overflow: hidden;
}
body.page-clanek .art-faq summary {
  cursor: pointer;
  padding: 1.1rem 1.4rem;
  font-weight: 500;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
body.page-clanek .art-faq summary::-webkit-details-marker {
  display: none;
}
body.page-clanek .art-faq summary::after {
  content: '+';
  font-size: 1.35rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform .25s;
  line-height: 1;
}
body.page-clanek .art-faq[open] summary::after {
  transform: rotate(45deg);
}
body.page-clanek .art-faq[open] {
  border-color: var(--blue-light);
}
body.page-clanek .art-faq-a {
  padding: 0 1.4rem 1.25rem;
  color: var(--muted);
  font-size: .96rem;
}
body.page-clanek .art-cta {
  background: linear-gradient(135deg, var(--blue) 0%, #134e80 100%);
  border-radius: 16px;
  padding: 2rem 1.9rem;
  margin: 2.75rem 0;
  text-align: center;
  color: #fff;
}
body.page-clanek .art-cta h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 .6rem;
  color: #fff;
}
body.page-clanek .art-cta p {
  color: rgba(255,255,255,.85);
  font-size: .97rem;
  margin-bottom: 1.4rem;
}
body.page-clanek .art-cta-btn {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  padding: .9rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 26px rgba(217,91,34,.4);
  transition: transform .18s, background .2s;
}
body.page-clanek .art-cta-btn:hover {
  background: #e86a32;
  transform: translateY(-2px);
}
body.page-clanek .art-sources {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--border);
}
body.page-clanek .art-sources h2 {
  font-size: 1.1rem !important;
  font-family: var(--sans) !important;
  font-weight: 600;
  margin: 0 0 .85rem;
}
body.page-clanek .art-sources ol {
  margin-left: 1.2rem;
}
body.page-clanek .art-sources li {
  font-size: .88rem;
  color: var(--muted);
  margin-bottom: .5rem;
}
body.page-clanek .art-sources a {
  color: var(--blue);
  word-break: break-word;
}
body.page-clanek .art-disclaimer {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.1rem 1.35rem;
  margin-top: 1.5rem;
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.65;
}
body.page-clanek .art-more {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 3.5rem 5vw;
}
body.page-clanek .art-more-inner {
  max-width: 760px;
  margin: 0 auto;
}
body.page-clanek .art-more h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
body.page-clanek .art-more-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
body.page-clanek .art-more-card {
  display: block;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.35rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s, transform .2s, box-shadow .2s;
}
body.page-clanek .art-more-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
body.page-clanek .art-more-card .t {
  font-size: .72rem;
  color: var(--blue);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: .4rem;
}
body.page-clanek .art-more-card .h {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.4;
}
body.page-clanek footer div {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
@media (max-width:640px) {
  body.page-clanek .art-more-grid {
    grid-template-columns: 1fr;
  }
  body.page-clanek .art-body {
    padding: 2rem 1.4rem 3rem;
  }
  body.page-clanek .art-head {
    padding: 2rem 1.4rem 1.75rem;
  }
}

/* ══ dotaznik.css → body.page-dotaznik ══════════════════════════════ */
body.page-dotaznik {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: unset;
  overflow-x: unset;
}
body.page-dotaznik nav {
  background: rgba(247,246,243,0.95);
  backdrop-filter: blur(12px);
  z-index: 100;
}
body.page-dotaznik .btn-primary {
  padding: 0.9rem 2rem;
  border-radius: 10px;
  font-size: 1rem;
  box-shadow: 0 3px 16px rgba(26,111,181,0.3);
  display: inline-block;
}
body.page-dotaznik .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(26,111,181,0.35);
}
body.page-dotaznik .form-group input, body.page-dotaznik .form-group select, body.page-dotaznik .form-group textarea {
  box-sizing: unset;
}
body.page-dotaznik .modal-submit:hover {
  box-shadow: 0 6px 24px rgba(26,111,181,0.35);
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes fadeIn {
  from { opacity:0; } to { opacity:1; }
}
@keyframes popIn {
  0%   { opacity:0; transform:scale(0.92); }
  100% { opacity:1; transform:scale(1); }
}
@keyframes progressFill {
  from { width: 0%; }
}
body.page-dotaznik .nav-back {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  color: var(--muted);
  font-size: 0.875rem;
  transition: color 0.2s;
}
body.page-dotaznik .nav-back:hover {
  color: var(--ink);
}
body.page-dotaznik .quiz-hero {
  text-align: center;
  padding: 4rem 5vw 3rem;
  animation: fadeUp 0.6s ease both;
}
body.page-dotaznik .quiz-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue-light);
  color: var(--blue);
  padding: 0.35rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
body.page-dotaznik .quiz-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
body.page-dotaznik .quiz-hero h1 em {
  font-style: italic;
  color: var(--blue);
}
body.page-dotaznik .quiz-hero p {
  color: var(--muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}
body.page-dotaznik .quiz-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
body.page-dotaznik .quiz-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--muted);
}
body.page-dotaznik .quiz-meta-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
}
body.page-dotaznik .quiz-wrap {
  flex: 1;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 5vw 5rem;
}
body.page-dotaznik .quiz-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  width: 100%;
  max-width: 660px;
  box-shadow: 0 8px 40px rgba(26,111,181,0.08);
  animation: popIn 0.4s ease both;
}
body.page-dotaznik .progress-wrap {
  margin-bottom: 2rem;
}
body.page-dotaznik .progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.6rem;
}
body.page-dotaznik .progress-label {
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
body.page-dotaznik .progress-count {
  font-size: 0.75rem;
  color: var(--muted);
}
body.page-dotaznik .progress-track {
  height: 5px;
  background: var(--border);
  border-radius: 100px;
  overflow: hidden;
}
body.page-dotaznik .progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), var(--blue-mid));
  border-radius: 100px;
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
body.page-dotaznik .quiz-step {
  display: none;
}
body.page-dotaznik .quiz-step.active {
  display: block;
  animation: fadeUp 0.35s ease both;
}
body.page-dotaznik .step-num {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}
body.page-dotaznik .quiz-question {
  font-family: var(--serif);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
body.page-dotaznik .quiz-hint {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1.75rem;
  line-height: 1.6;
}
body.page-dotaznik .quiz-options {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
body.page-dotaznik .quiz-opt {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.25rem;
  cursor: pointer;
  text-align: left;
  width: 100%;
  font-family: var(--sans);
  transition: border-color 0.18s, background 0.18s, transform 0.15s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
body.page-dotaznik .quiz-opt::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-pale), transparent);
  opacity: 0;
  transition: opacity 0.2s;
}
body.page-dotaznik .quiz-opt:hover {
  border-color: var(--blue);
  background: var(--white);
  transform: translateX(5px);
  box-shadow: 0 4px 16px rgba(26,111,181,0.1);
}
body.page-dotaznik .quiz-opt:hover::before {
  opacity: 1;
}
body.page-dotaznik .quiz-opt:active {
  transform: translateX(3px) scale(0.99);
}
body.page-dotaznik .opt-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
body.page-dotaznik .opt-text {
  position: relative;
  z-index: 1;
}
body.page-dotaznik .opt-title {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
body.page-dotaznik .opt-sub {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
}
body.page-dotaznik .opt-arrow {
  margin-left: auto;
  color: var(--border);
  font-size: 1rem;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
  position: relative;
  z-index: 1;
}
body.page-dotaznik .quiz-opt:hover .opt-arrow {
  color: var(--blue);
  transform: translateX(3px);
}
body.page-dotaznik .quiz-result {
  text-align: center;
  animation: popIn 0.5s ease both;
}
body.page-dotaznik .result-emoji {
  font-size: 4rem;
  margin-bottom: 1.25rem;
  display: block;
  animation: popIn 0.5s 0.1s ease both;
}
body.page-dotaznik .result-badge {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
body.page-dotaznik .result-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1.25;
  margin-bottom: 1rem;
}
body.page-dotaznik .result-text {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 480px;
  margin: 0 auto 0.75rem;
  line-height: 1.75;
}
body.page-dotaznik .result-highlight {
  background: var(--blue-light);
  color: var(--blue);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 1.25rem 0 2rem;
  text-align: left;
}
body.page-dotaznik .result-highlight strong {
  display: block;
  margin-bottom: 0.4rem;
  font-weight: 600;
}
body.page-dotaznik .result-highlight ul {
  padding-left: 1.2rem;
}
body.page-dotaznik .result-highlight li {
  margin-bottom: 0.3rem;
}
body.page-dotaznik .result-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}
body.page-dotaznik .btn-secondary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
  padding: 0.75rem 1.75rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 400;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
body.page-dotaznik .btn-secondary:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
body.page-dotaznik .result-restart {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.8rem;
  cursor: pointer;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
body.page-dotaznik .result-restart:hover {
  color: var(--ink);
}
body.page-dotaznik .result-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.5rem 0;
  color: var(--muted);
  font-size: 0.8rem;
}
body.page-dotaznik .result-divider::before, body.page-dotaznik .result-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
body.page-dotaznik .quiz-footer {
  text-align: center;
  padding: 2rem 5vw;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--muted);
}
body.page-dotaznik .quiz-footer a {
  color: var(--blue);
  text-decoration: none;
}
@media (max-width: 600px) {
  body.page-dotaznik .quiz-card {
    padding: 1.75rem 1.25rem;
    border-radius: 16px;
  }
  body.page-dotaznik .quiz-opt {
    padding: 0.875rem 1rem;
  }
  body.page-dotaznik .result-emoji {
    font-size: 3rem;
  }
}
body.page-dotaznik .plan-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s;
}
body.page-dotaznik .plan-card:hover {
  border-color: var(--blue);
  box-shadow: 0 6px 24px rgba(26,111,181,0.1);
  transform: translateY(-2px);
}
body.page-dotaznik .plan-card.plan-featured {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 4px 20px rgba(26,111,181,0.12);
}
body.page-dotaznik .plan-card.plan-highlighted {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,111,181,0.2), 0 8px 32px rgba(26,111,181,0.15);
  transform: translateY(-3px);
}
body.page-dotaznik .plan-badge-top {
  position: absolute;
  top: -0.7rem;
  left: 1.25rem;
  background: var(--orange);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
body.page-dotaznik .plan-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}
body.page-dotaznik .plan-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
body.page-dotaznik .plan-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  max-width: 280px;
}
body.page-dotaznik .plan-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--blue);
  white-space: nowrap;
  flex-shrink: 0;
}
body.page-dotaznik .plan-price span {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--muted);
  font-weight: 300;
}
body.page-dotaznik .plan-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--ink);
}
body.page-dotaznik .plan-features li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}
body.page-dotaznik .plan-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0.7rem 1rem;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
body.page-dotaznik .plan-btn-primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 2px 12px rgba(26,111,181,0.25);
}
body.page-dotaznik .plan-btn-primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26,111,181,0.35);
}
body.page-dotaznik .plan-btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
}
body.page-dotaznik .plan-btn-outline:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
body.page-dotaznik .quiz-back {
  background: none;
  border: none;
  color: var(--muted);
  font-family: var(--sans);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 0.5rem 0;
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color 0.2s, transform 0.15s;
}
body.page-dotaznik .quiz-back:hover {
  color: var(--blue);
  transform: translateX(-3px);
}
body.page-dotaznik .plan-recommended {
  display: inline-block;
  background: var(--blue);
  color: white;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}
@media (max-width: 500px) {
  body.page-dotaznik .form-row {
    grid-template-columns: 1fr;
  }
  body.page-dotaznik .modal-box {
    padding: 1.5rem 1.25rem;
  }
}

/* ══ pravni.css → body.page-pravni ══════════════════════════════ */
body.page-pravni {
  line-height: 1.7;
  overflow-x: unset;
}
body.page-pravni nav {
  background: rgba(247,246,243,.94);
}
body.page-pravni .btn-ghost {
  cursor: unset;
  font-family: unset;
}
body.page-pravni .btn-primary {
  color: #fff;
  display: inline-block;
  transition: background .2s;
  border: unset;
  cursor: unset;
  font-family: unset;
  box-shadow: unset;
}
body.page-pravni .btn-primary:hover {
  transform: unset;
}
body.page-pravni footer {
  color: rgba(255,255,255,.6);
  padding: 2.5rem 5vw;
  text-align: center;
}
body.page-pravni .footer-copy {
  font-size: .8rem;
}
body.page-pravni footer a:hover {
  color: #fff;
}
body.page-pravni *, body.page-pravni *::before, body.page-pravni *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body.page-pravni .doc-head {
  padding: 2.75rem 5vw 2rem;
  background: linear-gradient(135deg,var(--bg) 0%,var(--blue-pale) 100%);
  border-bottom: 1px solid var(--border);
}
body.page-pravni .doc-head-inner {
  max-width: 820px;
  margin: 0 auto;
}
body.page-pravni .doc-breadcrumb {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 1.1rem;
}
body.page-pravni .doc-breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}
body.page-pravni .doc-breadcrumb a:hover {
  color: var(--blue);
  text-decoration: underline;
}
body.page-pravni .doc-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  padding: .26rem .8rem;
  border-radius: 100px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .05em;
  margin-bottom: .9rem;
}
body.page-pravni .doc-head h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem,4vw,2.7rem);
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 400;
  margin-bottom: .5rem;
}
body.page-pravni .doc-sub {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 1.1rem;
}
body.page-pravni .doc-meta {
  font-size: .83rem;
  color: var(--muted);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
body.page-pravni .doc-meta strong {
  color: var(--ink);
  font-weight: 600;
}
body.page-pravni .doc-draft {
  max-width: 820px;
  margin: 1.75rem auto 0;
  padding: 1.1rem 1.35rem;
  background: var(--warn-bg);
  border: 1.5px solid #e9b8b3;
  border-left: 4px solid var(--warn);
  border-radius: 0 10px 10px 0;
  font-size: .9rem;
  color: #6d1a1a;
  line-height: 1.6;
}
body.page-pravni .doc-draft strong {
  display: block;
  margin-bottom: .3rem;
  color: var(--warn);
}
body.page-pravni .doc-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 2.5rem 5vw 3.5rem;
}
body.page-pravni .doc-body h2 {
  font-family: var(--serif);
  font-size: clamp(1.3rem,2.6vw,1.75rem);
  font-weight: 400;
  line-height: 1.3;
  margin: 2.5rem 0 .9rem;
  padding-top: .6rem;
  border-top: 1px solid var(--border);
  scroll-margin-top: 5rem;
}
body.page-pravni .doc-body h2:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}
body.page-pravni .doc-body h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.6rem 0 .5rem;
}
body.page-pravni .doc-body p {
  margin-bottom: .95rem;
  font-size: .97rem;
}
body.page-pravni .doc-body ul {
  margin: 0 0 1.1rem 1.3rem;
}
body.page-pravni .doc-body li {
  margin-bottom: .45rem;
  font-size: .97rem;
}
body.page-pravni .doc-body a {
  color: var(--blue);
}
body.page-pravni .doc-body strong {
  font-weight: 600;
}
body.page-pravni mark.doplnit {
  background: #fff3a3;
  color: #6b5800;
  padding: .1rem .3rem;
  border-radius: 3px;
  font-weight: 500;
  border-bottom: 2px solid #e0c200;
}
body.page-pravni .doc-related {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 3rem 5vw;
}
body.page-pravni .doc-related-inner {
  max-width: 820px;
  margin: 0 auto;
}
body.page-pravni .doc-related h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1.35rem;
}
body.page-pravni .doc-related-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .9rem;
}
body.page-pravni .doc-related-card {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.15rem 1.3rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s,transform .2s,box-shadow .2s;
}
body.page-pravni .doc-related-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
body.page-pravni .doc-related-card .i {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}
body.page-pravni .doc-related-card .h {
  display: block;
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.35;
  margin-bottom: .2rem;
}
body.page-pravni .doc-related-card .d {
  display: block;
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.45;
}
body.page-pravni .hub-head {
  padding: 3.5rem 5vw 2.5rem;
  background: linear-gradient(135deg,var(--bg) 0%,var(--blue-pale) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
body.page-pravni .hub-head h1 {
  font-family: var(--serif);
  font-size: clamp(2rem,4.5vw,3rem);
  font-weight: 400;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
}
body.page-pravni .hub-head p {
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1rem;
}
body.page-pravni .hub-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 5vw 4rem;
}
body.page-pravni .hub-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body.page-pravni .hub-card {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.5rem 1.7rem;
  text-decoration: none;
  color: var(--ink);
  transition: border-color .2s,transform .2s,box-shadow .2s;
}
body.page-pravni .hub-card:hover {
  border-color: var(--blue);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
body.page-pravni .hub-card .i {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}
body.page-pravni .hub-card h2 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: .3rem;
}
body.page-pravni .hub-card p {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.6;
  margin: 0;
}
body.page-pravni .hub-card .badge {
  display: inline-block;
  background: #fff3a3;
  color: #6b5800;
  font-size: .68rem;
  font-weight: 600;
  padding: .15rem .5rem;
  border-radius: 100px;
  margin-left: .45rem;
  vertical-align: middle;
}
body.page-pravni .hub-note {
  margin-top: 2.5rem;
  padding: 1.2rem 1.45rem;
  background: var(--blue-pale);
  border: 1px solid #b8d8f0;
  border-radius: 11px;
  font-size: .88rem;
  color: #2a4a6a;
  line-height: 1.65;
}
body.page-pravni .hub-note strong {
  color: var(--blue);
}
body.page-pravni footer>div {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}
body.page-pravni footer .cc-footer-link {
  color: rgba(255,255,255,.65);
  font-size: .875rem;
}
@media (max-width:640px) {
  body.page-pravni .doc-related-grid {
    grid-template-columns: 1fr;
  }
  body.page-pravni .doc-body {
    padding: 2rem 1.4rem 3rem;
  }
  body.page-pravni .doc-head {
    padding: 2rem 1.4rem 1.6rem;
  }
}
body.page-pravni .doc-note-box {
  background: var(--blue-pale);
  border-left: 3px solid var(--blue);
  border-radius: 0 10px 10px 0;
  padding: 1.1rem 1.35rem;
  margin: 1.6rem 0;
  font-size: .94rem;
  line-height: 1.65;
}
body.page-pravni .doc-note-box strong {
  color: var(--blue);
}
body.page-pravni .doc-warn-box {
  background: var(--warn-bg);
  border-left: 3px solid var(--warn);
  border-radius: 0 10px 10px 0;
  padding: 1.1rem 1.35rem;
  margin: 1.6rem 0;
  font-size: .94rem;
  line-height: 1.65;
  color: #6d1a1a;
}
body.page-pravni .doc-warn-box strong {
  color: var(--warn);
}
body.page-pravni .art-table-wrap {
  overflow-x: auto;
  margin: 1.6rem 0;
}
body.page-pravni .doc-body table {
  width: 100%;
  border-collapse: collapse;
  font-size: .9rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}
body.page-pravni .doc-body th {
  background: var(--bg);
  text-align: left;
  padding: .75rem .95rem;
  font-weight: 600;
  font-size: .85rem;
}
body.page-pravni .doc-body td {
  padding: .75rem .95rem;
  border-top: 1px solid var(--border);
  vertical-align: top;
  line-height: 1.55;
}
body.page-pravni .cc-inline-link {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: var(--blue);
  text-decoration: underline;
  cursor: pointer;
}
body.page-pravni .cc-inline-link:hover {
  color: var(--blue-mid);
}

/* ══ 404.html → body.page-404 ══════════════════════════════ */
body.page-404 *, body.page-404 *::before, body.page-404 *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body.page-404 {
  --bg: #f7f6f3;
  --ink: #141210;
  --muted: #7a7671;
  --border: #e4e2dc;
  --blue: #1a6fb5;
  --blue-mid: #2a87d4;
  --serif: 'Instrument Serif',serif;
  --sans: 'Outfit',sans-serif;
}
body.page-404 {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem 1.5rem;
}
body.page-404 img.logo {
  height: 44px;
  width: auto;
  margin-bottom: 2.5rem;
}
body.page-404 .code {
  font-family: var(--serif);
  font-size: clamp(4rem,12vw,7rem);
  color: var(--blue);
  line-height: 1;
  margin-bottom: .5rem;
}
body.page-404 h1 {
  font-family: var(--serif);
  font-size: clamp(1.6rem,4vw,2.4rem);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
body.page-404 p {
  color: var(--muted);
  max-width: 440px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}
body.page-404 .actions {
  display: flex;
  gap: .85rem;
  flex-wrap: wrap;
  justify-content: center;
}
body.page-404 a.btn {
  padding: .85rem 1.75rem;
  border-radius: 10px;
  text-decoration: none;
  font-size: .95rem;
  font-weight: 500;
  transition: all .2s;
}
body.page-404 a.primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 2px 12px rgba(26,111,181,.25);
}
body.page-404 a.primary:hover {
  background: var(--blue-mid);
  transform: translateY(-1px);
}
body.page-404 a.ghost {
  border: 1.5px solid var(--border);
  color: var(--ink);
}
body.page-404 a.ghost:hover {
  border-color: var(--blue);
}
body.page-404 .links {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: .875rem;
}
body.page-404 .links a {
  color: var(--muted);
  text-decoration: none;
}
body.page-404 .links a:hover {
  color: var(--blue);
}

/* ══ nabidka-firmy.html → body.page-nabidka ══════════════════════════════ */
@page { size: A4; margin: 14mm 0; }
body.page-nabidka {
  --bg: #f7f6f3;
  --ink: #141210;
  --muted: #6f6b66;
  --border: #e2e0da;
  --blue: #1a6fb5;
  --blue-dark: #134e80;
  --blue-light: #deeef9;
  --blue-pale: #f0f7fd;
  --orange: #d95b22;
  --orange-light: #fdf0e8;
  --green: #1a7f4b;
  --green-light: #e9f7f0;
  --serif: 'Instrument Serif',Georgia,serif;
  --sans: 'Outfit',system-ui,sans-serif;
}
body.page-nabidka *, body.page-nabidka *::before, body.page-nabidka *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body.page-nabidka {
  font-family: var(--sans);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.6;
  font-size: 10.5pt;
  background: #fff;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}
body.page-nabidka .page {
  width: 182mm;
  margin: 0 auto;
  padding: 0 4mm;
}
body.page-nabidka .break {
  break-after: page;
  page-break-after: always;
}
body.page-nabidka section {
  break-inside: avoid;
}
body.page-nabidka .cover {
  height: 262mm;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(150deg,#fff 0%,var(--blue-pale) 60%,#e3f0fb 100%);
  padding: 16mm 14mm;
  border-radius: 4mm;
}
body.page-nabidka .cover-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body.page-nabidka .cover-logo {
  display: flex;
  align-items: center;
  gap: 3mm;
}
body.page-nabidka .cover-logo img {
  height: 13mm;
}
body.page-nabidka .cover-logo span {
  font-family: var(--serif);
  font-size: 19pt;
}
body.page-nabidka .cover-badge {
  background: var(--blue);
  color: #fff;
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  padding: 2mm 4mm;
  border-radius: 20mm;
}
body.page-nabidka .cover-mid h1 {
  font-family: var(--serif);
  font-size: 34pt;
  line-height: 1.12;
  letter-spacing: -.5pt;
  margin-bottom: 6mm;
  font-weight: 400;
}
body.page-nabidka .cover-mid h1 em {
  font-style: italic;
  color: var(--blue);
}
body.page-nabidka .cover-lead {
  font-size: 12pt;
  color: var(--muted);
  line-height: 1.65;
  max-width: 135mm;
}
body.page-nabidka .cover-facts {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 5mm;
  margin-top: 12mm;
}
body.page-nabidka .cover-fact {
  background: rgba(255,255,255,.75);
  border: .4mm solid rgba(26,111,181,.18);
  border-radius: 3mm;
  padding: 5mm;
}
body.page-nabidka .cover-fact .n {
  font-family: var(--serif);
  font-size: 21pt;
  color: var(--blue);
  line-height: 1;
}
body.page-nabidka .cover-fact .l {
  font-size: 8.5pt;
  color: var(--muted);
  margin-top: 1.5mm;
  line-height: 1.4;
}
body.page-nabidka .cover-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-top: .4mm solid rgba(26,111,181,.2);
  padding-top: 5mm;
  font-size: 9pt;
  color: var(--muted);
}
body.page-nabidka .cover-bottom strong {
  color: var(--ink);
  display: block;
  font-weight: 600;
  font-size: 10pt;
  margin-bottom: 1mm;
}
body.page-nabidka h2 {
  font-family: var(--serif);
  font-size: 19pt;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 3mm;
}
body.page-nabidka h2 em {
  font-style: italic;
  color: var(--blue);
}
body.page-nabidka .lead {
  color: var(--muted);
  font-size: 10.5pt;
  margin-bottom: 7mm;
  max-width: 150mm;
}
body.page-nabidka .eyebrow {
  display: inline-block;
  color: var(--blue);
  font-size: 8pt;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  margin-bottom: 2.5mm;
}
body.page-nabidka .sec {
  margin-bottom: 11mm;
}
body.page-nabidka .grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4mm;
}
body.page-nabidka .card {
  border: .4mm solid var(--border);
  border-radius: 3mm;
  padding: 5mm;
  background: #fff;
  break-inside: avoid;
}
body.page-nabidka .card .ico {
  font-size: 14pt;
  line-height: 1;
  margin-bottom: 2.5mm;
}
body.page-nabidka .card h3 {
  font-size: 10.5pt;
  font-weight: 600;
  margin-bottom: 1.5mm;
}
body.page-nabidka .card p {
  font-size: 9pt;
  color: var(--muted);
  line-height: 1.55;
}
body.page-nabidka .esg {
  background: var(--ink);
  color: #fff;
  border-radius: 3mm;
  padding: 8mm;
  break-inside: avoid;
}
body.page-nabidka .esg .eyebrow {
  color: #7ec8f5;
}
body.page-nabidka .esg h2 {
  color: #fff;
  margin-bottom: 4mm;
}
body.page-nabidka .esg h2 em {
  color: #7ec8f5;
}
body.page-nabidka .esg p {
  color: rgba(255,255,255,.8);
  font-size: 10pt;
  line-height: 1.7;
  margin-bottom: 4mm;
}
body.page-nabidka .esg-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3mm;
  margin-top: 5mm;
}
body.page-nabidka .esg-item {
  background: rgba(255,255,255,.07);
  border-radius: 2mm;
  padding: 3.5mm 4mm;
  display: flex;
  gap: 3mm;
  align-items: flex-start;
}
body.page-nabidka .esg-item .t {
  font-size: 9.5pt;
  font-weight: 600;
  margin-bottom: .8mm;
}
body.page-nabidka .esg-item .d {
  font-size: 8pt;
  color: rgba(255,255,255,.6);
  line-height: 1.45;
}
body.page-nabidka .roi {
  border: .5mm solid var(--blue-light);
  border-radius: 3mm;
  overflow: hidden;
  break-inside: avoid;
}
body.page-nabidka .roi-head {
  background: var(--blue-pale);
  padding: 4mm 6mm;
  font-weight: 600;
  font-size: 10pt;
  border-bottom: .4mm solid var(--blue-light);
}
body.page-nabidka .roi table {
  width: 100%;
  border-collapse: collapse;
}
body.page-nabidka .roi td {
  padding: 3mm 6mm;
  font-size: 9.5pt;
  border-bottom: .3mm solid var(--border);
}
body.page-nabidka .roi td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}
body.page-nabidka .roi .neg td:last-child {
  color: var(--orange);
}
body.page-nabidka .roi .pos td:last-child {
  color: var(--green);
}
body.page-nabidka .roi .total td {
  background: var(--green-light);
  font-size: 11pt;
  font-weight: 700;
  border-bottom: none;
  padding: 4.5mm 6mm;
}
body.page-nabidka .roi .total td:last-child {
  color: var(--green);
}
body.page-nabidka .assum {
  font-size: 8pt;
  color: var(--muted);
  line-height: 1.5;
  margin-top: 3mm;
  background: var(--bg);
  border-radius: 2mm;
  padding: 3.5mm 4.5mm;
}
body.page-nabidka .price-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 3mm;
}
body.page-nabidka .price {
  border: .4mm solid var(--border);
  border-radius: 3mm;
  padding: 5mm 4mm;
  text-align: center;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
}
body.page-nabidka .price.hi {
  border-color: var(--blue);
  border-width: .7mm;
  background: var(--blue-pale);
}
body.page-nabidka .price .tier {
  font-size: 8pt;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
  font-weight: 600;
}
body.page-nabidka .price .range {
  font-size: 9pt;
  font-weight: 600;
  margin: 1.5mm 0 3mm;
}
body.page-nabidka .price .amt {
  font-family: var(--serif);
  font-size: 23pt;
  color: var(--blue);
  line-height: 1;
}
body.page-nabidka .price .amt small {
  font-family: var(--sans);
  font-size: 8.5pt;
  color: var(--muted);
  display: block;
  margin-top: 1mm;
  font-weight: 400;
}
body.page-nabidka .price .save {
  font-size: 7.5pt;
  color: var(--green);
  font-weight: 600;
  margin-top: 2.5mm;
  margin-bottom: 1mm;
}
body.page-nabidka .price .tag {
  position: absolute;
  top: -2.5mm;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: #fff;
  font-size: 7pt;
  font-weight: 600;
  padding: .8mm 3mm;
  border-radius: 10mm;
  white-space: nowrap;
}
body.page-nabidka .price .ex {
  margin-top: auto;
  font-size: 7.5pt;
  color: var(--muted);
  margin-top: 3mm;
  padding-top: 2.5mm;
  border-top: .3mm solid var(--border);
}
body.page-nabidka .price .ex strong {
  color: var(--ink);
  font-weight: 600;
}
body.page-nabidka .price-note {
  font-size: 8.5pt;
  color: var(--muted);
  text-align: center;
  margin-top: 4mm;
}
body.page-nabidka .timeline {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 3mm;
  margin-top: 5mm;
}
body.page-nabidka .tl {
  background: var(--bg);
  border-radius: 3mm;
  padding: 4mm;
  text-align: center;
  border-top: 1mm solid var(--blue);
}
body.page-nabidka .tl .d {
  font-size: 8pt;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
body.page-nabidka .tl .t {
  font-size: 9.5pt;
  font-weight: 600;
  margin-top: 1.5mm;
  line-height: 1.35;
}
body.page-nabidka .step {
  display: flex;
  gap: 4mm;
  margin-bottom: 4mm;
  break-inside: avoid;
}
body.page-nabidka .step .num {
  flex-shrink: 0;
  width: 8mm;
  height: 8mm;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9.5pt;
  font-weight: 700;
}
body.page-nabidka .step h3 {
  font-size: 10.5pt;
  font-weight: 600;
  margin-bottom: 1mm;
}
body.page-nabidka .step p {
  font-size: 9pt;
  color: var(--muted);
  line-height: 1.55;
}
body.page-nabidka .checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5mm 6mm;
  margin-top: 4mm;
}
body.page-nabidka .check {
  display: flex;
  gap: 2.5mm;
  align-items: flex-start;
  font-size: 9.5pt;
}
body.page-nabidka .check .c {
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}
body.page-nabidka .faq {
  border-bottom: .3mm solid var(--border);
  padding: 3.5mm 0;
  break-inside: avoid;
}
body.page-nabidka .faq:last-child {
  border-bottom: none;
}
body.page-nabidka .faq .q {
  font-size: 9.8pt;
  font-weight: 600;
  margin-bottom: 1.5mm;
}
body.page-nabidka .faq .a {
  font-size: 9pt;
  color: var(--muted);
  line-height: 1.6;
}
body.page-nabidka .cta {
  background: linear-gradient(135deg,var(--blue) 0%,var(--blue-dark) 100%);
  color: #fff;
  border-radius: 3mm;
  padding: 9mm;
  text-align: center;
  break-inside: avoid;
}
body.page-nabidka .cta h2 {
  color: #fff;
  margin-bottom: 3mm;
}
body.page-nabidka .cta p {
  color: rgba(255,255,255,.85);
  font-size: 10.5pt;
  max-width: 130mm;
  margin: 0 auto 6mm;
  line-height: 1.65;
}
body.page-nabidka .cta-box {
  background: rgba(255,255,255,.12);
  border-radius: 2.5mm;
  padding: 5mm;
  display: inline-block;
  text-align: left;
}
body.page-nabidka .cta-box .row {
  display: flex;
  gap: 3mm;
  align-items: center;
  font-size: 11pt;
  margin-bottom: 2mm;
}
body.page-nabidka .cta-box .row:last-child {
  margin-bottom: 0;
}
body.page-nabidka .cta-box strong {
  font-weight: 600;
}
body.page-nabidka .foot {
  margin-top: 8mm;
  padding-top: 4mm;
  border-top: .3mm solid var(--border);
  display: flex;
  justify-content: space-between;
  font-size: 8pt;
  color: var(--muted);
}

/* ── Vytažené opakované inline styly ────────────────────── */
.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}
.hp-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.u-row {
  display: flex;
  gap: .75rem;
  align-items: center;
}
.u-mb-1 {
  margin: 0 0 1rem;
}
.u-bg-lilac {
  background: #f0eeff;
}
