:root {
  --navy:        #152843;
  --blue:        #1d4ed8;
  --blue-mid:    #3b6fd4;
  --blue-soft:   #eef3fb;
  --blue-line:   #c7d8f5;
  --text:        #1e293b;
  --muted:       #64748b;
  --subtle:      #94a3b8;
  --border:      #dde3ed;
  --border-dark: #b8c4d8;
  --bg:          #f5f7fa;
  --white:       #ffffff;
  --max-w:       1080px;
}

html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; }
body { font-family: "Raleway", sans-serif; font-size: 1.05rem; color: var(--text); background: var(--bg); margin: 0; padding: 0; line-height: 1.72; -webkit-font-smoothing: antialiased; }
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--navy); }
h1, h2, h3, h4 { font-family: "Raleway", sans-serif; line-height: 1.15; margin-top: 0; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 800; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.55rem, 2.8vw, 2rem); }
h3 { font-size: 1.1rem; }
p  { margin-top: 0; }

.site-header { position: sticky; top: 0; background: var(--white); border-bottom: 1px solid var(--border); z-index: 999; transition: box-shadow 0.3s; }
.site-header.scrolled { box-shadow: 0 2px 10px rgba(0,0,0,0.08); }
.nav-container { max-width: var(--max-w); margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 28px; height: 62px; }
.logo a { font-weight: 800; font-size: 0.95rem; color: var(--navy); text-transform: uppercase; letter-spacing: 0.01em; }
.menu { list-style: none; display: flex; gap: 2px; margin: 0; padding: 0; }
.menu a { display: block; color: var(--muted); font-weight: 600; font-size: 0.88rem; padding: 6px 14px; letter-spacing: 0.03em; text-transform: uppercase; transition: all 0.15s; }
.menu a:hover, .menu a.active { color: var(--navy); background: var(--blue-soft); }
.dropdown { position: relative; }
.dropdown:hover .submenu { opacity: 1; visibility: visible; transform: translateY(0); }
.submenu { position: absolute; top: calc(100% + 1px); left: 0; background: var(--white); border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.10); padding: 6px 0; list-style: none; min-width: 250px; opacity: 0; visibility: hidden; transform: translateY(4px); transition: all 0.15s ease; }
.submenu li { padding: 0; }
.submenu a { display: block; color: var(--text); font-size: 0.85rem; font-weight: 500; padding: 10px 20px; text-transform: none; letter-spacing: 0; }
.submenu a:hover, .submenu a.active-sub { color: var(--blue); background: var(--blue-soft); }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; color: var(--navy); }
.mobile-toggle svg { width: 22px; height: 22px; }
.page-content { min-height: 60vh; }

.pv-container { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.pv-section { padding: 64px 0; }
.pv-section--alt { background: var(--white); }
.pv-section__head { margin-bottom: 36px; }
.pv-section__sub { color: var(--muted); margin-top: 10px; max-width: 580px; font-size: 1rem; }
.pv-overline { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue-mid); margin-bottom: 10px; }

/* -----------------------------------------------
   HERO - shodny pro VSECHNY stranky
   Uzsi padding, dekorativni cary zachovany
   ----------------------------------------------- */
.pv-hero {
  background: var(--navy);
  padding: 44px 0 52px;
  position: relative;
  overflow: hidden;
}
.pv-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 420px; height: 420px;
  border: 1px solid rgba(255,255,255,0.05);
  transform: rotate(15deg);
  pointer-events: none;
}
.pv-hero::before {
  content: '';
  position: absolute;
  bottom: 20px; right: 60px;
  width: 260px; height: 260px;
  border: 1px solid rgba(255,255,255,0.04);
  transform: rotate(30deg);
  pointer-events: none;
}
.pv-hero .pv-overline { color: rgba(255,255,255,0.45); }
.pv-hero h1 { color: var(--white); margin: 0 0 24px; max-width: 720px; }
.pv-hero__title    { color: var(--white); margin: 0 0 24px; max-width: 720px; }
.pv-hero__title-em { color: rgba(255,255,255,0.5); font-weight: 300; }
.pv-hero__sub { color: rgba(255,255,255,0.65); font-size: 0.92rem; max-width: 560px; margin: 0; line-height: 1.8; font-weight: 400; }

