/* =========================================================================
   Bobus Marketing - globální styly (dle brand-guide v1.1)
   Font: Exo 2 | Barvy: Teal #257881 / Coral #de5237
   ========================================================================= */

:root {
  /* Systémové barvy */
  --teal: #257881;
  --coral: #de5237;
  --ink: #1a2530;
  --muted: #7a8896;
  /* Vlastní barvy */
  --teal-dark: #1a5a61;
  --teal-light: #e8f2f3;
  --coral-dark: #b8402a;
  --coral-light: #fceeeb;
  --body: #3a4a58;
  --linka: #e6ebf0;
  --soft: #f7f9fb;
  --white: #ffffff;
  /* Layout */
  --wrap: 1140px;
  --radius-card: 16px;
  --radius-btn: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Exo 2', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 { color: var(--ink); font-weight: 800; letter-spacing: -0.4px; line-height: 1.18; }
h1 { font-size: 44px; line-height: 1.12; letter-spacing: -0.8px; }
h2 { font-size: 33px; line-height: 1.18; letter-spacing: -0.6px; }
h3 { font-size: 23px; font-weight: 700; line-height: 1.3; letter-spacing: -0.3px; }
h4 { font-size: 19px; font-weight: 700; line-height: 1.35; letter-spacing: -0.2px; }
p  { color: var(--body); }

a { color: var(--teal); text-decoration: none; transition: color .2s; }
a:hover { color: var(--teal-dark); text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* Sekce */
.section { padding: 72px 0; }
.section--soft { background: var(--soft); }
.section--teal { background: linear-gradient(135deg, #257881 0%, #1a5a61 100%); color: #fff; }
.section--teal h2, .section--teal h3, .section--teal p { color: #fff; }
.section-head { max-width: 700px; margin: 0 auto 48px; text-align: center; }
.section-head .lede { color: var(--muted); max-width: 620px; margin: 16px auto 0; }
.section--teal .lede { color: rgba(255,255,255,.85); }

/* Kicker chip */
.bm-kicker, .bm-kicker-coral {
  display: inline-block; font-size: 13px; font-weight: 600; letter-spacing: 1.5px;
  text-transform: uppercase; padding: 6px 14px; border-radius: 20px; margin-bottom: 16px;
}
.bm-kicker { color: var(--teal); background: var(--teal-light); }
.bm-kicker-coral { color: var(--coral); background: var(--coral-light); }
.section--teal .bm-kicker { background: rgba(255,255,255,.15); color: #fff; }

/* Barevné akcenty v nadpisech */
.c-teal { color: var(--teal); }
.c-coral { color: var(--coral); }
.section--teal .c-teal, .section--teal .c-coral { color: #fff; }

/* Tlačítka */
.btn {
  display: inline-block; font-weight: 700; font-size: 17px; line-height: 1.2;
  color: #fff; background: var(--coral); border: none; cursor: pointer;
  padding: 16px 34px; border-radius: var(--radius-btn);
  box-shadow: 0 2px 8px rgba(222,82,55,.25); transition: background .2s, transform .2s;
}
.btn:hover { background: var(--coral-dark); color: #fff; text-decoration: none; transform: translateY(-1px); }
.btn--teal { background: var(--teal); box-shadow: 0 2px 8px rgba(37,120,129,.25); }
.btn--teal:hover { background: var(--teal-dark); }
.btn--ghost { background: #fff; color: var(--teal); box-shadow: none; border: 1px solid var(--linka); }
.btn--ghost:hover { background: var(--soft); color: var(--teal-dark); }

/* Karta */
.card {
  background: #fff; border: 1px solid var(--linka); border-radius: var(--radius-card);
  padding: 32px; transition: transform .3s, box-shadow .3s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(26,37,48,.08); }

/* Badge */
.bm-badge-bad { background: var(--coral-light); color: var(--coral-dark); padding: 4px 14px; border-radius: 20px; display: inline-block; font-weight: 700; font-size: 14px; }
.bm-badge-good { background: var(--teal-light); color: var(--teal-dark); padding: 4px 14px; border-radius: 20px; display: inline-block; font-weight: 700; font-size: 14px; }

/* ===================== HEADER (kompaktní, 1 řada) ===================== */
.site-header { position: sticky; top: 0; z-index: 999; background: rgba(255,255,255,.86); backdrop-filter: saturate(1.4) blur(12px); -webkit-backdrop-filter: saturate(1.4) blur(12px); border-bottom: 1px solid var(--linka); }
.site-header .wrap { display: flex; align-items: center; gap: 20px; height: 66px; position: relative; }
.hdr-logo img { width: 122px; display: block; }
.hdr-nav { display: flex; gap: 2px; list-style: none; }
.hdr-nav a { color: var(--ink); font-weight: 600; font-size: 15px; padding: 8px 14px; border-radius: 8px; transition: background .15s, color .15s; }
.hdr-nav a:hover { color: var(--teal); background: var(--teal-light); text-decoration: none; }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }
.hdr-phone { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--ink); white-space: nowrap; }
.hdr-phone:hover { color: var(--teal); text-decoration: none; }
.hdr-phone svg { width: 16px; height: 16px; color: var(--teal); }
.hdr-social { display: flex; gap: 7px; list-style: none; }
.hdr-social a { width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .15s; }
.hdr-social a:hover { transform: translateY(-2px); text-decoration: none; }
.hdr-social svg { width: 15px; height: 15px; }
.soc-fb { background: #1877f2; }
.soc-ig { background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%); }
.soc-in { background: #0a66c2; }
.hdr-divider { width: 1px; height: 26px; background: var(--linka); }
.btn--sm { padding: 10px 20px; font-size: 15px; }

/* --- Hamburger + mobilní menu --- */
.hdr-burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 44px; height: 44px; border-radius: 10px; cursor: pointer; margin-left: 6px; transition: background .15s; }
.hdr-burger:hover { background: var(--teal-light); }
.hdr-burger span { display: block; width: 22px; height: 2px; margin: 0 auto; background: var(--ink); border-radius: 2px; transition: transform .22s ease, opacity .18s ease; }
.nav-toggle:checked ~ .hdr-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle:checked ~ .hdr-burger span:nth-child(2) { opacity: 0; }
.nav-toggle:checked ~ .hdr-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hdr-mobile { display: none; position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid var(--linka); box-shadow: 0 16px 30px rgba(26,37,48,.10); padding: 10px 20px 18px; flex-direction: column; }
.nav-toggle:checked ~ .hdr-mobile { display: flex; }
.hdr-mobile > a { color: var(--ink); font-weight: 600; font-size: 17px; padding: 14px 4px; border-bottom: 1px solid var(--linka); }
.hdr-mobile > a:hover { color: var(--teal); text-decoration: none; }
.hdr-mobile .hdr-mobile-cta { margin-top: 14px; background: var(--teal); color: #fff; text-align: center; border: none; border-radius: 10px; padding: 13px 20px; font-weight: 700; }
.hdr-mobile .hdr-mobile-cta:hover { color: #fff; filter: brightness(1.06); }
.hdr-mobile-phone { display: flex; align-items: center; gap: 8px; color: var(--teal) !important; font-weight: 700; }
.hdr-mobile-phone svg { width: 17px; height: 17px; }
.hdr-mobile-social { display: flex; gap: 10px; padding-top: 16px; }
.hdr-mobile-social a { width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center; color: #fff; }
.hdr-mobile-social a:hover { text-decoration: none; transform: translateY(-2px); }
.hdr-mobile-social svg { width: 19px; height: 19px; }

/* ===================== HERO ===================== */
.hero { padding: 64px 0 76px; background: var(--soft); }
.hero .wrap { display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px; align-items: center; }
.hero-video { border-radius: var(--radius-card); overflow: hidden; box-shadow: 0 16px 60px rgba(26,37,48,.16); background:#000; aspect-ratio: 16/9; }
.hero-video iframe, .hero-video wistia-player { width: 100%; height: 100%; border: 0; }
.hero h1 { margin-bottom: 16px; }
.hero .lede { color: var(--body); font-size: 19px; margin-bottom: 22px; }
.optin-title { font-weight: 700; color: var(--ink); font-size: 18px; margin-bottom: 18px; }
.optin { display: flex; gap: 10px; max-width: 480px; }
.optin input[type=email] { flex: 1; padding: 15px 18px; border: 1px solid var(--linka); border-radius: var(--radius-btn); font-family: inherit; font-size: 16px; background: #fff; }
.optin input[type=email]:focus { outline: 2px solid var(--teal); border-color: var(--teal); }

/* ===================== LOGO MARQUEE ===================== */
.marquee { overflow: hidden; padding: 46px 0; background: #fff; }
.marquee-title { text-align: center; font-size: 15px; font-weight: 600; text-transform: uppercase; letter-spacing: .3px; color: var(--muted); margin-bottom: 26px; }
.marquee-inner { max-width: 1180px; margin: 0 auto; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%); }
.marquee-track { display: flex; gap: 26px; align-items: center; animation: scroll 34s linear infinite; width: max-content; }
.marquee-track img { height: 38px; width: auto; padding: 14px 22px; background: #fff; border: 1px solid var(--linka); border-radius: 14px; box-sizing: content-box; box-shadow: 0 2px 12px rgba(26,37,48,.05); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===================== PŘED / PO (přepínač) ===================== */
.ba-toggle { display: inline-flex; background: var(--soft); border: 1px solid var(--linka); border-radius: 999px; padding: 5px; margin: 0 auto 36px; gap: 4px; }
.ba-toggle button { border: none; background: transparent; font-family: inherit; font-weight: 700; font-size: 16px; color: var(--muted); padding: 10px 34px; border-radius: 999px; cursor: pointer; transition: all .2s; }
.ba-toggle button.is-active[data-state="pred"] { background: var(--coral); color: #fff; box-shadow: 0 2px 8px rgba(222,82,55,.3); }
.ba-toggle button.is-active[data-state="po"] { background: var(--teal); color: #fff; box-shadow: 0 2px 8px rgba(37,120,129,.3); }
.ba-shell { max-width: 980px; margin: 0 auto; padding: 30px; }
.ba-panel { display: none; }
.ba-panel.is-active { display: block; animation: baFade .35s ease; }
@keyframes baFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.ba-grid { display: grid; grid-template-columns: 1fr 340px; gap: 32px; align-items: center; }
.ba-info h3 { margin-bottom: 4px; }
.ba-info .loc { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.ba-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ba-stat { background: var(--soft); border: 1px solid var(--linka); border-radius: 12px; padding: 12px 14px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.ba-stat .k { font-size: 12.5px; color: var(--muted); line-height: 1.25; }
.ba-stat .v { font-size: 17px; font-weight: 800; padding: 3px 11px; border-radius: 20px; white-space: nowrap; }
.ba-panel[data-panel="pred"] .ba-stat .v { background: var(--coral-light); color: var(--coral-dark); }
.ba-panel[data-panel="po"] .ba-stat .v { background: var(--teal-light); color: var(--teal-dark); }
.ba-heat { border-radius: 14px; overflow: hidden; border: 1px solid var(--linka); box-shadow: 0 8px 30px rgba(26,37,48,.10); }
.ba-heat img { width: 100%; display: block; }
@media (max-width: 760px) { .ba-grid { grid-template-columns: 1fr; gap: 22px; } .ba-heat { max-width: 340px; margin: 0 auto; } }

/* ===================== KROKY ===================== */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step .step-ic { width: 72px; height: 72px; margin-bottom: 16px; }
.step h4 { margin-bottom: 8px; }
.step p { font-size: 15px; }

/* ===================== FAQ ===================== */
.faq { max-width: 980px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--linka); padding: 20px 0; }
.faq summary { font-weight: 700; font-size: 19px; cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; }
.faq summary::after { content: '+'; color: var(--coral); font-weight: 800; }
.faq details[open] summary::after { content: '-'; }
.faq details p { margin-top: 12px; }

/* ===================== BOOK / CTA teal ===================== */
/* ===================== REZERVACE / TidyCal ===================== */
.tidycal-card { background: #fff; border: 1px solid var(--linka); border-radius: 18px; padding: 10px; max-width: 980px; max-height: 660px; overflow: auto; margin: 6px auto 0; box-shadow: 0 14px 50px rgba(26,37,48,.10); }
.tidycal-embed { min-height: 600px; }

/* ===================== FOOTER ===================== */
.site-footer { background: #33414c; color: rgba(255,255,255,.72); padding: 62px 0 26px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1.4fr; gap: 40px; align-items: start; }
.site-footer h5 { color: #fff; font-size: 15px; text-transform: uppercase; letter-spacing: .3px; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,.8); }
.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }
.footer-brand-logo { display: inline-block; margin-bottom: 18px; }
.footer-brand-logo img { width: 152px; display: block; filter: brightness(0) invert(1); opacity: .95; }
.footer-claim { color: #fff; font-size: 29px; font-weight: 800; line-height: 1.15; letter-spacing: -0.5px; margin-bottom: 14px; }
.footer-sub { color: rgba(255,255,255,.62); font-size: 15px; max-width: 330px; margin-bottom: 16px; }
.footer-terms { display: inline-block; color: rgba(255,255,255,.85); text-decoration: underline; }
.footer-social { display: flex; gap: 12px; margin-top: 18px; }
.footer-social a { width: 30px; height: 30px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.55); background: transparent; border-radius: 8px; transition: color .15s; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 19px; height: 19px; }
.footer-map iframe { width: 100%; height: 180px; border: 0; border-radius: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); margin-top: 40px; padding-top: 20px; font-size: 14px; text-align: center; }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
  h1 { font-size: 38px; } h2 { font-size: 30px; }
  .section { padding: 60px 0; }
  .hero .wrap { display: flex; flex-direction: column; gap: 0; align-items: stretch; }
  .hero-copy, .hero-media { display: contents; }
  .hero h1 { order: 1; margin-bottom: 20px; }
  .hero-video { order: 2; margin-bottom: 24px; }
  .hero .lede { order: 3; }
  .hero .optin-title { order: 4; }
  .hero .optin { order: 5; max-width: none; }
  .hero .optin-msg { order: 6; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hdr-social { display: none; }
}
@media (max-width: 900px) {
  .hdr-nav, .hdr-phone, .hdr-social, .hdr-divider { display: none; }
  .hdr-right > .btn--sm { display: none; }
  .hdr-burger { display: flex; }
}
@media (max-width: 767px) {
  body { font-size: 17.5px; }
  h1 { font-size: 31px; } h2 { font-size: 26px; }
  .section { padding: 52px 0; }
  .wrap { padding: 0 22px; }
  .hdr-nav, .hdr-phone, .hdr-social, .hdr-divider { display: none; }
  .ba-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .optin { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
}
/* PC a větší tablety - větší, čitelnější text (+~15 %) */
@media (min-width: 1025px) {
  body { font-size: 21px; }
}

/* =========================================================================
   ROZŠÍŘENÍ - podstránky (ceník, timeline, blog, článek, případovky, form)
   ========================================================================= */

/* --- CENÍK / balíčky --- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1080px; margin: 0 auto; align-items: stretch; }
.price-card { background: #fff; border: 1px solid var(--linka); border-radius: 18px; padding: 30px 26px; display: flex; flex-direction: column; transition: transform .25s, box-shadow .25s; }
.price-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(26,37,48,.10); }
.price-card.is-featured { border-color: var(--teal); box-shadow: 0 16px 50px rgba(37,120,129,.14); }
.price-tag { display: inline-block; align-self: flex-start; font-size: 13px; font-weight: 700; padding: 6px 14px; border-radius: 20px; background: var(--soft); color: var(--muted); margin-bottom: 18px; }
.price-tag.save { background: var(--teal-light); color: var(--teal-dark); }
.price-amount { font-size: 34px; font-weight: 800; letter-spacing: -1px; color: var(--ink); }
.price-amount span { font-size: 15px; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-note { color: var(--muted); font-size: 14px; margin: 8px 0 16px; }
.price-lead { font-size: 17px; margin-bottom: 18px; }
.price-badge { border-radius: 12px; padding: 12px 16px; text-align: center; font-weight: 700; font-size: 15px; margin-bottom: 20px; }
.price-badge.warn { background: #fdf6e3; color: #a9791c; }
.price-badge.good { background: var(--teal-light); color: var(--teal-dark); }
.price-list { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.price-list li { position: relative; padding-left: 28px; font-size: 15px; color: var(--body); }
.price-list li::before { content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: var(--teal-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23257881' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/12px no-repeat; }
.price-card .btn { margin-top: auto; text-align: center; }

/* --- PAGE HERO (podstránky) --- */
.page-hero { padding: 66px 0 46px; background: var(--soft); text-align: center; }
.page-hero .kick { margin-bottom: 14px; }
.page-hero h1 { max-width: 840px; margin: 0 auto 16px; }
.page-hero p { max-width: 640px; margin: 0 auto; color: var(--muted); font-size: 18px; }

/* --- TIMELINE (případovky) --- */
.timeline { max-width: 820px; margin: 0 auto; position: relative; padding-left: 34px; }
.timeline::before { content: ""; position: absolute; left: 9px; top: 6px; bottom: 6px; width: 2px; background: var(--linka); }
.tl-item { position: relative; padding-bottom: 34px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: -33px; top: 3px; width: 20px; height: 20px; border-radius: 50%; background: var(--teal); border: 4px solid #fff; box-shadow: 0 0 0 1px var(--linka); }
.tl-item .tl-date { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--teal); margin-bottom: 4px; }
.tl-item h4 { margin-bottom: 8px; }
.tl-item p { font-size: 15px; }
.tl-item .rank { margin-top: 10px; }

/* --- METRIKY (case study) --- */
.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 900px; margin: 0 auto; }
.metric { background: #fff; border: 1px solid var(--linka); border-radius: 16px; padding: 22px; text-align: center; }
.metric .num { font-size: 30px; font-weight: 800; color: var(--teal); letter-spacing: -1px; }
.metric .lbl { font-size: 13px; color: var(--muted); margin-top: 4px; }
.cs-heat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1000px; margin: 0 auto; }
.cs-heat figure { margin: 0; }
.cs-heat img { border-radius: 14px; border: 1px solid var(--linka); width: 100%; }
.cs-heat figcaption { text-align: center; font-size: 14px; color: var(--muted); margin-top: 10px; font-weight: 600; }

/* --- BLOG --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--linka); border-radius: 16px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 14px 44px rgba(26,37,48,.10); text-decoration: none; }
.blog-card .thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--soft); }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-card .body { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.blog-card .date { font-size: 13px; color: var(--muted); margin-bottom: 8px; }
.blog-card h3 { font-size: 20px; margin-bottom: 10px; color: var(--ink); }
.blog-card p { font-size: 15px; color: var(--body); margin-bottom: 16px; }
.blog-card .more { margin-top: auto; color: var(--teal); font-weight: 700; font-size: 15px; }

/* --- ČLÁNEK --- */
.article { max-width: 760px; margin: 0 auto; }
.article > * + * { margin-top: 20px; }
.article h2 { font-size: 27px; margin-top: 40px; }
.article h3 { font-size: 21px; margin-top: 28px; }
.article p, .article li { font-size: 17px; line-height: 1.75; color: var(--body); }
.article ul, .article ol { padding-left: 24px; }
.article li { margin-top: 8px; }
.article strong { color: var(--ink); }
.article blockquote { border-left: 4px solid var(--teal); background: var(--soft); padding: 16px 22px; border-radius: 0 12px 12px 0; color: var(--ink); font-weight: 500; }
.article-meta { max-width: 760px; margin: 0 auto 8px; color: var(--muted); font-size: 14px; }

/* --- ORDER FORM (balíčky) --- */
.order-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; max-width: 1040px; margin: 0 auto; align-items: start; }
.order-summary { background: #fff; border: 1px solid var(--linka); border-radius: 18px; padding: 28px; position: sticky; top: 90px; }
.back-link { display: inline-block; margin-bottom: 16px; color: var(--teal); font-weight: 600; font-size: 15px; }
.back-link:hover { color: var(--teal-dark); text-decoration: none; }
.form-card { background: #fff; border: 1px solid var(--linka); border-radius: 18px; padding: 30px 30px 26px; box-shadow: 0 12px 44px rgba(26,37,48,.07); }
.form-card-title { margin-bottom: 4px; }
.form-card-sub { color: var(--muted); font-size: 16px; margin-bottom: 22px; }
.form-card iframe { width: 100%; border: 0; display: block; min-height: 520px; }
@media (max-width: 900px) { .order-grid { grid-template-columns: 1fr; } .order-summary { position: static; } }
@media (max-width: 520px) { .form-card { padding: 20px 18px 18px; } }

/* --- responsive rozšíření --- */
@media (max-width: 1024px) {
  .pricing { grid-template-columns: 1fr; max-width: 460px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .cs-heat { grid-template-columns: 1fr; max-width: 460px; }
}
@media (max-width: 767px) {
  .blog-grid { grid-template-columns: 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; }
}

/* --- Keyword chip (monospace bublina) --- */
.kw-chip { font-family: 'Courier New', monospace; background: #fff; color: var(--ink); padding: 2px 10px; border-radius: 6px; border: 1px solid var(--linka); font-size: .9em; white-space: nowrap; }

/* --- Před/Po porovnání (2 karty) --- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.compare-card { background: #fff; border: 1px solid var(--linka); border-radius: 18px; padding: 26px 28px; border-top: 5px solid var(--linka); }
.compare-card.pred { border-top-color: var(--coral); }
.compare-card.po { border-top-color: var(--teal); }
.compare-card .cc-date { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); }
.compare-card h3 { margin: 6px 0 16px; }
.compare-card.pred h3 { color: var(--coral); }
.compare-card.po h3 { color: var(--teal-dark); }
.cc-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--linka); font-size: 15px; color: var(--muted); }
.cc-row:last-child { border-bottom: 0; }
.cc-row .val { font-weight: 800; font-size: 18px; }
.compare-card.pred .cc-row .val { color: var(--coral); }
.compare-card.po .cc-row .val { color: var(--teal-dark); }
.compare-lead { max-width: 720px; margin: 0 auto 40px; text-align: center; color: var(--muted); }
.trust-note { max-width: 860px; margin: 22px auto 0; text-align: center; color: var(--muted); font-size: 14px; }

/* --- Blog featured image --- */
.article-hero-img { max-width: 620px; margin: 0 auto 32px; border-radius: 18px; overflow: hidden; border: 1px solid var(--linka); }
.article-hero-img img { width: 100%; display: block; }

/* --- TrustIndex sekce --- */
.reviews { text-align: center; }
.reviews .ti-widget { margin-top: 8px; }

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

/* --- Case study HUB karty (horizontální) --- */
.cs-cards { display: grid; gap: 26px; max-width: 1000px; margin: 0 auto; }
.cs-card { display: grid; grid-template-columns: 1fr 1fr; background: #fff; border: 1px solid var(--linka); border-radius: 18px; overflow: hidden; transition: transform .25s, box-shadow .25s; }
.cs-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(26,37,48,.10); text-decoration: none; }
.cs-card .cs-img { background: var(--soft); min-height: 260px; }
.cs-card .cs-img img { width: 100%; height: 100%; object-fit: cover; }
.cs-card .cs-body { padding: 30px 32px; display: flex; flex-direction: column; }
.cs-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 16px; }
.cs-tag { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; padding: 5px 12px; border-radius: 20px; background: var(--soft); color: var(--muted); }
.cs-tag.teal { background: var(--teal-light); color: var(--teal-dark); }
.cs-card h3 { color: var(--ink); margin-bottom: 10px; }
.cs-card p { font-size: 15px; margin-bottom: 18px; }
.cs-mini { display: flex; gap: 26px; margin: 4px 0 22px; }
.cs-mini .m .n { font-size: 21px; font-weight: 800; color: var(--teal); letter-spacing: -0.5px; }
.cs-mini .m .l { font-size: 11px; text-transform: uppercase; letter-spacing: .5px; color: var(--muted); margin-top: 2px; }
.cs-card .more { margin-top: auto; color: var(--coral); font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: .5px; }
@media (max-width: 760px) { .cs-card { grid-template-columns: 1fr; } .cs-card .cs-img { aspect-ratio: 16/10; min-height: 0; } }

/* --- "Co jsme udělali" karty --- */
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; max-width: 900px; margin: 0 auto; }
.work-card { background: #fff; border: 1px solid var(--linka); border-radius: 16px; padding: 28px 30px; }
.work-card .wn { display: inline-block; background: var(--teal-light); color: var(--teal-dark); font-weight: 800; border-radius: 8px; padding: 4px 12px; margin-bottom: 14px; }
.work-card h4 { font-size: 20px; margin-bottom: 8px; }
.work-card p { font-size: 15px; }
@media (max-width: 760px) { .work-grid { grid-template-columns: 1fr; } }

/* --- Lightbox (klikací zvětšení obrázků) --- */
img[data-zoom] { cursor: zoom-in; }
.lb-overlay { position: fixed; inset: 0; background: rgba(15,20,26,.92); display: none; align-items: center; justify-content: center; z-index: 2000; padding: 28px; cursor: zoom-out; }
.lb-overlay.open { display: flex; }
.lb-overlay img { max-width: 95%; max-height: 92%; border-radius: 10px; box-shadow: 0 20px 80px rgba(0,0,0,.5); }

.cs-heat img, .article-hero-img img { cursor: zoom-in; }

/* --- Case study slider (velké LeadSnap dashboardy) --- */
.cs-slider { max-width: 1000px; margin: 34px auto 0; }
.cs-slider-track { display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.cs-slide { flex: 0 0 100%; scroll-snap-align: center; margin: 0; }
.cs-slide img { width: 100%; border-radius: 14px; border: 1px solid var(--linka); box-shadow: 0 8px 30px rgba(26,37,48,.10); cursor: zoom-in; }
.cs-slide figcaption { text-align: center; font-size: 13px; color: var(--muted); margin-top: 12px; font-style: italic; }
.cs-slider-hint { text-align: center; color: var(--muted); font-size: 13px; margin-top: 12px; }

/* --- Slider tečky (indikátor) --- */
.cs-dots { display: flex; gap: 9px; justify-content: center; margin-top: 14px; }
.cs-dots button { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--linka); cursor: pointer; padding: 0; transition: background .2s, transform .2s; }
.cs-dots button.active { background: var(--teal); transform: scale(1.25); }
.cs-slider-track { scrollbar-width: none; }
.cs-slider-track::-webkit-scrollbar { display: none; }

.cs-heat-2 { grid-template-columns: 1fr 1fr; max-width: 660px; }
@media (max-width: 760px){ .cs-heat-2 { grid-template-columns: 1fr; max-width: 360px; } }

/* --- Výhody (3 sloupce) --- */
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; max-width: 980px; margin: 0 auto; }
@media (max-width: 900px) { .benefits { grid-template-columns: 1fr; max-width: 460px; } }

/* --- Analýza: formulář vedle textu / Video: velké video pod nadpisem --- */
.hero-form { background: #fff; border: 1px solid var(--linka); border-radius: 18px; padding: 12px; box-shadow: 0 14px 50px rgba(26,37,48,.10); }
.hero-form iframe { width: 100%; border: 0; min-height: 520px; display: block; }
.video-big { max-width: 840px; margin: 0 auto; }
.video-big .hero-video { box-shadow: 0 18px 70px rgba(26,37,48,.18); }

.hero.hero--top .wrap { align-items: start; }
