/* Kérka? Pryč! - sdílený styl podstránek */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

:root {
  --violet:  #C193E8;
  --ink:     #34203D;
  --ink-mid: #57406B;
  --white:   #ffffff;
  --btn:     #6B507A;
  --line:    rgba(52,32,61,0.35);
  --nav-h:   56px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Work Sans', Arial, sans-serif; background: var(--violet); color: var(--ink); line-height: 1.65; font-size: 16px; overflow-x: hidden; }
a { color: inherit; }
a, button { -webkit-tap-highlight-color: rgba(52,32,61,0.15); }
p, li, td, th, h1, h2, h3, h4 { overflow-wrap: break-word; }
img { max-width: 100%; height: auto; }
.punct-white { color: var(--white); }

/* ---------- NAV ---------- */
nav {
  position: fixed; top: 0; left: 0; right: 0; height: var(--nav-h);
  background: var(--violet); display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px; z-index: 9999; border-bottom: 1px solid rgba(255,255,255,0.6);
}
.nav-logo { font-size: 16px; font-weight: 800; color: var(--ink); text-decoration: none; white-space: nowrap; }
.nav-center { list-style: none; display: flex; gap: 22px; align-items: center; }
.nav-center a { font-size: 13px; font-weight: 600; text-decoration: none; color: var(--ink); transition: opacity .2s; }
.nav-center a:hover { opacity: .55; }
.nav-right a { display: flex; color: var(--ink); }
.nav-right svg { width: 19px; height: 19px; }
.hamburger { display: none; background: none; border: 0; width: 34px; height: 30px; flex-direction: column; justify-content: center; gap: 5px; cursor: pointer; }
.hamburger span { display: block; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s, opacity .2s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--violet); border-bottom: 1px solid rgba(255,255,255,0.6); display: none; flex-direction: column; padding: 10px 18px 18px; z-index: 9998; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-size: 15px; font-weight: 700; text-decoration: none; color: var(--ink); border-bottom: 1px solid rgba(255,255,255,0.45); }

/* ---------- STICKY CTA ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; display: none; gap: 10px; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: rgba(193,147,232,0.96); border-top: 1px solid rgba(255,255,255,0.6); z-index: 9997; }
.sticky-cta.show { display: flex; }
.cta-phone { display: flex; align-items: center; justify-content: center; width: 50px; border-radius: 999px; background: var(--white); color: var(--ink); text-decoration: none; }
.cta-phone svg { width: 20px; height: 20px; }
.cta-book { flex: 1; text-align: center; background: var(--btn); color: var(--white); text-decoration: none; font-weight: 800; font-size: 15px; padding: 14px; border-radius: 999px; }

/* ---------- HLAVIČKA STRÁNKY ---------- */
.breadcrumb { max-width: 900px; margin: 0 auto; padding: calc(var(--nav-h) + 24px) 48px 0; font-size: 12.5px; font-weight: 600; color: var(--ink-mid); }
.breadcrumb a { color: var(--ink-mid); text-decoration: underline; text-underline-offset: 2px; }
.breadcrumb span { opacity: .75; }
header.page-head { padding: 18px 48px 26px; max-width: 900px; margin: 0 auto; }
header.page-head h1 { font-size: clamp(28px, 5.4vw, 52px); font-weight: 900; color: #000; letter-spacing: -0.02em; line-height: 1.08; }
header.page-head .lead { color: var(--ink-mid); font-weight: 700; margin-top: 14px; max-width: 660px; font-size: 15.5px; }

.wrap { max-width: 900px; margin: 0 auto; padding: 0 48px 60px; }

/* ---------- RYCHLÁ FAKTA ---------- */
.facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.55); border-radius: 18px; overflow: hidden; margin-bottom: 30px; }
.fact { background: rgba(255,255,255,0.28); padding: 16px 18px; }
.fact .k { font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink-mid); }
.fact .v { font-size: 18px; font-weight: 900; color: var(--ink); margin-top: 4px; line-height: 1.25; }
.fact .n { font-size: 12.5px; font-weight: 600; color: var(--ink-mid); margin-top: 3px; }

/* ---------- SEKCE ---------- */
.section { padding: 26px 0; border-top: 1px solid rgba(255,255,255,0.6); }
.section h2 { font-size: clamp(19px, 2.4vw, 26px); font-weight: 900; color: var(--white); letter-spacing: -0.01em; padding-bottom: 10px; border-bottom: 2px solid var(--white); margin-bottom: 16px; }
.section h3 { font-size: 16.5px; font-weight: 800; color: var(--ink); margin: 18px 0 8px; }
.section p { margin-bottom: 10px; font-size: 15px; font-weight: 500; line-height: 1.85; }
.section p:last-child { margin-bottom: 0; }
.section ul, .section ol { margin: 10px 0 10px 20px; font-size: 15px; font-weight: 500; line-height: 1.85; }
.section li { margin-bottom: 7px; }
.section strong { font-weight: 800; }
.section a { color: var(--ink-mid); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }

