/* =====================================================================
   spravcem.cz — hlavní styl
   Barvy odvozené z loga: slate #38424b, zelená #1a9550, šedá #616a71
   ===================================================================== */

:root {
  /* Barvy z loga */
  --slate-900: #232a31;
  --slate-800: #2d353d;
  --slate-700: #38424b;   /* hlavní tmavá z loga */
  --slate-600: #4a5560;
  --slate-500: #616a71;   /* sekundární šedá z loga */
  --slate-400: #8b939a;
  --slate-300: #aeb6bd;

  --green-700: #147a40;
  --green-600: #1a9550;   /* akcent z loga (.cz) */
  --green-500: #22b364;
  --green-400: #3fc77c;
  --green-50:  #e9f7ef;

  --paper:    #ffffff;
  --bg:       #f6f8f9;
  --bg-soft:  #eef2f4;
  --line:     #e2e8ec;
  --line-strong: #cfd8dd;

  --ink:      #232a31;
  --ink-soft: #4a5560;
  --ink-muted:#6b757d;

  /* Typografie */
  --font-display: 'Sora', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;

  /* Rozměry */
  --maxw: 1180px;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 1px 2px rgba(35,42,49,.06), 0 1px 3px rgba(35,42,49,.05);
  --shadow-md: 0 6px 18px rgba(35,42,49,.08), 0 2px 6px rgba(35,42,49,.05);
  --shadow-lg: 0 22px 50px rgba(35,42,49,.14), 0 8px 18px rgba(35,42,49,.07);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; }
a { color: var(--green-700); text-decoration: none; }
a:hover { text-decoration: underline; }