/* INFO KARTY */
.pv-info-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pv-info-card { display: block; background: var(--white); padding: 36px 32px; color: var(--text); text-decoration: none; transition: background 0.15s; position: relative; }
.pv-info-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background: var(--blue); transition: width 0.25s ease; }
.pv-info-card:hover { background: var(--blue-soft); color: var(--text); }
.pv-info-card:hover::after { width: 100%; }
.pv-info-card__top { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.pv-info-card__icon { width: 36px; height: 36px; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pv-info-card__icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.pv-info-card__tag { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--blue-mid); background: var(--blue-soft); padding: 3px 10px; border: 1px solid var(--blue-line); }
.pv-info-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.pv-info-card p { color: var(--muted); font-size: 0.92rem; margin-bottom: 18px; line-height: 1.65; }
.pv-info-card__meta { display: flex; gap: 8px; font-size: 0.75rem; color: var(--subtle); align-items: center; flex-wrap: wrap; }
.pv-dot { color: var(--border-dark); }

/* TABULKA */
.pv-compare-wrap { overflow-x: auto; }
.pv-compare { width: 100%; border-collapse: collapse; font-size: 0.93rem; border: 1px solid var(--border); }
.pv-compare thead th { padding: 20px 24px 22px; text-align: left; border-bottom: 2px solid var(--border); background: var(--bg); vertical-align: bottom; }
.pv-compare__abbr { display: block; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: 4px; letter-spacing: -0.03em; }
.pv-compare__name { display: block; font-size: 0.75rem; color: var(--muted); font-weight: 500; text-transform: uppercase; letter-spacing: 0.04em; }
.pv-compare tbody tr { border-bottom: 1px solid var(--border); }
.pv-compare tbody tr:last-child { border-bottom: none; }
.pv-compare tbody tr:hover td { background: #f8faff; }
.pv-compare td { padding: 14px 24px; vertical-align: middle; font-size: 0.9rem; }
.pv-compare__label { color: var(--muted); font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.05em; width: 210px; background: var(--bg); }
.pv-badge { display: inline-block; font-size: 0.75rem; font-weight: 600; padding: 3px 10px; letter-spacing: 0.02em; }
.pv-badge--green { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.pv-badge--gray  { background: #f3f4f6; color: #6b7280; border: 1px solid #d1d5db; }
.pv-table-note { margin-top: 16px; font-size: 0.83rem; color: var(--muted); font-style: italic; }

/* FAKTA */
.pv-facts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pv-fact { background: var(--white); padding: 36px 32px; }
.pv-fact__head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); min-height: 80px; }
.pv-fact__icon { width: 36px; height: 36px; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pv-fact__icon svg { width: 18px; height: 18px; stroke-width: 1.8; }
.pv-fact__head h3 { margin: 0; font-size: 1rem; }
.pv-fact__text { color: var(--muted); font-size: 0.9rem; margin-bottom: 18px; line-height: 1.65; }
.pv-mini-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.pv-mini-table th { text-align: left; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.07em; color: var(--subtle); padding: 0 0 10px; border-bottom: 1px solid var(--border); }
.pv-mini-table th:last-child { text-align: right; }
.pv-mini-table td { padding: 9px 0; border-bottom: 1px solid var(--border); color: var(--muted); }
.pv-mini-table td:last-child { text-align: right; }
.pv-mini-table tr:last-child td { border-bottom: none; }
.pv-mini-table tr.highlight td { color: var(--navy); font-weight: 600; }
.pv-fact__calc { display: flex; flex-direction: column; }
.pv-fact__row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.88rem; gap: 16px; }
.pv-fact__row:last-child { border-bottom: none; }
.pv-fact__row span { color: var(--muted); }
.pv-fact__row strong { color: var(--navy); white-space: nowrap; }
.pv-fact__row--total { background: var(--navy); margin: 8px -32px -36px; padding: 14px 32px; border-bottom: none; }
.pv-fact__row--total span { color: rgba(255,255,255,0.7); font-weight: 500; }
.pv-fact__row--total strong { color: var(--white); font-size: 1rem; }

/* EXTERNAL LINKS */
.pv-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.pv-ext-link { display: flex; justify-content: space-between; align-items: center; background: var(--white); padding: 20px 24px; color: var(--text); font-size: 0.92rem; font-weight: 500; transition: background 0.15s; gap: 12px; }
.pv-ext-link:hover { background: var(--blue-soft); color: var(--navy); }
.pv-ext-link svg { width: 16px; height: 16px; color: var(--subtle); flex-shrink: 0; }
.pv-ext-link:hover svg { color: var(--blue); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.7); font-size: 0.9rem; }
footer h3, footer h4 { color: var(--white); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 16px; font-weight: 700; }
footer a { color: rgba(255,255,255,0.55); }
footer a:hover { color: var(--white); }
.pv-footer-copy { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 28px; display: flex; justify-content: space-between; font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.pv-footer-copy a { color: rgba(255,255,255,0.35); }
.pv-footer-copy a:hover { color: rgba(255,255,255,0.7); }

/* KALKULACKY */
.pv-calc-layout { display: grid; grid-template-columns: 380px 1fr; gap: 40px; align-items: start; }
.pv-field-group { border: 1px solid var(--border); background: var(--white); padding: 24px 24px 16px; margin-bottom: 16px; }
.pv-field-group__title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-mid); margin: 0 0 20px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.pv-field { margin-bottom: 16px; }
.pv-field label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.pv-field__hint { display: block; font-size: 0.75rem; color: var(--subtle); margin-bottom: 6px; line-height: 1.4; opacity: 0; max-height: 0; overflow: hidden; transition: opacity 0.2s, max-height 0.2s; }
.pv-field:hover .pv-field__hint { opacity: 1; max-height: 3rem; }
.pv-input { width: 100%; padding: 9px 12px; border: 1px solid var(--border); background: var(--bg); font-family: "Raleway", sans-serif; font-size: 0.95rem; color: var(--text); outline: none; transition: border-color 0.15s; border-radius: 0; -webkit-appearance: none; }
.pv-input:focus { border-color: var(--blue); background: var(--white); }
.pv-calc-btn { width: 100%; padding: 13px; background: var(--navy); color: var(--white); font-family: "Raleway", sans-serif; font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; border: none; cursor: pointer; transition: background 0.15s; margin-bottom: 20px; }
.pv-calc-btn:hover { background: var(--blue); }
.pv-calc-btn:disabled { opacity: 0.6; cursor: wait; }
.pv-results { border: 1px solid var(--border); background: var(--white); padding: 24px; }
.pv-results__title { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue-mid); margin: 0 0 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.pv-result-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 0.9rem; gap: 12px; }
.pv-result-row:last-child { border-bottom: none; }
.pv-result-row span { color: var(--muted); }
.pv-result-row strong { color: var(--navy); font-size: 1rem; white-space: nowrap; }
.pv-result-row--total { background: var(--navy); margin: 0 -24px; padding: 12px 24px; border: none; }
.pv-result-row--total span { color: rgba(255,255,255,0.7); font-weight: 500; }
.pv-result-row--total strong { color: var(--white); font-size: 1.05rem; }
.pv-result-bonus { margin-top: 16px; font-size: 0.88rem; color: var(--muted); line-height: 1.65; padding: 12px; background: var(--blue-soft); border-left: 3px solid var(--blue); }
.pv-calc-chart { position: sticky; top: 80px; background: var(--white); border: 1px solid var(--border); padding: 24px; }
.pv-calc-chart--tall canvas { min-height: 400px; }
.calc3-autocomplete { position: relative; }
.calc3-dropdown { position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.10); list-style: none; padding: 4px 0; margin: 0; max-height: 220px; overflow-y: auto; z-index: 50; display: none; }
.calc3-dropdown li { padding: 9px 16px; font-size: 0.88rem; cursor: pointer; color: var(--text); }
.calc3-dropdown li:hover { background: var(--blue-soft); color: var(--blue); }

