/* ──────────────────────────────────────────────────────────────
   Czech Google Ads landing pages (/cz/*) — additions on top of
   the shared styles.css design system. Keep this file tiny.
   ────────────────────────────────────────────────────────────── */

/* Stripped nav: logo + one CTA. styles.css hides the solid button's
   label on small screens (icon-only nav CTA) — on a landing page the
   demo button IS the page, so keep the label and drop the arrow. */
.nav--lp .nav__cta .btn--solid span { display: inline; }
@media (max-width: 640px) {
  .nav--lp { padding: 8px 8px 8px 16px; }
  .nav--lp .nav__cta .btn--solid { padding: 10px 14px; }
  .nav--lp .nav__cta .btn--solid svg { display: none; }
}

/* Quiet secondary link ("Vyzkoušet zdarma") */
.lp-textlink {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
}
.lp-textlink:hover { color: var(--ink); }

/* Proof bar: client names (text only) + the three stats */
.lp-proof {
  margin-top: clamp(40px, 6vw, 64px);
  padding: 26px clamp(20px, 4vw, 40px) 30px;
  text-align: left;
}
.lp-proof__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 14px;
}
/* Always a single row: nowrap keeps it to one line, overflow-x keeps it
   inside the card (scrolls on narrow screens instead of wrapping). */
.lp-proof__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 26px;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lp-proof__logos::-webkit-scrollbar { display: none; }
.lp-proof__logos li { flex: 0 0 auto; }
.lp-proof__logos img {
  display: block;
  height: 26px;
  width: auto;
  max-width: 130px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.lp-proof__logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
@media (max-width: 640px) {
  /* fade the right edge so an off-screen logo reads as "scroll for more" */
  .lp-proof__logos {
    gap: 22px;
    -webkit-mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
    mask-image: linear-gradient(90deg, #000 calc(100% - 24px), transparent 100%);
  }
  .lp-proof__logos img { height: 22px; max-width: 108px; }
}
.lp-proof .live-stats { margin-top: 26px; }
@media (max-width: 640px) {
  .lp-proof .live-stats { grid-template-columns: 1fr; gap: 16px; }
}

/* Price-map section: a few live role cards from /price_map/ (pricemap.css +
   pricemap.js). This only handles the CTA spacing; the `pm` class on the
   section supplies the cards' custom props (--mono, --pm-card-bg, ...). */
.lp-pricemap__cta { margin-top: 30px; }
.lp-pricemap { text-align: center; }
.lp-pricemap .pm-card { text-align: left; }
/* If pricemap.js can't load live data, keep the section from collapsing. */
.lp-pricemap .pm-chart__empty { min-height: 120px; }

/* Comparison: three columns instead of the homepage's two */
.lp-compare-grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 960px) {
  .lp-compare-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }
}

/* How-it-works cards without the heavy visuals don't need the
   homepage's tall min-height */
.lp-how .how-card { min-height: 0; }

/* The leaderboard is wider than a 375px viewport allows (CZK budgets,
   long Czech labels): let the platforms pill wrap under the handle
   instead of overlapping it, and give variant names room to render. */
.lp-how .lb-header { flex-wrap: wrap; }
.lp-how .lb-handle { flex: 1 0 auto; }
@media (max-width: 560px) {
  .lp-how .lb-row { grid-template-columns: 20px minmax(64px, auto) minmax(24px, 1fr) auto; }
}

/* Single centered testimonial */
.lp-testi { max-width: 640px; margin: 0 auto; }

/* FAQ */
.lp-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 760px;
  margin: 0 auto;
}
.lp-faq__item { border-radius: var(--radius-md); }
.lp-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  font-weight: 600;
  font-size: 15.5px;
}
.lp-faq__item summary::-webkit-details-marker { display: none; }
.lp-faq__item summary::after {
  content: "+";
  flex-shrink: 0;
  font-size: 22px;
  font-weight: 400;
  color: var(--ink-mute);
  transition: transform 0.2s ease;
}
.lp-faq__item[open] summary::after { transform: rotate(45deg); }
.lp-faq__item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--ink-soft);
  font-size: 14.5px;
}

/* Final CTA: quiet signup note under the demo button */
.lp-cta-note {
  margin: 2px 0 0;
  font-size: 13.5px;
  color: var(--ink-mute);
}

/* Minimal footer: bottom bar only, legal links */
.footer--lp { margin-top: 24px; }
.footer--lp .footer__bottom {
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  align-items: center;
}
.lp-footer-links { display: flex; flex-wrap: wrap; gap: 18px; }
.lp-footer-links a { color: var(--ink-mute); }
.lp-footer-links a:hover { color: var(--ink); }

/* ── Industry pages (/industries/*): logos as a bare strip, stats in
   their own card with large numerals. cz pages keep .lp-proof. ── */
