/* ============================================
   Velmi včasná identifikace rizik
   neurovývojových vad - Stylesheet v2
   ============================================ */

:root {
  --meridiem: #1FA39A;
  --meridiem-dark: #0F7F77;
  --meridiem-darker: #084E48;
  --meridiem-tint: #E5F4F2;
  --meridiem-faint: #F4FAF9;

  --text-primary: #141414;
  --text-secondary: #585858;
  --text-tertiary: #8B8B8B;

  --bg-page: #FBFAF6;
  --bg-surface: #FFFFFF;
  --bg-muted: #F1EFE8;
  --bg-deep: #0A2E2C;

  --border-subtle: rgba(0, 0, 0, 0.07);
  --border-default: rgba(0, 0, 0, 0.14);

  --danger-bg: #FCEBEB;
  --danger-border: #E24B4A;
  --danger-text: #791F1F;

  --warning-bg: #FAEEDA;
  --warning-border: #BA7517;
  --warning-text: #633806;

  --success-bg: #E1F5EE;
  --success-border: #1D9E75;
  --success-text: #04342C;

  --info-bg: #E6F1FB;
  --info-text: #185FA5;

  --coral-bg: #FAECE7;
  --coral-text: #993C1D;
  --pink-bg: #FBEAF0;
  --pink-text: #993556;
  --purple-bg: #EEEDFE;
  --purple-text: #3C3489;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--text-primary);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; padding: 0; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }
p { margin: 0; }

/* Reveal animations */
.js .reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

.js .reveal-stagger > * {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.js .reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.04s; opacity: 1; transform: translateY(0); }
.js .reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.10s; opacity: 1; transform: translateY(0); }
.js .reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.16s; opacity: 1; transform: translateY(0); }
.js .reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.22s; opacity: 1; transform: translateY(0); }
.js .reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.28s; opacity: 1; transform: translateY(0); }
.js .reveal-stagger.is-visible > *:nth-child(n+6) { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal, .js .reveal.is-visible,
  .js .reveal-stagger > *, .js .reveal-stagger.is-visible > * {
    opacity: 1; transform: none; transition: none;
  }
}

/* Container */
.container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-surface);
  min-height: 100vh;
}
@media (min-width: 720px) {
  .container { box-shadow: 0 0 80px rgba(0, 0, 0, 0.04); }
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}

.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text { min-width: 0; }

.logo-title {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.25;
  display: block;
}

.logo-subtitle {
  font-size: 10px;
  color: var(--text-tertiary);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 2px;
  display: block;
  line-height: 1.2;
}

/* Menu */
.menu { position: relative; flex-shrink: 0; }
.menu summary {
  list-style: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  transition: background 0.15s;
}
.menu summary::-webkit-details-marker { display: none; }
.menu summary:hover { background: var(--bg-muted); }
.menu summary svg { width: 22px; height: 22px; }
.menu[open] summary svg.menu-icon { display: none; }
.menu summary svg.close-icon { display: none; }
.menu[open] summary svg.close-icon { display: block; }

.menu-panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
  display: flex;
  flex-direction: column;
  gap: 2px;
  z-index: 20;
}

.menu-panel a {
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  transition: all 0.15s;
}

.menu-panel a:hover {
  background: var(--meridiem-tint);
  color: var(--meridiem-darker);
}

/* Page */
.page { padding: 0 20px; }
@media (min-width: 600px) { .page { padding: 0 40px; } }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 18px 0 0;
  transition: color 0.15s;
}
.back-link:hover { color: var(--meridiem-dark); }
.back-link svg { width: 16px; height: 16px; }

/* Hero */
.hero {
  padding: 32px 0 28px;
  position: relative;
}
@media (min-width: 600px) { .hero { padding: 48px 0 36px; } }

.hero::before {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--meridiem);
  border-radius: 2px;
  margin-bottom: 18px;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--text-tertiary);
  margin: 0 0 14px;
  font-weight: 600;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 34px;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 16px;
  color: var(--text-primary);
}
@media (min-width: 600px) { .hero-title { font-size: 50px; } }

