/* ================================================================== */
/* DESIGN TOKENS                                                       */
/* ================================================================== */
:root {
  /* modrá = důvěra / profesionalita */
  --brand: #1746C9;
  --brand-hover: #11379F;
  --brand-soft: #EAF1FF;
  --brand-line: #C9D9FF;

  /* amber = jen „živá" tečka dostupnosti (velmi střídmě) */
  --warm: #DB8A2C;

  /* teplé neutrály = klidný, tradiční, důvěryhodný dojem */
  --paper:    #FFFFFF;
  --warm-50:  #FAF6EF;
  --warm-100: #F3ECE1;

  --ink-950: #16130F;
  --ink-800: #2C2722;
  --ink-700: #4E463C;
  --ink-500: #867C6E;
  --ink-300: #C8BFB1;
  --line:      #E8E1D6;

  --font-sans:    "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-display: "Outfit", ui-sans-serif, system-ui, sans-serif;

  --container: 1200px;
  --pad-x: 1.15rem;

  --r-sm: 9px;
  --r:    13px;
  --r-lg: 18px;

  --shadow-sm: 0 1px 2px rgba(22,19,15,.05), 0 2px 8px rgba(22,19,15,.04);
  --shadow-md: 0 6px 18px rgba(22,19,15,.07), 0 1px 3px rgba(22,19,15,.05);
  --shadow-lg: 0 18px 50px rgba(22,19,15,.12);
}

@media (min-width: 640px)  { :root { --pad-x: 1.75rem; } }
@media (min-width: 1024px) { :root { --pad-x: 2.25rem; } }

/* ================================================================== */
/* RESET                                                              */
/* ================================================================== */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 5.5rem; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--ink-950);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; }
ul, ol { list-style: none; }
h1, h2, h3 { line-height: 1.05; }
strong { font-weight: 700; color: inherit; }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 3px; }

/* ================================================================== */
/* HELPERS                                                            */
/* ================================================================== */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--light { color: var(--brand); }

.accent { color: var(--brand); }

.section { padding: 4.5rem 0; background: var(--paper); }
.section--warm { background: var(--warm-50); }
@media (min-width: 768px) { .section { padding: 6.5rem 0; } }

.section__head { max-width: 46rem; margin-bottom: 3rem; }
.section__title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  font-size: clamp(2rem, 4.6vw, 3.2rem);
  margin-top: 0.85rem;
  color: var(--ink-950);
}
.muted { color: var(--ink-300); }

/* jemný „blueprint" rastr na světlém pozadí */
.bg-grid {
  background-image:
    linear-gradient(to right, rgba(23,70,201,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(23,70,201,0.05) 1px, transparent 1px);
  background-size: 76px 76px;
}

.dot {
  flex: none;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--warm);
}