.lp-proofstrip {
  margin: clamp(40px, 6vw, 64px) auto 0;
  text-align: center;
}
.lp-proofstrip__label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 22px;
}
.lp-proofstrip__logos {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px 44px;
}
.lp-proofstrip__logos li { flex: 0 0 auto; }
.lp-proofstrip__logos img {
  display: block;
  height: 30px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.6;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.lp-proofstrip__logos img:hover { filter: grayscale(0%); opacity: 1; }
@media (max-width: 640px) {
  .lp-proofstrip__logos { gap: 16px 28px; }
  .lp-proofstrip__logos img { height: 24px; max-width: 112px; }
}

.lp-statcard {
  margin: 36px auto 0;
  padding: clamp(28px, 4vw, 44px) clamp(24px, 4vw, 48px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  text-align: left;
}
.lp-statcard > div { display: flex; flex-direction: column; gap: 10px; }
.lp-statcard strong {
  font-family: var(--font-display);
  font-size: clamp(36px, 4.2vw, 52px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.025em;
}
.lp-statcard span {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink-soft);
}
@media (max-width: 760px) {
  .lp-statcard { grid-template-columns: 1fr; gap: 26px; }
}

/* ── "You're in control" visuals (industry pages) ──────────────── */
/* Card 1: the weekend feed — a launch on Friday evening ticking
   through to Monday morning without anyone at a desk. */
.wknd { display: flex; flex-direction: column; gap: 8px; margin-top: 18px; }
.wknd-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  font-size: 13.5px;
  color: var(--ink-soft);
}
.wknd-row b { color: var(--ink); font-weight: 600; }
.wknd-time {
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-mute);
  background: rgba(0, 0, 0, 0.05);
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}
.wknd-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #1a7f52;
}
.wknd-live::before {
  content: "";
  width: 7px; height: 7px; border-radius: 50%;
  background: #1fbf75;
  animation: wknd-pulse 1.6s ease-out infinite;
}
@keyframes wknd-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(31, 191, 117, 0.45); }
  100% { box-shadow: 0 0 0 9px rgba(31, 191, 117, 0); }
}
.wknd-row--hot {
  background: var(--accent-soft, rgba(47, 107, 255, 0.08));
  border-color: var(--accent-ring, rgba(47, 107, 255, 0.25));
  color: var(--ink);
}
.wknd-row--hot .wknd-time { background: rgba(47, 107, 255, 0.12); color: var(--accent-strong, #2f6bff); }
/* staggered entrance */
.wknd-row { animation: wknd-in 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.wknd-row:nth-child(2) { animation-delay: 0.15s; }
.wknd-row:nth-child(3) { animation-delay: 0.3s; }
.wknd-row:nth-child(4) { animation-delay: 0.45s; }
@keyframes wknd-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: none; }
}

/* Card 2: the budget mixer — spend as sliders you own, one paused. */
.mix { display: flex; flex-direction: column; gap: 10px; margin-top: 18px; }
.mix-row {
  display: grid;
  grid-template-columns: minmax(86px, auto) 1fr auto;
  align-items: center;
  gap: 12px;
  font-size: 13px;
}
.mix-name { font-weight: 600; color: var(--ink); white-space: nowrap; }
.mix-bar {
  position: relative;
  height: 8px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.07);
  overflow: visible;
}
.mix-bar__fill {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #7aa2ff, #2f6bff);
  animation: mix-grow 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes mix-grow { from { width: 0; } }
/* the "slider" knob that says: this is yours to drag */
.mix-bar__knob {
  position: absolute;
  top: 50%;
  left: var(--w, 50%);
  transform: translate(-50%, -50%);
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  box-shadow: 0 2px 6px rgba(10, 10, 10, 0.18);
}
.mix-amount { font-variant-numeric: tabular-nums; font-weight: 700; color: var(--ink); white-space: nowrap; }
.mix-delta { font-size: 11px; font-weight: 600; color: #1a7f52; margin-left: 5px; }
.mix-row--paused .mix-name,
.mix-row--paused .mix-amount { color: var(--ink-mute); font-weight: 500; }
.mix-row--paused .mix-bar { background: transparent; border: 1px dashed rgba(0, 0, 0, 0.18); }
.mix-pause {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: #9a6a00;
  background: rgba(154, 106, 0, 0.1);
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.mix-foot {
  margin-top: 6px;
  padding-top: 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  font-size: 12px;
  color: var(--ink-mute);
}
.mix-foot span { display: inline-flex; align-items: center; gap: 6px; }
.mix-foot span::before { content: "✓"; color: #1a7f52; font-weight: 700; }
@media (prefers-reduced-motion: reduce) {
  .wknd-row, .mix-bar__fill { animation: none; }
  .wknd-live::before { animation: none; }
}

/* Stacked lockups (AWA) need more height in the strip to stay legible */
.lp-proofstrip__logos img.is-tall { height: 44px; max-width: 150px; }
@media (max-width: 640px) { .lp-proofstrip__logos img.is-tall { height: 36px; } }

/* Vertical rhythm comes from styles.css (--section-gap); no overrides here. */
.lp-statcard { margin-top: 40px; }

/* ── Integrations strip (agencies page) ────────────────────────── */
.intg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
@media (max-width: 1020px) { .intg-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px)  { .intg-grid { grid-template-columns: repeat(2, 1fr); } }
.intg-card {
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.intg-card strong {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.intg-card span { font-size: 13px; line-height: 1.45; color: var(--ink-mute); }
/* the "your system" tile invites a conversation rather than naming a vendor */
.intg-card--custom {
  background: transparent;
  border: 1px dashed rgba(22, 22, 22, 0.2);
  box-shadow: none;
}