.hero-title em {
  font-style: italic;
  color: var(--meridiem-dark);
  font-weight: 500;
}

.hero-lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
  max-width: 54ch;
}
@media (min-width: 600px) { .hero-lede { font-size: 17px; } }

/* Section labels */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  margin: 36px 0 16px;
}

.section-label::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--meridiem);
  border-radius: 50%;
}

.section-h2 {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin: 36px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-h2::before {
  content: '';
  width: 4px;
  height: 22px;
  background: var(--meridiem);
  border-radius: 2px;
}

@media (min-width: 600px) {
  .section-h2 { font-size: 24px; }
  .section-h2::before { height: 24px; }
}

/* Body prose */
.prose {
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--text-primary);
  margin: 0 0 18px;
}
.prose strong { font-weight: 600; }

.prose-secondary {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0 0 18px;
}

/* Buttons */
.action-row {
  display: flex;
  gap: 8px;
  margin: 20px 0 28px;
}

.btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 12px 16px;
  border: 1px solid var(--border-default);
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-primary);
  transition: all 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover {
  background: var(--meridiem-tint);
  border-color: var(--meridiem);
  color: var(--meridiem-darker);
  transform: translateY(-1px);
}

.btn svg { width: 16px; height: 16px; }

/* Situational cards */
.situations { display: grid; gap: 12px; margin: 16px 0 36px; }

.situation-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-card:hover {
  border-color: var(--meridiem);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(31, 163, 154, 0.12);
}

.situation-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.situation-card:hover .situation-icon { transform: scale(1.05); }
.situation-icon svg { width: 24px; height: 24px; }

.situation-body { flex: 1; min-width: 0; }

.situation-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  letter-spacing: -0.01em;
}

.situation-sub {
  font-size: 13px;
  color: var(--text-secondary);
  margin: 0;
  line-height: 1.45;
}

.situation-chevron {
  color: var(--text-tertiary);
  flex-shrink: 0;
  transition: transform 0.2s, color 0.2s;
}

.situation-chevron svg { width: 18px; height: 18px; }
.situation-card:hover .situation-chevron { color: var(--meridiem); transform: translateX(3px); }

.icon-amber  { background: var(--warning-bg); color: var(--warning-text); }
.icon-coral  { background: var(--coral-bg); color: var(--coral-text); }
.icon-pink   { background: var(--pink-bg); color: var(--pink-text); }
.icon-teal   { background: var(--success-bg); color: var(--success-text); }
.icon-purple { background: var(--purple-bg); color: var(--purple-text); }

/* Jump chips */
.jump { display: grid; gap: 9px; margin: 16px 0 32px; }

.jump-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 16px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.jump-chip:hover { transform: translateX(3px); filter: brightness(0.97); }
.jump-chip svg { width: 22px; height: 22px; flex-shrink: 0; }
.jump-chip .chevron { margin-left: auto; width: 18px; height: 18px; }

.jump-danger  { background: var(--danger-bg);  color: var(--danger-text); }
.jump-warning { background: var(--warning-bg); color: var(--warning-text); }
.jump-success { background: var(--success-bg); color: var(--success-text); }

/* Callouts */
.callout {
  display: flex;
  gap: 12px;
  padding: 18px;
  border-radius: var(--radius-md);
  border: 1px solid;
  margin: 8px 0 32px;
}

.callout-icon { flex-shrink: 0; margin-top: 1px; }
.callout-icon svg { width: 24px; height: 24px; }

.callout-title {
  font-size: 15px;
  font-weight: 600;
  margin: 0 0 4px;
}