/* ---------- KROKY ---------- */
ol.steps { list-style: none; margin: 14px 0 0; padding: 0; counter-reset: krok; }
ol.steps li { display: flex; gap: 14px; margin-bottom: 16px; }
ol.steps li::before { counter-increment: krok; content: counter(krok); flex: 0 0 30px; height: 30px; border-radius: 999px; background: var(--btn); color: var(--white); font-weight: 900; font-size: 14px; display: flex; align-items: center; justify-content: center; margin-top: 2px; }
ol.steps h3 { margin: 0 0 4px; font-size: 15.5px; }
ol.steps p { margin: 0; }

/* ---------- CENÍK ---------- */
.cat { font-size: 11px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-mid); margin: 22px 0 6px; }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-weight: 600; font-size: 15px; }
.price-row .price-amt { font-weight: 900; white-space: nowrap; }
.price-row .price-sub { display: block; font-size: 12.5px; font-weight: 500; color: var(--ink-mid); margin-top: 2px; }

table { width: 100%; border-collapse: collapse; margin-top: 12px; font-size: 14px; }
th { text-align: left; font-weight: 800; color: var(--ink); border-bottom: 2px solid var(--line); padding: 10px 8px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11.5px; }
td { padding: 12px 8px; border-bottom: 1px solid var(--line); vertical-align: top; font-weight: 500; }

/* ---------- Q&A ---------- */
.qa-item { border-bottom: 1px solid var(--line); }
.qa-btn { width: 100%; background: none; border: 0; text-align: left; font-family: inherit; font-size: 15px; font-weight: 700; color: var(--ink); padding: 16px 0; display: flex; justify-content: space-between; gap: 14px; cursor: pointer; }
.qa-sign { font-weight: 900; color: var(--white); flex: 0 0 auto; }
.qa-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.qa-answer.open { max-height: 900px; }
.qa-answer p { font-size: 14.5px; font-weight: 500; padding-bottom: 16px; margin: 0; }

/* ---------- ZVÝRAZNĚNÍ / CTA ---------- */
.highlight { background: rgba(255,255,255,0.30); border-left: 4px solid var(--btn); border-radius: 0 18px 18px 0; padding: 24px 28px; margin-top: 26px; }
.highlight h2 { font-size: 18px; font-weight: 900; color: var(--ink); margin-bottom: 10px; border: none; padding: 0; }
.highlight p { font-size: 15px; font-weight: 500; }
.highlight a { color: var(--ink-mid); }

.cta-block { background: rgba(255,255,255,0.30); border-radius: 22px; padding: 26px 28px; margin-top: 28px; }
.cta-block h2 { font-size: 19px; font-weight: 900; color: var(--ink); border: none; padding: 0; margin-bottom: 8px; }
.cta-block p { font-size: 15px; font-weight: 500; margin-bottom: 16px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 10px; }
.btn { background: var(--btn); color: var(--white); text-decoration: none; font-weight: 800; font-size: 15px; padding: 14px 26px; border-radius: 999px; display: inline-block; }
.btn-ghost { border: 2px solid var(--btn); color: var(--ink); text-decoration: none; font-weight: 800; font-size: 15px; padding: 12px 24px; border-radius: 999px; display: inline-block; }

/* ---------- SOUVISEJÍCÍ ---------- */
.related { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 12px; margin-top: 16px; }
.related a { background: rgba(255,255,255,0.28); border-radius: 16px; padding: 16px 18px; text-decoration: none; color: var(--ink); font-weight: 800; font-size: 14.5px; display: block; transition: background .2s; }
.related a:hover { background: rgba(255,255,255,0.45); }
.related a span { display: block; font-weight: 500; font-size: 13px; color: var(--ink-mid); margin-top: 4px; }

/* ---------- FOOTER ---------- */
footer { border-top: 1px solid rgba(52,32,61,0.15); padding: 32px 48px 40px; max-width: 900px; margin: 0 auto; font-size: 13px; font-weight: 600; color: var(--ink-mid); }
.footer-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; margin-bottom: 24px; }
.footer-col-title { font-size: 11px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; color: var(--ink); margin-bottom: 8px; }
.footer-col-body a { display: block; color: var(--ink-mid); font-weight: 600; text-decoration: none; padding: 3px 0; }
.footer-col-body a:hover { text-decoration: underline; }
.footer-legal { border-top: 1px solid rgba(52,32,61,0.15); padding-top: 16px; font-size: 12.5px; }
.footer-legal a { color: var(--ink-mid); text-decoration: underline; text-underline-offset: 2px; }

@media (max-width: 700px) { .facts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 400px) { .facts { grid-template-columns: 1fr; } }

@media (max-width: 900px) {
  .nav-center { display: none; }
  .nav-right { display: none; }
  .hamburger { display: flex; }
  nav { padding: 0 18px; }
  .breadcrumb { padding: calc(var(--nav-h) + 18px) 18px 0; }
  header.page-head { padding: 14px 18px 22px; }
  .wrap { padding: 0 18px 90px; }
  .highlight, .cta-block { padding: 20px 18px; }
  footer { padding: 28px 18px 90px; }
}