/* KALKULACKA1 - layout: 2col parametry / vysledky+graf */
.pv-calc-layout1 { display: flex; flex-direction: column; gap: 16px; }
.pv-field-groups--2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.pv-calc-bottom { display: grid; grid-template-columns: 320px 1fr; gap: 24px; align-items: start; }
.pv-calc-bottom .pv-calc-chart { position: sticky; top: 80px; }
@media (max-width: 900px) {
  .pv-field-groups--2col { grid-template-columns: 1fr; }
  .pv-calc-bottom { grid-template-columns: 1fr; }
  .pv-calc-bottom .pv-calc-chart { position: static; }
}

/* GRAPH PAGE */
.pv-graph-layout { display: grid; grid-template-columns: 290px 1fr; gap: 28px; align-items: start; }
.pv-fund-selector { border: 1px solid var(--border); background: var(--white); position: sticky; top: 80px; overflow: hidden; }
.pv-fund-selector__title { padding: 12px 16px 10px; background: var(--navy); color: var(--white); font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.pv-fund-selector__section { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.pv-fund-selector__section--all { display: flex; align-items: center; justify-content: space-between; padding: 10px 16px; background: var(--bg); }
.pv-fund-selector__count { font-size: 0.78rem; font-weight: 700; color: var(--blue); }
.pv-selector-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--subtle); margin: 0 0 8px; }
.pv-fund-selector__body { max-height: 52vh; overflow-y: auto; padding: 12px 16px; }
.pv-fund-selector__footer { padding: 12px 16px; border-top: 2px solid var(--border); background: var(--bg); }
.pv-fund-selector__footer .pv-calc-btn { margin: 0; }
.pv-fund-group { margin-bottom: 16px; }
.pv-fund-group:last-child { margin-bottom: 0; }
.pv-fund-group__head { display: flex; align-items: center; gap: 8px; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em; color: var(--blue-mid); margin-bottom: 4px; cursor: pointer; padding: 4px 0; border-bottom: 1px solid var(--blue-line); }
.pv-fund-group__items { padding-left: 2px; margin-top: 4px; }
.pv-fund-check { display: flex; align-items: center; gap: 8px; font-size: 0.84rem; color: var(--muted); cursor: pointer; padding: 3px 4px; transition: background 0.1s, color 0.1s; }
.pv-fund-check:hover { color: var(--navy); background: var(--blue-soft); }
.pv-fund-check--all { font-size: 0.88rem; color: var(--text); }
.pv-fund-check input, .pv-fund-group__head input { accent-color: var(--blue); width: 14px; height: 14px; flex-shrink: 0; cursor: pointer; }
.pv-return--pos { color: #065f46; font-weight: 600; }
.pv-return--neg { color: #991b1b; font-weight: 600; }
.pv-subtle { color: var(--subtle); }
.pv-graph-placeholder { display: flex; align-items: center; justify-content: center; min-height: 500px; border: 2px dashed var(--border); color: var(--subtle); font-size: 0.95rem; text-align: center; padding: 24px; }
#graphContainer { position: relative; }
.pv-fullscreen-btn { position: absolute; top: 10px; right: 10px; z-index: 10; background: var(--white); border: 1px solid var(--border); color: var(--muted); padding: 6px 8px; cursor: pointer; line-height: 1; transition: color 0.15s, border-color 0.15s; }
.pv-fullscreen-btn:hover { color: var(--navy); border-color: var(--blue-mid); }
#graphContainer:fullscreen { background: var(--white); padding: 20px; width: 100vw; height: 100vh; box-sizing: border-box; }
@media (max-width: 900px) {
  .pv-graph-layout { grid-template-columns: 1fr; }
  .pv-fund-selector { position: static; }
  .pv-fund-selector__body { max-height: 40vh; }
}

/* FOOTER GRID */
.pv-footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 56px; }

/* COOKIE BANNER */
#pv-cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--navy); color: rgba(255,255,255,0.9); padding: 16px 24px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: 0.88rem; box-shadow: 0 -2px 12px rgba(0,0,0,0.15); }
#pv-cookie-banner p { margin: 0; flex: 1; }
.pv-cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.pv-cookie-btns .pv-calc-btn { margin: 0; padding: 8px 20px; font-size: 0.85rem; }
.pv-cookie-btn--decline { background: transparent; border: 1px solid rgba(255,255,255,0.35); color: rgba(255,255,255,0.7); padding: 8px 20px; cursor: pointer; font-size: 0.85rem; font-family: inherit; transition: all 0.15s; }
.pv-cookie-btn--decline:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
@media (max-width: 600px) {
  #pv-cookie-banner { flex-direction: column; align-items: flex-start; }
}

/* MOBILNI */
@media (max-width: 900px) {
  .pv-facts-grid { grid-template-columns: 1fr; }
  .pv-calc-layout { grid-template-columns: 1fr; }
  .pv-calc-chart { position: static; }
}
@media (max-width: 768px) {
  .pv-info-grid { grid-template-columns: 1fr; }
  .pv-links-grid { grid-template-columns: 1fr; }
  .pv-hero { padding: 32px 0 40px; }
  .pv-section { padding: 48px 0; }
  .menu { position: absolute; top: 64px; left: 0; right: 0; background: var(--white); flex-direction: column; padding: 8px; border-bottom: 1px solid var(--border); box-shadow: 0 4px 24px rgba(0,0,0,0.10); display: none; z-index: 100; gap: 0; }
  .menu.active { display: flex; }
  .mobile-toggle { display: block; }
  .submenu { position: relative; top: 0; box-shadow: none; display: none; transform: none; border: none; border-top: 1px solid var(--border); padding-left: 16px; }
  .submenu.open { display: block; }
  .pv-footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 480px) {
  .pv-container { padding: 0 16px; }
  h1 { font-size: 1.5rem; }
  .pv-section__head { margin-bottom: 24px; }
}

/* PRŮVODCE */
.pv-guide-layout { display: grid; grid-template-columns: 230px 1fr; gap: 48px; align-items: start; }
.pv-toc { position: sticky; top: 82px; border: 1px solid var(--border); background: var(--white); }
.pv-toc__title { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--blue-mid); padding: 14px 20px; border-bottom: 1px solid var(--border); }
.pv-toc__list { list-style: none; padding: 6px 0; margin: 0; }
.pv-toc__link { display: block; padding: 8px 20px; font-size: 0.83rem; color: var(--muted); font-weight: 500; transition: all 0.15s; border-left: 2px solid transparent; }
.pv-toc__link:hover { color: var(--navy); background: var(--blue-soft); }
.pv-toc__link.active { color: var(--blue); border-left-color: var(--blue); background: var(--blue-soft); font-weight: 600; }
.pv-guide-content { min-width: 0; }
.pv-guide-section { padding-top: 48px; }
.pv-guide-section:first-child { padding-top: 0; }
.pv-guide-section + .pv-guide-section { border-top: 1px solid var(--border); }
.pv-section-anchor { display: block; scroll-margin-top: 84px; }
.pv-guide-content h3 { margin-top: 28px; margin-bottom: 10px; }
.pv-guide-content h3:first-of-type { margin-top: 20px; }
.pv-guide-content p { color: var(--muted); line-height: 1.8; }
.pv-guide-content strong { color: var(--text); }
.pv-guide-content ul, .pv-guide-content ol { color: var(--muted); padding-left: 1.4em; line-height: 1.85; font-size: 0.95rem; margin-bottom: 16px; }
.pv-guide-content li { margin-bottom: 4px; }
.pv-tip { background: var(--blue-soft); border-left: 3px solid var(--blue); padding: 14px 18px; margin: 20px 0; font-size: 0.92rem; }
.pv-tip__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--blue); margin-bottom: 6px; }
.pv-tip p { margin: 0; color: var(--text); line-height: 1.65; }
.pv-warning { background: #fffbeb; border-left: 3px solid #f59e0b; padding: 14px 18px; margin: 20px 0; font-size: 0.92rem; }
.pv-warning__label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: #b45309; margin-bottom: 6px; }
.pv-warning p { margin: 0; color: var(--text); line-height: 1.65; }
.pv-steps { list-style: none; padding: 0; margin: 24px 0; border: 1px solid var(--border); }
.pv-step { display: flex; gap: 20px; padding: 20px 24px; background: var(--white); border-bottom: 1px solid var(--border); }
.pv-step:last-child { border-bottom: none; }
.pv-step__num { width: 32px; height: 32px; min-width: 32px; background: var(--navy); color: var(--white); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.9rem; }
.pv-step__num--warn { background: #b45309; }
.pv-step__body h4 { margin: 2px 0 6px; font-size: 0.95rem; }
.pv-step__body p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.7; }
.pv-facts-grid--2col { grid-template-columns: repeat(2, 1fr); }
@media (max-width: 900px) {
  .pv-guide-layout { grid-template-columns: 1fr; gap: 28px; }
  .pv-toc { position: static; }
  .pv-facts-grid--2col { grid-template-columns: 1fr; }
}


/* ── Kontaktní formulář ─────────────────────────────────── */
.pv-contact-wrap { max-width: 620px; margin: 0 auto; }
.pv-contact-form__row { margin-bottom: 1.2rem; }
.pv-contact-form__row label { display: block; font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; letter-spacing: 0.02em; }
.pv-required { color: #e03b3b; }
.pv-contact-form__row input,
.pv-contact-form__row textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--border-dark); background: var(--white); font-family: "Raleway", sans-serif; font-size: 0.95rem; color: var(--text); transition: border-color 0.15s, box-shadow 0.15s; }
.pv-contact-form__row input:focus,
.pv-contact-form__row textarea:focus { outline: none; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(29,78,216,0.10); }
.pv-contact-form__row textarea { resize: vertical; min-height: 140px; }
.pv-contact-form__footer { display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; margin-top: 1.4rem; }
.pv-contact-form__note { flex: 1 1 260px; font-size: 0.83rem; color: var(--muted); line-height: 1.6; margin: 0; }
.pv-contact-form__footer .pv-calc-btn { flex: 0 0 auto; width: auto; padding: 13px 32px; margin: 0; }
.pv-contact-success { text-align: center; padding: 48px 24px; background: var(--white); border: 1px solid var(--border); }
.pv-contact-success__icon { display: block; margin-bottom: 16px; color: #16a34a; }
.pv-contact-success__icon svg { width: 48px; height: 48px; stroke: currentColor; }
.pv-contact-success h2 { margin-bottom: 8px; }
.pv-contact-success p { color: var(--muted); }

/* ── Filtr – chipy společností ──────────────────────────── */
.pv-company-chips { display: flex; flex-wrap: wrap; gap: 5px; }
.pv-company-chip { padding: 3px 9px; border: 1px solid var(--border-dark); background: var(--white); font-family: "Raleway", sans-serif; font-size: 0.75rem; font-weight: 600; color: var(--muted); cursor: pointer; transition: all 0.15s; white-space: nowrap; line-height: 1.6; }
.pv-company-chip:hover { border-color: var(--blue); color: var(--blue); }
.pv-company-chip--active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.pv-company-chip--all.pv-company-chip--active { background: var(--navy); border-color: var(--navy); }

/* ── Monte Carlo ────────────────────────────────────────── */
.mc-stats-preview { margin-top: 12px; display: flex; flex-direction: column; gap: 6px; }
.mc-stats-row { font-size: 0.85rem; color: var(--text); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mc-stats-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }

/* Percentilová tabulka */
.mc-pct-table td, .mc-pct-table th { text-align: right; }
.mc-pct-table td:first-child, .mc-pct-table th:first-child { text-align: left; }
.mc-row--bad        td { background: #fee2e2; }
.mc-row--bad-light  td { background: #fef3c7; }
.mc-row--neutral    td { background: #f1f5f9; }
.mc-row--median     td { background: #dbeafe; }
.mc-row--good-light td { background: #dcfce7; }
.mc-row--good       td { background: #bbf7d0; }

.pv-slider { width: 100%; accent-color: var(--blue); height: 4px; cursor: pointer; }