.callout-body {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.callout-danger { background: var(--danger-bg); border-color: var(--danger-border); }
.callout-danger .callout-title, .callout-danger .callout-body { color: var(--danger-text); }

.callout-info { background: var(--info-bg); border-color: rgba(24, 95, 165, 0.3); }
.callout-info .callout-title, .callout-info .callout-body { color: var(--info-text); }

.callout-success { background: var(--success-bg); border-color: var(--success-border); }
.callout-success .callout-title, .callout-success .callout-body { color: var(--success-text); }

.callout-zbystrit {
  background: var(--warning-bg);
  border-color: var(--warning-border);
  display: block;
}

.callout-zbystrit-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.callout-zbystrit-head svg { width: 22px; height: 22px; color: var(--warning-text); }
.callout-zbystrit-head .callout-title { color: var(--warning-text); margin: 0; }
.callout-zbystrit .callout-body { color: var(--warning-text); }

.callout-zbystrit ul { margin: 10px 0 14px; display: grid; gap: 6px; }

.callout-zbystrit ul li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
  color: var(--warning-text);
}

.callout-zbystrit ul li::before {
  content: '•';
  position: absolute;
  left: 4px;
  font-weight: 600;
}

.callout-zbystrit-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--bg-surface);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 600;
  color: var(--warning-text);
  transition: all 0.2s;
}

.callout-zbystrit-cta:hover { transform: translateX(3px); }
.callout-zbystrit-cta svg { width: 18px; height: 18px; }

/* Checklist */
.checklist {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  margin-bottom: 16px;
  overflow: hidden;
}

.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border-subtle);
  font-size: 14.5px;
  line-height: 1.55;
}

.checklist li:last-child { border-bottom: none; }

.checklist svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.checklist .ic-check { color: var(--success-border); }
.checklist .ic-eye, .checklist .ic-cal, .checklist .ic-bell,
.checklist .ic-info { color: var(--info-text); }

/* Video card */
.video-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  margin: 6px 0 32px;
  transition: background 0.2s;
}

.video-card:hover { background: var(--meridiem-tint); }

.video-thumb {
  width: 64px;
  height: 44px;
  background: var(--info-bg);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--info-text);
}

.video-thumb svg { width: 22px; height: 22px; }

.video-meta { flex: 1; min-width: 0; }
.video-title { font-size: 14.5px; font-weight: 600; margin: 0 0 2px; }
.video-len { font-size: 12px; color: var(--text-secondary); margin: 0; }

.video-card .chevron { width: 18px; height: 18px; color: var(--text-tertiary); flex-shrink: 0; }

/* Dark block */
.dark-block {
  background:
    radial-gradient(ellipse 600px 300px at 90% -20%, rgba(31, 163, 154, 0.22), transparent 60%),
    radial-gradient(ellipse 500px 400px at -10% 110%, rgba(31, 163, 154, 0.14), transparent 60%),
    linear-gradient(135deg, #0A2E2C 0%, #103D3A 100%);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  margin: 28px 0 36px;
  color: white;
  position: relative;
  overflow: hidden;
}
@media (min-width: 600px) { .dark-block { padding: 36px 32px; } }

.dark-block .eyebrow { color: rgba(255, 255, 255, 0.55); margin-bottom: 10px; }

.dark-block-headline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.02em;
  margin: 0 0 26px;
  color: white;
}

.dark-block-headline em {
  font-style: italic;
  color: #5DCAA5;
  font-weight: 500;
}
@media (min-width: 600px) { .dark-block-headline { font-size: 34px; } }

.bar-row { margin-bottom: 16px; }
.bar-row:last-of-type { margin-bottom: 20px; }

.bar-meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 8px;
}

.bar-label { font-size: 13px; color: rgba(255, 255, 255, 0.72); }

.bar-value {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 22px;
  color: white;
  letter-spacing: -0.02em;
}

.bar-track {
  height: 9px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 5px;
  overflow: hidden;
}

.bar-fill {
  height: 100%;
  border-radius: 5px;
  width: var(--w);
  transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.js .bar-fill { width: 0; }
.js .dark-block.is-visible .bar-fill { width: var(--w); }
.bar-row:last-of-type .bar-fill { transition-delay: 0.2s; }

.bar-good { background: #5DCAA5; }
.bar-poor { background: #F0997B; }

.dark-block-footer {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.6;
  margin: 0;
}

/* Parent banner */
.parent-banner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  margin: 0 0 32px;
  transition: all 0.2s;
}

.parent-banner:hover { background: var(--pink-bg); transform: translateY(-1px); }

.parent-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--pink-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink-text);
}