h1,h2,h3,h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 .5em;
  font-weight: 700;
}
h2 { font-size: clamp(1.7rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.28rem; font-weight: 600; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

/* ---------- Layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section--tint { background: var(--paper); }
.section--soft { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-display);
  font-weight: 600; font-size: .8rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--green-700);
  margin-bottom: 18px;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; background: var(--green-600); border-radius: 2px;
}
.section-head { max-width: 720px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.lead { font-size: 1.15rem; color: var(--ink-muted); }

/* ---------- Tlačítka ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  padding: 15px 26px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  text-decoration: none; white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: var(--green-600); color: #fff; box-shadow: 0 8px 20px rgba(26,149,80,.28); }
.btn-primary:hover { background: var(--green-700); box-shadow: 0 12px 26px rgba(26,149,80,.34); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--slate-700); background: rgba(56,66,75,.04); }
.btn-light { background: #fff; color: var(--slate-700); }
.btn-light:hover { background: #f0f3f5; }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.1); }
.btn .ico { width: 18px; height: 18px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: flex; align-items: center; }
.brand img { height: 38px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  white-space: nowrap;
  font-family: var(--font-display); font-weight: 500; font-size: .96rem;
  color: var(--ink-soft); text-decoration: none; transition: color .2s; position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--green-600); transition: width .28s var(--ease);
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; }
.nav-cta .btn { padding: 11px 20px; font-size: .94rem; }
.lang-switch {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 38px; padding: 8px 11px; border-radius: 8px;
  font-size: .85rem; font-weight: 700; letter-spacing: .03em;
  color: var(--ink-soft); border: 1px solid var(--line-strong);
  transition: color .2s, border-color .2s, background .2s;
}
.lang-switch:hover { color: var(--slate-700); border-color: var(--slate-700); background: rgba(56,66,75,.04); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: 8px;
  width: 44px; height: 44px;
}
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(56px, 8vw, 104px) 0 clamp(70px, 9vw, 120px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(1100px 540px at 88% -8%, rgba(26,149,80,.10), transparent 60%),
    radial-gradient(900px 600px at -5% 110%, rgba(56,66,75,.07), transparent 55%),
    var(--bg);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 {
  font-size: clamp(2.3rem, 5vw, 3.7rem); font-weight: 800; color: var(--ink);
  letter-spacing: -.03em; margin-bottom: 22px;
}
.hero h1 .hl { color: var(--green-600); }
.hero-sub { font-size: 1.22rem; color: var(--ink-muted); max-width: 560px; margin-bottom: 34px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 26px; list-style: none; padding: 0; margin: 0; }
.hero-points li {
  display: flex; align-items: center; gap: 9px;
  font-family: var(--font-display); font-weight: 500; font-size: .96rem; color: var(--ink-soft);
}
.hero-points .ico { width: 19px; height: 19px; color: var(--green-600); flex: none; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5; transform: rotate(-1.4deg);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute; bottom: -22px; left: -26px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow-md);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; max-width: 280px;
  border: 1px solid var(--line); transform: rotate(-1.4deg);
}
.hero-badge .bdg-ico {
  width: 46px; height: 46px; border-radius: 12px; background: var(--green-50); color: var(--green-600);
  display: grid; place-items: center; flex: none;
}
.hero-badge .bdg-ico svg { width: 24px; height: 24px; }
.hero-badge strong { font-family: var(--font-display); font-size: 1rem; color: var(--ink); display: block; }
.hero-badge span { font-size: .86rem; color: var(--ink-muted); line-height: 1.4; }

/* ---------- Trust strip ---------- */
.trust { background: var(--slate-700); color: #cdd4d9; }
.trust .wrap { padding-top: 26px; padding-bottom: 26px; }
.trust-row { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; text-align: center; }
.trust-row .num { font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; color: #fff; letter-spacing: -.02em; }
.trust-row .lbl { font-size: .9rem; color: #aab3b9; margin-top: 2px; }

/* ---------- Karty (pro koho) ---------- */
.audience-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
.aud-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.aud-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.aud-card .ico-wrap {
  width: 50px; height: 50px; border-radius: 12px; background: var(--bg-soft); color: var(--slate-700);
  display: grid; place-items: center; margin-bottom: 18px; transition: background .3s, color .3s;
}
.aud-card:hover .ico-wrap { background: var(--green-50); color: var(--green-600); }
.aud-card .ico-wrap svg { width: 26px; height: 26px; }
.aud-card h3 { font-size: 1.06rem; margin-bottom: 6px; }
.aud-card p { font-size: .92rem; color: var(--ink-muted); margin: 0; line-height: 1.5; }

/* ---------- Výhody ---------- */
.adv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.adv-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.adv-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.adv-card .num {
  font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--green-600);
  letter-spacing: .1em; margin-bottom: 16px; display: block;
}
.adv-card .ico-lg {
  width: 56px; height: 56px; border-radius: 14px; background: var(--slate-700); color: #fff;
  display: grid; place-items: center; margin-bottom: 20px;
}
.adv-card .ico-lg svg { width: 28px; height: 28px; }
.adv-card h3 { margin-bottom: 10px; }
.adv-card p { font-size: .98rem; color: var(--ink-muted); margin: 0; }

/* ---------- Služby (kompletní správa) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 28px; position: relative; transition: border-color .3s, box-shadow .3s;
}
.svc-card::before {
  content: ""; position: absolute; top: 0; left: 28px; right: 28px; height: 3px;
  background: var(--green-600); border-radius: 0 0 3px 3px; transform: scaleX(0); transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc-card:hover { box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card .ico-wrap { width: 46px; height: 46px; color: var(--green-600); margin-bottom: 16px; }
.svc-card .ico-wrap svg { width: 30px; height: 30px; }
.svc-card h3 { font-size: 1.12rem; margin-bottom: 10px; }
.svc-card ul { list-style: none; padding: 0; margin: 0; }
.svc-card ul li {
  font-size: .94rem; color: var(--ink-muted); padding-left: 22px; position: relative; margin-bottom: 7px;
}
.svc-card ul li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px;
  border-radius: 50%; background: var(--green-500);
}

/* ---------- Split sekce (účetnictví / gradexlink) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media .ph {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.split-media .ph img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.split h2 { margin-bottom: 18px; }
.split .feat-list { list-style: none; padding: 0; margin: 24px 0 30px; }
.split .feat-list li {
  display: flex; gap: 13px; align-items: flex-start; margin-bottom: 15px; font-size: 1.01rem; color: var(--ink-soft);
}
.split .feat-list .ico {
  width: 24px; height: 24px; flex: none; color: var(--green-600); margin-top: 2px;
}
.split .feat-list strong { color: var(--ink); font-family: var(--font-display); font-weight: 600; }

/* Účetní badge link */
.acc-link {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg-soft); border: 1px solid var(--line); border-radius: 12px;
  padding: 14px 18px; margin-top: 6px; transition: border-color .25s, box-shadow .25s;
}
.acc-link:hover { text-decoration: none; border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.acc-link .ag { width: 40px; height: 40px; border-radius: 9px; background: var(--green-600); color: #fff; display: grid; place-items: center; flex: none; }
.acc-link .ag svg { width: 22px; height: 22px; }
.acc-link .txt strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: .98rem; }
.acc-link .txt span { font-size: .88rem; color: var(--ink-muted); }

/* GradexLINK sekce — tmavý blok */
.gradex { background: linear-gradient(160deg, var(--slate-800) 0%, var(--slate-700) 60%, #2a3a40 100%); color: #d4dade; position: relative; overflow: hidden; }
.gradex::before {
  content: ""; position: absolute; top: -20%; right: -10%; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(34,179,100,.18), transparent 65%); z-index: 0;
}
.gradex .wrap { position: relative; z-index: 1; }
.gradex h2 { color: #fff; }
.gradex .eyebrow { color: var(--green-400); }
.gradex .eyebrow::before { background: var(--green-400); }
.gradex .lead { color: #aeb8bd; }
.gx-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.gx-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 24px; margin-top: 30px; }
.gx-feat .ico { width: 30px; height: 30px; color: var(--green-400); margin-bottom: 10px; }
.gx-feat h4 { font-family: var(--font-display); color: #fff; font-size: 1rem; margin: 0 0 5px; font-weight: 600; }
.gx-feat p { font-size: .9rem; color: #9faab0; margin: 0; line-height: 1.5; }
.gx-platforms { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.gx-platforms .pf {
  display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-size: .9rem;
  color: #cdd4d9; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  padding: 8px 16px; border-radius: 999px;
}
.gx-platforms .pf svg { width: 16px; height: 16px; }

/* Mockup telefonu/okna */
.gx-mock { position: relative; display: grid; place-items: center; }
.gx-window {
  background: #fff; border-radius: 16px; box-shadow: var(--shadow-lg); width: 100%; max-width: 460px; overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg); border: 1px solid rgba(255,255,255,.5);
}
.gx-window .bar { background: var(--bg-soft); padding: 11px 14px; display: flex; align-items: center; gap: 7px; border-bottom: 1px solid var(--line); }
.gx-window .bar i { width: 11px; height: 11px; border-radius: 50%; background: #d4dadf; display: inline-block; }
.gx-window .bar .url { margin-left: 10px; font-size: .76rem; color: var(--ink-muted); font-family: var(--font-display); }
.gx-window .body { padding: 20px; }
.gx-row { display: flex; align-items: center; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--bg-soft); }
.gx-row:last-child { border-bottom: 0; }
.gx-row .dot { width: 36px; height: 36px; border-radius: 9px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; flex: none; }
.gx-row .dot svg { width: 19px; height: 19px; }
.gx-row .gx-txt { flex: 1; }
.gx-row .gx-txt b { display: block; font-family: var(--font-display); font-size: .88rem; color: var(--ink); font-weight: 600; }
.gx-row .gx-txt small { font-size: .78rem; color: var(--ink-muted); }
.gx-row .tag { font-family: var(--font-display); font-size: .72rem; font-weight: 600; padding: 3px 10px; border-radius: 999px; }
.tag.green { background: var(--green-50); color: var(--green-700); }
.tag.gray { background: var(--bg-soft); color: var(--ink-muted); }

/* ---------- Proces ---------- */
.process { counter-reset: step; }
.proc-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px 26px; margin-top: 18px; }
.proc-step {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px;
  position: relative; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.proc-step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.proc-step .step-num {
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; color: #fff;
  width: 42px; height: 42px; border-radius: 11px; background: var(--slate-700); display: grid; place-items: center; margin-bottom: 16px;
}
.proc-step:hover .step-num { background: var(--green-600); }
.proc-step h3 { font-size: 1.08rem; margin-bottom: 8px; }
.proc-step p { font-size: .94rem; color: var(--ink-muted); margin: 0; }

/* ---------- Lokality ---------- */
.loc-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.loc-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 26px; }
.loc-item {
  display: flex; align-items: center; gap: 13px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; transition: border-color .25s, box-shadow .25s;
}
.loc-item:hover { border-color: var(--green-500); box-shadow: var(--shadow-sm); }
.loc-item .pin { width: 38px; height: 38px; border-radius: 9px; background: var(--green-50); color: var(--green-600); display: grid; place-items: center; flex: none; }
.loc-item .pin svg { width: 20px; height: 20px; }
.loc-item b { font-family: var(--font-display); color: var(--ink); font-size: 1rem; display: block; }
.loc-item span { font-size: .85rem; color: var(--ink-muted); }
.loc-media .ph { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.loc-media .ph img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--font-display); font-weight: 600; font-size: 1.12rem; color: var(--ink);
  padding: 24px 48px 24px 0; position: relative; display: flex; justify-content: space-between; gap: 20px;
}
.faq-q .pm {
  position: absolute; right: 0; top: 50%; transform: translateY(-50%); width: 26px; height: 26px; flex: none;
  transition: transform .3s var(--ease);
}
.faq-q .pm::before, .faq-q .pm::after {
  content: ""; position: absolute; background: var(--green-600); border-radius: 2px;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}
.faq-q .pm::before { width: 16px; height: 2.4px; }
.faq-q .pm::after { width: 2.4px; height: 16px; transition: transform .3s var(--ease); }
.faq-item.open .faq-q .pm::after { transform: translate(-50%,-50%) scaleY(0); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 48px 24px 0; color: var(--ink-muted); font-size: 1rem; }
.faq-a-inner p { margin: 0; }

/* ---------- Kontakt / formulář ---------- */
.contact { background: linear-gradient(180deg, var(--bg-soft) 0%, var(--bg) 100%); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: start; }
.contact-info h2 { margin-bottom: 16px; }
.contact-info .lead { margin-bottom: 30px; }
.ci-list { list-style: none; padding: 0; margin: 0 0 28px; }
.ci-list li { display: flex; gap: 15px; align-items: flex-start; margin-bottom: 20px; }
.ci-list .ico { width: 44px; height: 44px; border-radius: 11px; background: var(--paper); border: 1px solid var(--line); color: var(--green-600); display: grid; place-items: center; flex: none; }
.ci-list .ico svg { width: 22px; height: 22px; }
.ci-list .ci-txt b { font-family: var(--font-display); color: var(--ink); display: block; font-size: .94rem; }
.ci-list .ci-txt a, .ci-list .ci-txt span { color: var(--ink-soft); font-size: 1.02rem; }

.form-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 42px); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label {
  display: block; font-family: var(--font-display); font-weight: 500; font-size: .9rem;
  color: var(--ink); margin-bottom: 7px;
}
.field label .req { color: var(--green-600); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: 13px 15px; border: 1.5px solid var(--line-strong); border-radius: 10px; background: #fcfdfd;
  transition: border-color .2s, box-shadow .2s; -webkit-appearance: none; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%236b757d' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 42px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green-500); box-shadow: 0 0 0 4px rgba(34,179,100,.13);
}
.field textarea { resize: vertical; min-height: 110px; }

/* Kontaktní preference + zájem (checkboxy / radio jako chip) */
.chip-group { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  position: relative; cursor: pointer;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display); font-weight: 500; font-size: .9rem; color: var(--ink-soft);
  padding: 9px 16px; border: 1.5px solid var(--line-strong); border-radius: 999px; background: #fcfdfd;
  transition: all .2s var(--ease); user-select: none;
}
.chip span svg { width: 15px; height: 15px; opacity: .55; }
.chip input:checked + span {
  border-color: var(--green-600); background: var(--green-50); color: var(--green-700);
}
.chip input:checked + span svg { opacity: 1; color: var(--green-600); }
.chip input:focus-visible + span { box-shadow: 0 0 0 4px rgba(34,179,100,.13); }

.form-note { font-size: .82rem; color: var(--ink-muted); margin: 6px 0 20px; }
.form-note a { color: var(--green-700); }
.form-submit { width: 100%; justify-content: center; font-size: 1.05rem; padding: 16px; }

.form-msg { border-radius: 10px; padding: 14px 16px; font-size: .95rem; margin-bottom: 18px; display: none; }
.form-msg.ok { display: block; background: var(--green-50); color: var(--green-700); border: 1px solid var(--green-400); }
.form-msg.err { display: block; background: #fdeceb; color: #b3261e; border: 1px solid #f3b4ae; }

.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-900); color: #9faab0; padding: 64px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; margin-bottom: 44px; }
.footer-grid img.flogo { height: 40px; margin-bottom: 18px; }
.footer-grid p { font-size: .94rem; color: #8b969c; margin: 0 0 8px; }
.footer-col h4 { font-family: var(--font-display); color: #fff; font-size: .95rem; letter-spacing: .04em; margin-bottom: 16px; font-weight: 600; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a, .footer-col address a { color: #9faab0; font-size: .94rem; text-decoration: none; transition: color .2s; font-style: normal; }
.footer-col ul li a:hover, .footer-col address a:hover { color: var(--green-400); }
.footer-col address { font-style: normal; font-size: .94rem; line-height: 1.7; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; font-size: .85rem; color: #6f7a80; }
.footer-bottom a { color: #8b969c; }

/* ---------- Reveal animace ---------- */
/* ===== Malé tlačítko (sekundární stránky) ===== */
.btn-sm { padding: 9px 16px; font-size: .9rem; }

/* ===== Stavová stránka (děkujeme) ===== */
.status-page { padding: 90px 0 110px; min-height: 60vh; display: flex; align-items: center; }
.status-card {
  max-width: 620px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 52px 44px; box-shadow: var(--shadow-lg);
}
.status-icon {
  width: 76px; height: 76px; margin: 0 auto 26px; border-radius: 50%;
  display: grid; place-items: center; color: #fff;
  background: var(--green-600); box-shadow: 0 10px 24px rgba(26,149,80,.32);
}
.status-icon svg { width: 38px; height: 38px; }
.status-card h1 { font-size: 2rem; margin: 0 0 14px; }
.status-card p { color: var(--ink-soft); margin: 0 auto 14px; max-width: 48ch; }
.status-sub { font-size: .95rem; color: var(--ink-muted); }
.status-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }

/* ===== Právní / textová stránka ===== */
.legal { padding: 60px 0 90px; }
.legal-wrap { max-width: 760px; margin: 0 auto; }
.legal h1 { font-size: 2.1rem; margin: 0 0 8px; }
.legal .lead { color: var(--ink-muted); margin: 0 0 36px; font-size: 1.02rem; }
.legal h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal h3 { font-size: 1.05rem; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--ink-soft); }
.legal ul { padding-left: 22px; margin: 12px 0; }
.legal li { margin-bottom: 7px; }
.legal table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: .95rem; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--bg-soft); font-weight: 600; color: var(--ink); }
.legal .updated { margin-top: 40px; font-size: .9rem; color: var(--ink-muted); border-top: 1px solid var(--line); padding-top: 18px; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .audience-grid { grid-template-columns: repeat(3,1fr); }
  .adv-grid, .svc-grid, .proc-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 1180px) {
  .nav-links { gap: 20px; }
  .nav-links a { font-size: .95rem; }
  .nav-cta { gap: 10px; }
  .nav-cta .btn-ghost { display: none; }
}
@media (max-width: 900px) {
  body { font-size: 17px; }
  .hero-grid, .split, .gx-grid, .loc-wrap, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .split-media { order: 0; }
  .hero-visual { max-width: 460px; margin: 0 auto; }
  .gx-mock { order: -1; }
  .trust-row { grid-template-columns: repeat(2,1fr); gap: 24px 16px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .nav-links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0; flex-direction: column;
    background: #fff; padding: 22px 24px; gap: 4px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--line);
  }
  .site-header.menu-open .nav-links a { padding: 12px 0; font-size: 1.05rem; width: 100%; border-bottom: 1px solid var(--bg-soft); }
}
@media (max-width: 620px) {
  .audience-grid, .adv-grid, .svc-grid, .proc-grid, .loc-list, .gx-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2,1fr); }
  .hero-badge { left: 0; right: 0; max-width: none; margin: 0 12px; }
  .hero h1 { font-size: 2.2rem; }
  .btn { width: 100%; justify-content: center; }
  .nav-cta { width: auto; }
  .hero-cta .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