/* ================================================================== */
/* BUTTONS                                                            */
/* ================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.45rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--r-sm);
  transition: background-color .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.btn svg { width: 1.05rem; height: 1.05rem; }
.btn:active { transform: translateY(1px); }
.btn--lg { padding: 1.05rem 1.7rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--small { padding: 0.6rem 1.05rem; font-size: 0.9rem; }

.btn--accent { background: var(--brand); color: #fff; box-shadow: 0 6px 18px rgba(23,70,201,.22); }
.btn--accent:hover { background: var(--brand-hover); box-shadow: 0 10px 26px rgba(23,70,201,.3); transform: translateY(-1px); }

.btn--dark { background: var(--ink-950); color: #fff; }
.btn--dark:hover { background: var(--brand); }

.btn--ghost, .btn--glass { border: 1.5px solid var(--ink-300); color: var(--ink-950); }
.btn--ghost:hover, .btn--glass:hover { border-color: var(--ink-950); background: var(--ink-950); color: #fff; }

/* ================================================================== */
/* HEADER (světlý, tradiční, sticky)                                  */
/* ================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s;
}
.header--scrolled { box-shadow: var(--shadow-sm); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  font-family: var(--font-display); font-weight: 800; font-size: 1.2rem;
  color: var(--ink-950);
}
.brand__mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.3rem; height: 2.3rem;
  background: var(--brand); color: #fff;
  border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 900; font-size: 0.85rem;
}
.brand__name { display: none; }
@media (min-width: 480px) { .brand__name { display: inline; } }
.brand__dot { color: var(--brand); }

.nav {
  display: none; align-items: center; gap: 2rem;
  font-size: 0.95rem; font-weight: 500;
  color: var(--ink-700);
}
.nav a { transition: color .18s; }
.nav a:hover { color: var(--brand); }
@media (min-width: 940px) { .nav { display: flex; } }

.nav__lang {
  display: inline-flex; align-items: center; gap: .35rem;
  padding-left: .5rem; margin-left: .25rem;
  border-left: 1px solid var(--line, rgba(0,0,0,.12));
  font-size: .82rem; font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}
.nav__lang a {
  padding: .25rem .45rem; border-radius: 6px;
  color: var(--ink-500, #6b7280);
}
.nav__lang a:hover { color: var(--brand); background: rgba(23, 70, 201, .06); }
.nav__lang a[aria-current="true"] {
  color: var(--brand); background: rgba(23, 70, 201, .08);
}
.header--scrolled .nav__lang { border-left-color: rgba(0,0,0,.12); }

/* ================================================================== */
/* HERO (světlý)                                                      */
/* ================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 85% at 88% -10%, var(--brand-soft) 0%, transparent 55%),
    var(--paper);
  border-bottom: 1px solid var(--line);
}
.hero__bg { position: absolute; inset: 0; opacity: 0.7; pointer-events: none; }
.hero__glow { display: none; }
.hero__inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 1000px) {
  .hero__inner {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: center;
    gap: 3.5rem;
    padding-top: 5rem;
    padding-bottom: 4.5rem;
  }
}
.hero__title {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  color: var(--ink-950);
}
.hero__sub {
  margin-top: 1.5rem;
  max-width: 35rem;
  font-size: 1.14rem;
  color: var(--ink-700);
}
.hero__cta {
  margin-top: 2.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
@media (min-width: 460px) { .hero__cta { flex-direction: row; } }
.hero__avail {
  margin-top: 1.7rem;
  display: flex; align-items: center; gap: 0.65rem;
  font-size: 0.92rem; color: var(--ink-700);
  max-width: 33rem;
}
.hero__avail strong { color: var(--ink-950); }

/* --- VIDEO slot (tmavý náhled = přirozený pro video) --- */
.hero__media { width: 100%; }
.video {
  position: relative; display: block; width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transition: transform .2s;
}
.video:hover { transform: translateY(-3px); }
.video__poster {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(90% 80% at 30% 18%, #2c4a99 0%, transparent 60%),
    linear-gradient(150deg, #16223f 0%, #1b3a86 55%, #1746c9 115%);
}
.video__person { color: rgba(255,255,255,0.16); }
.video__person svg { width: 42%; height: 42%; max-width: 150px; margin: 0 auto; }
.video__play {
  position: absolute; top: 46%; left: 50%;
  transform: translate(-50%, -50%);
  display: flex; align-items: center; justify-content: center;
  width: 4.6rem; height: 4.6rem; border-radius: 50%;
  background: rgba(255,255,255,0.97); color: var(--brand);
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  transition: transform .2s;
}
.video:hover .video__play { transform: translate(-50%, -50%) scale(1.07); }
.video__play svg { width: 1.7rem; height: 1.7rem; margin-left: 3px; }
.video__bar {
  position: absolute; left: 0; right: 0; bottom: 0;
  display: flex; flex-direction: column; gap: 0.15rem;
  padding: 1.5rem 1.4rem 1.2rem; text-align: left;
  background: linear-gradient(to top, rgba(7,11,26,0.92) 0%, rgba(7,11,26,0.5) 60%, transparent 100%);
}
.video__label { color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; }
.video__by { color: rgba(255,255,255,0.66); font-size: 0.82rem; }

/* --- trust strip (světlý) --- */
.hero__trust {
  position: relative;
  padding-bottom: 3rem;
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 760px) {
  .hero__trust { flex-direction: row; align-items: center; gap: 2rem; padding-bottom: 3.5rem; }
}
.hero__trust-label {
  flex: none;
  font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--ink-500);
}
.logos { display: flex; flex-wrap: wrap; align-items: center; gap: 1.1rem 2rem; }
.logos li {
  font-family: var(--font-display); font-weight: 700;
  font-size: 1.02rem; letter-spacing: -0.01em;
  color: var(--ink-500);
  transition: color .2s;
}
.logos li:hover { color: var(--ink-950); }

/* ================================================================== */
/* STAT BAND — floating cards překrývající přechod hero → znate-to     */
/* ================================================================== */
.stats {
  position: relative;
  z-index: 5;
  background: transparent;
  border: 0;
  margin-top: -3rem;
  margin-bottom: -3rem;
  pointer-events: none;
}
@media (min-width: 768px) {
  .stats { margin-top: -4rem; margin-bottom: -4rem; }
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.9rem;
  background: transparent;
  border: 0;
  align-items: stretch;
  pointer-events: auto;
}
@media (min-width: 820px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
}
.stat {
  background: var(--paper);
  padding: 1.4rem 1rem;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: 0 8px 24px rgba(22,19,15,.06);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.stat:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 14px 32px rgba(22,19,15,.10);
}
@media (min-width: 820px) {
  .stat { padding: 1.7rem 1.25rem; }
}
.stat__num {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  letter-spacing: -0.03em; line-height: 1;
  color: var(--brand);
}
.stat__lbl { margin-top: 0.5rem; font-size: 0.92rem; color: var(--ink-700); }

/* Room v sekci 1 (hero) a 2 (znate-to) — aby karty nepřekrývaly text */
.hero__trust { padding-bottom: 5rem; }
@media (min-width: 760px) {
  .hero__trust { padding-bottom: 6.5rem; }
}
#znate-to { padding-top: 6rem; }
@media (min-width: 768px) {
  #znate-to { padding-top: 8.5rem; }
}

/* ================================================================== */
/* ZNÁTE TO? (bolest)                                                 */
/* ================================================================== */
.znate__grid { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) {
  .znate__grid { grid-template-columns: 0.92fr 1.08fr; gap: 4rem; align-items: start; }
}
.znate__sub { margin-top: 1.25rem; font-size: 1.05rem; color: var(--ink-700); max-width: 26rem; }
.painlist { display: flex; flex-direction: column; gap: 0.7rem; }
.pain {
  display: flex; align-items: flex-start; gap: 0.9rem;
  padding: 1.1rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r);
  font-size: 1.02rem; color: var(--ink-800);
  box-shadow: var(--shadow-sm);
}
.pain__x {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 1.6rem; height: 1.6rem; margin-top: 1px;
  border-radius: 50%;
  background: #FCEDE0; color: var(--warm);
}
.pain__x svg { width: 0.95rem; height: 0.95rem; }
.znate__turn {
  margin-top: 1.5rem;
  padding: 1.25rem 1.4rem;
  background: var(--brand-soft);
  border-radius: var(--r);
  font-size: 1.08rem; color: var(--ink-800);
}