.parent-icon svg { width: 22px; height: 22px; }
.parent-text { flex: 1; min-width: 0; }
.parent-title { font-size: 15px; font-weight: 600; margin: 0 0 2px; }
.parent-sub { font-size: 13px; color: var(--text-secondary); margin: 0; }
.parent-banner .chevron { width: 18px; height: 18px; color: var(--text-tertiary); flex-shrink: 0; }

/* Library grid */
.lib-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 16px 0 36px; }

.lib-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}

.lib-box:hover { border-color: var(--meridiem); background: var(--meridiem-faint); transform: translateY(-2px); }
.lib-box svg { width: 28px; height: 28px; color: var(--meridiem); margin-bottom: 8px; }
.lib-title { font-size: 14.5px; font-weight: 600; margin: 0 0 2px; }
.lib-count { font-size: 12px; color: var(--text-secondary); margin: 0; }

/* Related */
.related-h { font-size: 16px; font-weight: 600; margin: 28px 0 14px; }
.related-list { display: grid; gap: 8px; margin-bottom: 28px; }

.related-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 16px;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 14px;
  transition: all 0.2s;
}

.related-item:hover { border-color: var(--meridiem); background: var(--meridiem-faint); transform: translateX(3px); }
.related-item .ic { width: 18px; height: 18px; color: var(--text-secondary); flex-shrink: 0; }
.related-item .chevron { width: 16px; height: 16px; color: var(--text-tertiary); margin-left: auto; flex-shrink: 0; }

/* Page disclaimer */
.page-disclaimer {
  font-size: 12px;
  color: var(--text-tertiary);
  text-align: center;
  margin: 28px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--border-subtle);
  line-height: 1.6;
}

/* Footer */
.site-footer {
  margin-top: 40px;
  padding: 28px 20px;
  background: var(--bg-muted);
  border-top: 1px solid var(--border-subtle);
}
@media (min-width: 600px) { .site-footer { padding: 32px 40px; } }

.footer-credits { font-size: 12.5px; color: var(--text-secondary); line-height: 1.6; margin: 0 0 10px; }
.footer-eu { font-size: 11.5px; color: var(--text-tertiary); line-height: 1.55; margin: 0; }

/* Age-cards (red flags by age) */
.age-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 14px;
  transition: all 0.2s;
}

.age-card:hover {
  border-color: var(--meridiem);
  box-shadow: 0 6px 20px rgba(31, 163, 154, 0.08);
}

.age-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.age-badge {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  background: var(--meridiem-tint);
  color: var(--meridiem-darker);
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: -0.005em;
}

.age-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  letter-spacing: -0.01em;
}

.age-list { display: grid; gap: 8px; }
.age-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-primary);
}

.age-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--warning-border);
  border-radius: 50%;
  margin-top: 7px;
  flex-shrink: 0;
}

/* Steps (numbered process) */
.steps { display: grid; gap: 14px; margin: 12px 0 28px; }

.step-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.step-num {
  width: 32px;
  height: 32px;
  background: var(--meridiem);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  flex-shrink: 0;
  font-family: var(--font-display);
}

.step-body { flex: 1; min-width: 0; }
.step-title { font-size: 15px; font-weight: 600; margin: 0 0 4px; letter-spacing: -0.005em; }
.step-text { font-size: 14px; line-height: 1.55; color: var(--text-secondary); margin: 0; }

/* Two-col compare */
.compare {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 12px 0 28px;
}

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

.compare-col {
  padding: 16px;
  border-radius: var(--radius-md);
  border: 1px solid;
}

.compare-good { background: var(--success-bg); border-color: rgba(29, 158, 117, 0.4); }
.compare-bad { background: var(--danger-bg); border-color: rgba(226, 75, 74, 0.4); }

.compare-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 600;
}

.compare-good .compare-head { color: var(--success-text); }
.compare-bad .compare-head { color: var(--danger-text); }

.compare-head svg { width: 20px; height: 20px; }

