/* ============================================================
   LIVE VET — landing page v3
   Nové/override styly pro index.html
   Návaznost: css/style.css (proměnné, header, footer, feat, …)
   ============================================================ */

/* ---------- HERO — klinika styl (.hero--foto + .klinika-hero2) ---------- */
/* samotný hero staví style.css (.hero--foto světlý overlay + 100svh),
   zde jen doladění obsahu */

/* hlášky pod CTA — ikonové karty (zvětšené) */
.lv-chips {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 3vw, 32px);
  margin: 0;
  padding: 0;
  max-width: 780px;
}
.lv-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 26px 14px 16px;
  box-shadow: var(--shadow-sm);
}
.lv-chip__ico {
  width: 46px; height: 46px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 13px;
  background: var(--brand-soft);
  color: var(--brand);
}
.lv-chip__txt { display: block; }
.lv-chip b { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.2; }
.lv-chip small { display: block; font-size: 13px; color: var(--ink-soft); line-height: 1.25; }

/* kickery v nových sekcích (style.css řeší jen .section-head .kicker) */
.land-head .kicker,
.lv-team__text .kicker {
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 16px;
}

/* ---------- STATS — LIVE VET v číslech (v2: centrované karty, 2026-08-18) ---------- */
#unikaty .land-head { text-align: center; }
#unikaty .land-head p { margin-inline: auto; max-width: 560px; }
.lv-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 2vw, 22px);
  max-width: 1080px;
  margin-inline: auto;
  padding-top: clamp(28px, 4vw, 40px);
  border-top: 1px solid var(--line);
}
.lv-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(22px, 3vw, 30px) clamp(16px, 2.5vw, 26px);
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease, ease), box-shadow .2s var(--ease, ease), border-color .2s;
}
.lv-stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.lv-stat__ico {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  margin-bottom: 12px;
}
.lv-stat__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(30px, 3.4vw, 40px);
  line-height: 1.1;
  color: var(--brand-dark);
  letter-spacing: -.02em;
}
.lv-stat__label { font-size: 14.5px; font-weight: 700; color: var(--ink); line-height: 1.3; }
.lv-stat__note { font-size: 12.5px; color: var(--ink-soft); line-height: 1.45; margin-top: 4px; }

/* doplnující fakta pod čísly — vycentrovaný blok */
.lv-stats__extra {
  max-width: 760px;
  margin: 26px auto 0;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.lv-stats__extra b { color: var(--brand-dark); font-weight: 700; }
@media (max-width: 900px) {
  .lv-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .lv-stats { grid-template-columns: 1fr; }
}

/* ---------- TÝM — sehraný tým profesionálů ---------- */
.lv-team {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.lv-team__text h2 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4.2vw, 48px);
  line-height: 1.08;
  margin: 0 0 14px;
}
.lv-team__text h2 em { font-style: italic; color: var(--brand); }
.lv-team__text p { color: var(--ink-soft); font-size: 16px; line-height: 1.6; margin: 0 0 26px; max-width: 520px; }
.lv-team__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.lv-team__item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease, ease), box-shadow .2s var(--ease, ease), border-color .2s;
}
.lv-team__item:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand); }
.lv-team__ico {
  width: 42px; height: 42px; flex: none;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: var(--brand-soft);
  border: 1px solid var(--line);
  color: var(--brand);
}
.lv-team__item b { display: block; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.lv-team__item small { display: block; font-size: 13px; color: var(--ink-soft); line-height: 1.4; }

/* ---------- SLUŽBY — zelené ikony v feat kartách ---------- */
.lv-feat-ico { color: var(--brand); }

/* ---------- POHOTOVOST — jen odlišný odstín zelené ---------- */
.lv-pohotovost {
  background:
    radial-gradient(60% 70% at 90% 10%, rgba(127, 209, 207, .10), transparent 55%),
    linear-gradient(160deg, #0A2E20 0%, #0E3B2A 55%, #124731 100%);
}
.lv-pohotovost .kicker--light { color: #FFC9A3; }
.lv-pohotovost h2 em { color: #FFC9A3; }
/* zvětšené JEN ikony před texty položek (texty zůstávají původní) */
.lv-pohotovost .poh-ico {
  font-size: 24px;
  line-height: 1;
  vertical-align: -3px;
  margin-right: 6px;
}

/* ---------- Responsivita ---------- */
@media (max-width: 960px) {
  .lv-chips { grid-template-columns: repeat(3, 1fr); }
  .lv-stats { grid-template-columns: repeat(2, 1fr); }
  .lv-team { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .lv-chips { grid-template-columns: 1fr; }
  .lv-chip { padding: 10px 14px 10px 10px; }
  .lv-chip__ico { width: 42px; height: 42px; }
  .lv-stats { grid-template-columns: 1fr; }
  .lv-team__items { gap: 10px; }
}
@media (max-width: 374px) {
  .lv-chips { grid-template-columns: 1fr; gap: 8px; }
  .lv-chip { padding: 8px 12px 8px 8px; gap: 10px; }
  .lv-chip__ico { width: 38px; height: 38px; }
  .lv-chip b { font-size: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .lv-team__item { transition: none; }
}

/* ---------- PES v sekci Služby: přesunut do css/style.css (.sluzby-grid/
   .sluzby-pes-frame) — text vlevo, pes v rámečku vpravo (2026-08-18) ---------- */