/* ================================================================== */
/* KDO JSEM (autorita)                                                */
/* ================================================================== */
.kdo__grid { display: grid; gap: 2.5rem; }
@media (min-width: 900px) {
  .kdo__grid { grid-template-columns: 0.82fr 1.18fr; gap: 3.5rem; align-items: center; }
}
.kdo__photo { position: relative; }
.kdo__img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.kdo__badge {
  position: absolute; right: -0.6rem; bottom: -0.9rem;
  display: flex; flex-direction: column; align-items: center;
  background: var(--brand); color: #fff;
  padding: 1rem 1.25rem; border-radius: var(--r);
  box-shadow: var(--shadow-lg);
}
.kdo__badge-num { font-family: var(--font-display); font-weight: 800; font-size: 1.8rem; line-height: 1; color: #fff; }
.kdo__badge-lbl { margin-top: 0.2rem; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.8); }
.kdo__lead { margin-top: 1.4rem; font-size: 1.22rem; line-height: 1.5; color: var(--ink-950); }
.kdo__body { margin-top: 1rem; font-size: 1.03rem; color: var(--ink-700); }
.kdo__chips { margin-top: 1.9rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.kdo__chips li {
  padding: 0.5rem 0.95rem;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 100px; font-size: 0.9rem; color: var(--ink-700);
  box-shadow: var(--shadow-sm);
}
.kdo__chips strong { color: var(--brand); }

/* ================================================================== */
/* VYBRANÉ PRÁCE (portfolio, světlé)                                  */
/* ================================================================== */
.works { display: grid; grid-template-columns: 1fr; gap: 1.75rem; }
@media (min-width: 720px) { .works { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.work { display: flex; flex-direction: column; }
.work__link { display: block; }
.work__shot {
  background: #fff;
  border-radius: var(--r);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  transition: transform .2s, box-shadow .2s;
  aspect-ratio: 16 / 11;
}
.work__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.work:hover .work__shot { transform: translateY(-4px); box-shadow: 0 22px 60px rgba(22,19,15,.16); }
.work__cap { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.15rem; }
.work__name { font-family: var(--font-display); font-weight: 700; color: var(--ink-950); }
.work__role { font-size: 0.9rem; color: var(--ink-500); }

/* ================================================================== */
/* CO DOSTANETE (karty)                                               */
/* ================================================================== */
.cards { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .cards { grid-template-columns: repeat(3, 1fr); } }
.card {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-line); }
.card__icon {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem;
  background: var(--brand-soft); color: var(--brand);
  border-radius: var(--r-sm);
}
.card__icon svg { width: 1.6rem; height: 1.6rem; }
.card__title {
  margin-top: 1.3rem;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: -0.01em; font-size: 1.2rem; color: var(--ink-950);
}
.card__desc { margin-top: 0.6rem; font-size: 0.98rem; color: var(--ink-700); }
.card--accent { background: var(--brand); border-color: var(--brand); }
.card--accent .card__icon { background: rgba(255,255,255,0.16); color: #fff; }
.card--accent .card__title { color: #fff; }
.card--accent .card__desc { color: rgba(255,255,255,0.85); }

/* ================================================================== */
/* JAK TO PROBÍHÁ (kroky)                                             */
/* ================================================================== */
.steps { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 600px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step {
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.step__no {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem;
  background: var(--brand); color: #fff; border-radius: var(--r-sm);
  font-family: var(--font-display); font-weight: 800; font-size: 0.95rem;
}
.step__title { margin-top: 1.2rem; font-family: var(--font-display); font-weight: 700; font-size: 1.18rem; color: var(--ink-950); }
.step__desc { margin-top: 0.55rem; font-size: 0.96rem; color: var(--ink-700); }

/* ================================================================== */
/* REFERENCE                                                          */
/* ================================================================== */
.references { display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 760px) { .references { grid-template-columns: repeat(3, 1fr); } }
.ref {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: var(--r); overflow: hidden; box-shadow: var(--shadow-sm);
}
.ref__video {
  position: relative; aspect-ratio: 16 / 10;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #16223f, #244089);
}
.ref__avatar { color: rgba(255,255,255,0.22); }
.ref__avatar svg { width: 3.2rem; height: 3.2rem; }
.ref__play {
  position: absolute; display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 50%;
  background: rgba(255,255,255,0.96); color: var(--brand);
  box-shadow: 0 6px 18px rgba(0,0,0,.28);
}
.ref__play svg { width: 1.15rem; height: 1.15rem; margin-left: 2px; }
.ref__quote { flex-grow: 1; padding: 1.5rem 1.5rem 0.4rem; font-size: 1.05rem; line-height: 1.5; color: var(--ink-950); }
.ref__foot { display: flex; flex-direction: column; gap: 0.1rem; padding: 1rem 1.5rem 1.5rem; }
.ref__name { font-family: var(--font-display); font-weight: 700; color: var(--ink-950); }
.ref__role { font-size: 0.85rem; color: var(--ink-500); }
.references__note { margin-top: 1.5rem; text-align: center; font-size: 0.85rem; color: var(--ink-500); }

/* ================================================================== */
/* FAQ                                                                */
/* ================================================================== */
.faq__grid { display: grid; gap: 2.5rem; }
@media (min-width: 1000px) { .faq__grid { grid-template-columns: 0.7fr 1.3fr; gap: 4rem; align-items: start; } }
.faq__list {
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--paper); overflow: hidden; box-shadow: var(--shadow-sm);
}
.faq__list li + li .faq__item { border-top: 1px solid var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem 1.5rem; transition: background .18s;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { background: var(--warm-50); }
.faq__q { font-family: var(--font-display); font-weight: 700; font-size: 1.1rem; color: var(--ink-950); }
.faq__icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 1.9rem; height: 1.9rem; border-radius: 50%;
  background: var(--warm-50); color: var(--ink-700);
  transition: background .18s, color .18s;
}
.faq__icon svg { width: 0.9rem; height: 0.9rem; }
.faq__minus { display: none; }
.faq__item[open] .faq__plus { display: none; }
.faq__item[open] .faq__minus { display: inline-flex; }
.faq__item[open] .faq__icon { background: var(--brand); color: #fff; }
.faq__a { padding: 0 1.5rem 1.4rem; font-size: 1rem; line-height: 1.55; color: var(--ink-700); }

/* ================================================================== */
/* KONTAKT (světlý closing CTA)                                       */
/* ================================================================== */
.kontakt { position: relative; overflow: hidden; background: var(--brand-soft); color: var(--ink-950); border-top: 1px solid var(--brand-line); }
.kontakt__bg { position: absolute; inset: 0; opacity: 0.9; pointer-events: none; }
.kontakt__inner {
  position: relative;
  display: grid; gap: 3rem; padding: 4.5rem 0;
}
@media (min-width: 1000px) {
  .kontakt__inner { grid-template-columns: 1fr 1fr; gap: 4rem; padding: 6rem 0; align-items: center; }
}
.kontakt__title {
  margin-top: 0.85rem;
  font-family: var(--font-display); font-weight: 800;
  letter-spacing: -0.03em; line-height: 1.02;
  font-size: clamp(2rem, 4.6vw, 3.2rem); color: var(--ink-950);
}
.kontakt__lead { margin-top: 1.4rem; max-width: 30rem; font-size: 1.08rem; color: var(--ink-700); }
.kontakt__lead strong { color: var(--ink-950); }
.kontakt__avail { margin-top: 1.5rem; display: flex; align-items: center; gap: 0.65rem; font-size: 0.95rem; color: var(--ink-700); }
.kontakt__avail strong { color: var(--ink-950); }
.kontakt__list { margin-top: 2.25rem; display: flex; flex-direction: column; gap: 0.75rem; }
.kontakt__item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.15rem;
  border: 1px solid var(--brand-line); border-radius: var(--r);
  background: var(--paper);
  transition: box-shadow .18s, transform .18s;
}
a.kontakt__item:hover { box-shadow: var(--shadow-md); transform: translateY(-1px); }
.kontakt__icon {
  flex: none; display: inline-flex; align-items: center; justify-content: center;
  width: 2.6rem; height: 2.6rem;
  background: var(--brand); color: #fff; border-radius: var(--r-sm);
}
.kontakt__icon svg { width: 1.15rem; height: 1.15rem; }
.kontakt__label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--ink-500); }
.kontakt__value { display: block; margin-top: 0.1rem; font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--ink-950); }
.kontakt__value--big { font-size: 1.2rem; }

/* --- formulář --- */
.form-card { background: var(--paper); color: var(--ink-950); border-radius: var(--r-lg); padding: 1.75rem; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
@media (min-width: 600px) { .form-card { padding: 2.25rem; } }
.field { display: block; }
.field + .field, .field-row + .field, .field + .field-row { margin-top: 1.1rem; }
.field__label { display: block; margin-bottom: 0.45rem; font-size: 0.88rem; font-weight: 600; color: var(--ink-800); }
.field__label .req { color: var(--warm); }
.field__input, .field__textarea {
  width: 100%; padding: 0.8rem 1rem; font-size: 1rem; color: var(--ink-950);
  background: var(--warm-50); border: 1.5px solid var(--line); border-radius: var(--r-sm);
  outline: none; transition: border-color .18s, background .18s;
}
.field__input::placeholder, .field__textarea::placeholder { color: var(--ink-500); }
.field__input:focus, .field__textarea:focus { border-color: var(--brand); background: #fff; }
.field__textarea { resize: vertical; min-height: 110px; }
.field-row { display: grid; gap: 1.1rem; align-items: start; }
@media (min-width: 420px) { .field-row { grid-template-columns: 1fr 1fr; } }
.field-row .field + .field { margin-top: 0; }
.checkbox { display: flex; align-items: flex-start; gap: 0.65rem; margin: 1.25rem 0; font-size: 0.9rem; color: var(--ink-700); }
.checkbox input { margin-top: 0.15rem; width: 1.05rem; height: 1.05rem; accent-color: var(--brand); flex: none; }
.form-card__fine { margin-top: 0.9rem; text-align: center; font-size: 0.82rem; color: var(--ink-500); }
.form-card__done { display: flex; flex-direction: column; align-items: center; padding: 3rem 0.5rem; text-align: center; }
.form-card__done-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 3.6rem; height: 3.6rem; background: var(--brand); color: #fff; border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.form-card__done-icon svg { width: 1.75rem; height: 1.75rem; }
.form-card__done h3 { margin-top: 1.4rem; font-family: var(--font-display); font-weight: 800; font-size: 1.6rem; color: var(--ink-950); }
.form-card__done p { margin-top: 0.7rem; max-width: 24rem; color: var(--ink-700); }

/* ================================================================== */
/* FOOTER                                                             */
/* ================================================================== */
.footer { background: var(--paper); color: var(--ink-700); border-top: 1px solid var(--line); }
.footer__grid { display: grid; gap: 2.75rem; padding: 3.5rem 0; }
@media (min-width: 900px) { .footer__grid { grid-template-columns: 1fr 1.4fr; } }
.footer__brand { display: flex; align-items: center; gap: 0.65rem; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem; color: var(--ink-950); }
.footer__brand .brand__mark { width: 2.5rem; height: 2.5rem; }
.footer__brand .brand__dot { color: var(--brand); }
.footer__tagline { margin-top: 1.1rem; max-width: 24rem; font-size: 0.92rem; color: var(--ink-700); }
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (min-width: 600px) { .footer__nav { grid-template-columns: repeat(3, 1fr); } }
.footer__heading { display: block; margin-bottom: 0.9rem; font-family: var(--font-display); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink-500); }
.footer__nav ul { display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.92rem; }
.footer__nav a { transition: color .18s; }
.footer__nav a:hover { color: var(--brand); }
.footer__bottom { border-top: 1px solid var(--line); }
.footer__bottom-inner { display: flex; flex-direction: column; align-items: flex-start; gap: 0.6rem; padding: 1.4rem 0; font-size: 0.8rem; color: var(--ink-500); }
@media (min-width: 600px) { .footer__bottom-inner { flex-direction: row; align-items: center; justify-content: space-between; } }
.footer__legal { display: flex; gap: 1.25rem; }
.footer__legal a { transition: color .18s; }
.footer__legal a:hover { color: var(--brand); }

/* ================================================================== */
/* ZÍSKEJ ŘEŠENÍ ZDARMA (CTA banner)                                  */
/* ================================================================== */
.section--cta {
  background: linear-gradient(135deg, var(--brand-soft) 0%, #fff 60%, var(--warm-50) 100%);
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}
.reseni__inner {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  display: flex; flex-direction: column; align-items: center;
}
.reseni__lead {
  margin: 1.4rem 0 2rem;
  font-size: 1.1rem;
  color: var(--ink-700);
  max-width: 36rem;
}

/* ================================================================== */
/* MODAL                                                              */
/* ================================================================== */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
}
.modal[hidden] { display: none; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11, 16, 32, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  animation: modalFadeIn .18s ease;
}
.modal__dialog {
  position: relative;
  width: 100%; max-width: 36rem;
  max-height: calc(100vh - 2.5rem);
  overflow-y: auto;
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 30px 80px rgba(11,16,32,.35);
  animation: modalSlideUp .22s ease;
}
@media (min-width: 600px) { .modal__dialog { padding: 2.5rem 2.25rem; } }
.modal__close {
  position: absolute; top: 0.9rem; right: 0.9rem;
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.2rem; height: 2.2rem;
  border-radius: 50%;
  background: var(--warm-50); color: var(--ink-700);
  transition: background .18s, color .18s;
}
.modal__close:hover { background: var(--ink-950); color: #fff; }
.modal__close svg { width: 1.1rem; height: 1.1rem; }
.modal__title {
  margin-top: 0.7rem;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.4rem, 3.2vw, 1.85rem);
  letter-spacing: -0.02em; line-height: 1.15;
  color: var(--ink-950);
}
.modal__lead { margin-top: 0.85rem; color: var(--ink-700); font-size: 1rem; }
.form-card--bare {
  margin-top: 1.5rem;
  padding: 0; border: 0; box-shadow: none; background: transparent;
}
body.modal-open { overflow: hidden; }

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes modalSlideUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================== */
/* LEGAL (Ochrana osobních údajů, atd.)                               */
/* ================================================================== */
.legal { max-width: 46rem; }
.legal__intro {
  margin-top: 1.6rem;
  font-size: 1.1rem;
  color: var(--ink-700);
  line-height: 1.6;
}
.legal__h2 {
  margin-top: 2.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.01em;
  color: var(--ink-950);
}
.legal p { margin-top: 0.9rem; color: var(--ink-700); line-height: 1.65; }
.legal a { color: var(--brand); text-decoration: underline; text-underline-offset: 3px; }
.legal a:hover { color: var(--brand-hover); }
.legal__list { margin-top: 0.9rem; padding-left: 1.4rem; color: var(--ink-700); }
.legal__list li { margin-top: 0.4rem; list-style: disc; padding-left: 0.3rem; }
.legal__list li::marker { color: var(--brand); }
.legal strong { color: var(--ink-950); }
.legal__updated {
  margin-top: 3rem; padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.9rem; color: var(--ink-500);
}

/* ================================================================== */
/* REDUCED MOTION                                                     */
/* ================================================================== */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
  .card:hover, .video:hover, .btn:active, .work:hover .mock { transform: none; }
}