.compare ul { display: grid; gap: 10px; }
.compare li {
  font-size: 13.5px;
  line-height: 1.5;
  padding-left: 14px;
  position: relative;
}
.compare-good li { color: var(--success-text); }
.compare-bad li { color: var(--danger-text); }
.compare li::before { content: '•'; position: absolute; left: 2px; }

/* Quote sentences */
.quote-list { display: grid; gap: 10px; margin: 0 0 28px; }

.quote-list .quote {
  background: var(--bg-muted);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
  font-style: italic;
  position: relative;
  border-left: 3px solid var(--meridiem);
}

/* Contact / referral cards */
.referral-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  margin-bottom: 12px;
}

.referral-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.referral-badge {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.referral-badge svg { width: 20px; height: 20px; }
.referral-title { font-size: 16px; font-weight: 600; margin: 0; letter-spacing: -0.005em; }
.referral-when { font-size: 12px; color: var(--text-tertiary); margin-top: 2px; }

.referral-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
  margin: 0;
}

/* Material download card */
.download-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  transition: all 0.2s;
}

.download-card:hover { border-color: var(--meridiem); background: var(--meridiem-faint); }

.download-icon {
  width: 44px;
  height: 56px;
  background: var(--meridiem-tint);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--meridiem-dark);
  flex-shrink: 0;
  position: relative;
}

.download-icon::after {
  content: 'PDF';
  position: absolute;
  bottom: 4px;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.download-icon svg { width: 18px; height: 18px; margin-bottom: 8px; }

.download-meta { flex: 1; min-width: 0; }
.download-title { font-size: 15px; font-weight: 600; margin: 0 0 2px; letter-spacing: -0.005em; }
.download-desc { font-size: 13px; color: var(--text-secondary); margin: 0; line-height: 1.45; }

.download-card .chevron { width: 18px; height: 18px; color: var(--text-tertiary); flex-shrink: 0; }

/* Video grid */
.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 24px;
}

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

.video-tile {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.2s;
}

.video-tile:hover {
  border-color: var(--meridiem);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(31, 163, 154, 0.08);
}

.video-tile-thumb {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--meridiem-tint), var(--info-bg));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--meridiem-dark);
}

.video-tile-thumb svg { width: 32px; height: 32px; }

.video-tile-body { padding: 12px 14px 14px; }
.video-tile-title { font-size: 14px; font-weight: 600; margin: 0 0 4px; letter-spacing: -0.005em; }
.video-tile-meta { font-size: 11.5px; color: var(--text-tertiary); margin: 0; text-transform: uppercase; letter-spacing: 0.05em; }

/* Quick fact */
.fact-card {
  background: var(--meridiem-faint);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin: 18px 0 28px;
  border-left: 4px solid var(--meridiem);
}

.fact-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--meridiem-darker);
  margin: 0 0 8px;
  font-weight: 600;
}

.fact-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 19px;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--text-primary);
  margin: 0;
}

.fact-text em { font-style: italic; color: var(--meridiem-dark); font-weight: 500; }

/* Placeholder */
.placeholder { padding: 48px 0; text-align: center; }

.placeholder-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 18px;
  background: var(--meridiem-tint);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--meridiem-dark);
}

.placeholder-icon svg { width: 28px; height: 28px; }
.placeholder-title { font-family: var(--font-display); font-weight: 400; font-size: 28px; margin: 0 0 10px; letter-spacing: -0.02em; }
.placeholder-text { font-size: 14.5px; color: var(--text-secondary); max-width: 38ch; margin: 0 auto 22px; line-height: 1.6; }

.placeholder-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 20px;
  background: var(--meridiem);
  color: white;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.placeholder-back:hover { background: var(--meridiem-dark); transform: translateY(-1px); }
.placeholder-back svg { width: 16px; height: 16px; }

/* Materiály - oprava velikosti ikon PDF */
.pdf-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--meridiem-tint, #E5F4F2);
  color: var(--meridiem-dark, #0F7F77);
  border-radius: 10px;
}
.pdf-thumb svg {
  width: 28px;
  height: 28px;
}
