/* ───────────────────────────────────────────────────────────
 * FIBERNET — Variant 1 · Konzervativní korporát (produkční)
 * Paleta z loga: navy #103060, gray #7c7878, orange #e87530
 * Rekurentní motiv: dvojité oranžové podtržení (z loga)
 * ─────────────────────────────────────────────────────────── */

:root {
  --bg: #ffffff;
  --surface: #f5f6f9;
  --surface-2: #eef0f5;
  --fg: #0c1d3a;
  --muted: #5a6678;
  --line: #e3e6ed;
  --primary: #103060;
  --primary-700: #0a2348;
  --primary-soft: #e8edf6;
  --accent: #e87530;
  --accent-700: #cf5e1c;
  --accent-soft: #fbe6d6;
  --brand-gray: #7c7878;
  --accent-fg: #ffffff;
}

/* Brand rule — dvojité oranžové podtržení z loga */
.brand-rule {
  display: block;
  margin-top: 22px;
  width: 96px; height: 14px;
  background:
    linear-gradient(to bottom,
      var(--accent) 0, var(--accent) 4px,
      transparent 4px, transparent 8px,
      var(--accent) 8px, var(--accent) 12px,
      transparent 12px, transparent 14px);
}
.brand-rule-sm {
  margin-top: 16px; width: 64px; height: 12px;
  background:
    linear-gradient(to bottom,
      var(--accent) 0, var(--accent) 3px,
      transparent 3px, transparent 6px,
      var(--accent) 6px, var(--accent) 9px,
      transparent 9px, transparent 12px);
}
.brand-rule-light {
  background:
    linear-gradient(to bottom,
      #fff 0, #fff 4px,
      transparent 4px, transparent 8px,
      #fff 8px, #fff 12px,
      transparent 12px, transparent 14px);
  opacity: 0.9;
}

/* ─── TOP STRIP ─── */
.top-strip {
  background: var(--primary);
  height: 6px;
}
.top-strip-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.top-right { display: inline-flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.top-right .sep { opacity: 0.35; }
.top-right a { color: inherit; }
.top-right a:hover { color: var(--accent); }

/* ─── NAV ─── */
.nav-wrap { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 100; }
.nav {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 18px 56px;
}
.nav-logo { display: inline-flex; align-items: center; }
.nav-logo img { height: 44px; width: auto; display: block; }
.nav ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; gap: 28px; justify-self: center;
  font-size: 14px; font-weight: 500; color: var(--muted);
}
.nav li { position: relative; }
.nav li a {
  padding: 8px 0;
  display: inline-block;
  cursor: pointer;
  transition: color .2s;
}
.nav li a:hover { color: var(--fg); }
.nav li.active a { color: var(--fg); font-weight: 600; }
.nav li.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -19px;
  height: 3px; background: var(--accent);
}
.nav-actions { display: inline-flex; gap: 22px; align-items: center; }
.nav-link {
  font-size: 13px; color: var(--muted); cursor: pointer;
  background: transparent; border: 0; padding: 0;
}
.nav-link:hover { color: var(--primary); }
.nav-cta { padding: 11px 18px; font-size: 13px; border-radius: 3px; }

/* Mobile menu toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 8px 12px;
  cursor: pointer;
}
.nav-toggle-bar {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--fg);
  margin: 4px 0;
  transition: transform .2s, opacity .2s;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 56px 96px;
  background:
    radial-gradient(ellipse 70% 90% at 100% 0%, var(--primary-soft) 0%, transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--surface) 100%);
  position: relative;
}
.hero-inner { max-width: 1440px; margin: 0 auto; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
/* Hero bez mapy — text vystředěný */
.hero-centered { text-align: center; }
.hero-centered .hero-inner { display: flex; justify-content: center; }
.hero-centered .hero-copy { max-width: 880px; }
.hero-centered .pill { margin-inline: auto; }
.hero-centered .lead { max-width: 680px; margin-inline: auto; }
.hero-centered .brand-rule,
.hero-centered .brand-rule-sm { margin-left: auto; margin-right: auto; }
.hero-centered .cta-row { justify-content: center; }
.hero-centered .trust-row { justify-content: center; }
.hero-centered .trust { text-align: center; }
.hero h1 {
  font-size: 64px; line-height: 1.04;
  letter-spacing: -0.022em;
  margin: 24px 0 0;
  font-weight: 700;
  text-wrap: balance;
  color: var(--fg);
}
.hero h1 em {
  font-style: normal;
  color: var(--primary);
  position: relative;
  display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 8px;
  background: var(--accent); opacity: 0.32;
  z-index: -1;
}
.lead {
  font-size: 17.5px; line-height: 1.6; color: var(--muted);
  max-width: 540px; margin: 30px 0 32px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.trust .trust-row {
  display: flex; gap: 32px; margin-top: 14px; flex-wrap: wrap;
  font-weight: 600; font-size: 14px; color: var(--brand-gray);
  letter-spacing: -0.005em;
}

/* Hero — network map card */
.map-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 70px -40px rgba(16, 48, 96, 0.35);
}
.map-header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 18px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11.5px;
  color: var(--muted);
}
.map-title { color: var(--fg); font-weight: 600; }
.map { display: block; width: 100%; height: auto; }
.map-footer {
  display: flex; gap: 22px; padding: 12px 18px;
  border-top: 1px solid var(--line);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--muted);
  flex-wrap: wrap;
}
.map-key { display: inline-block; width: 14px; height: 2px; vertical-align: middle; margin-right: 6px; }
.key-active { background: var(--accent); }
.key-planned { border-top: 1.5px dashed var(--primary); }
.key-pop { width: 8px; height: 8px; background: var(--accent); border-radius: 999px; }
.key-pz { width: 7px; height: 7px; background: #fff; border: 1.5px solid var(--brand-gray); border-radius: 999px; }

/* Live dot v header */
.map-live-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 999px;
  background: #2db66b;
  margin-right: 8px;
  vertical-align: middle;
  position: relative;
  top: -1px;
  box-shadow: 0 0 0 3px color-mix(in oklch, #2db66b 22%, transparent);
  animation: pulse 2s ease-in-out infinite;
}
.map-meta { color: var(--muted); }

/* Hub pulse animace v SVG */
.node-hub-pulse {
  transform-origin: 180px 220px;
  animation: hub-pulse 2.8s ease-out infinite;
}
@keyframes hub-pulse {
  0%   { transform: scale(0.9); opacity: 0.6; }
  60%  { transform: scale(1.6); opacity: 0; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Animovaný datový tok po kabelech — oranžové tečky putují */
.cable-flow path {
  stroke-dasharray: 4 14;
  stroke-dashoffset: 0;
  animation: cable-flow 2.2s linear infinite;
  opacity: 0.75;
}
.cable-flow path:nth-child(2) { animation-delay: -0.4s; }
.cable-flow path:nth-child(3) { animation-delay: -0.8s; }
.cable-flow path:nth-child(4) { animation-delay: -1.2s; }
.cable-flow path:nth-child(5) { animation-delay: -1.6s; }
@keyframes cable-flow {
  to { stroke-dashoffset: -36; }
}

/* Sekundární uzly hover */
.node { transition: transform .15s ease; cursor: default; }
.node:hover { transform: scale(1.06); transform-origin: center; }

/* Respektuj reduce motion */
@media (prefers-reduced-motion: reduce) {
  .map-live-dot, .node-hub-pulse, .cable-flow path { animation: none; }
}

/* ─── STATS STRIP ─── */
.stats {
  display: grid; grid-template-columns: repeat(5, 1fr);
  background: var(--primary);
  color: #fff;
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
}
.stats::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 6px;
  background:
    linear-gradient(to bottom,
      var(--accent) 0, var(--accent) 2px,
      transparent 2px, transparent 4px,
      var(--accent) 4px, var(--accent) 6px);
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child { border-right: 0; }
.stat-top { display: flex; align-items: baseline; gap: 6px; }
.stat-num {
  font-size: 44px; font-weight: 700; letter-spacing: -0.03em; line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-unit { font-size: 14px; color: var(--accent); font-weight: 500; }
.stat-label { font-size: 13px; color: rgba(255, 255, 255, 0.6); margin-top: 8px; }

/* ─── SECTION HEADS ─── */
.section { padding: 96px 56px 88px; }
.section-inner { max-width: 1440px; margin: 0 auto; }
.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head h2 {
  font-size: 42px;
  letter-spacing: -0.018em;
  font-weight: 700;
  margin: 14px 0 0;
  text-wrap: balance;
  position: relative;
}
.section-lead { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 24px 0 0; max-width: 640px; }

/* ─── SERVICES ─── */
.services { background: #fff; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 280px)); gap: 16px;
  justify-content: center;
  max-width: 980px;
  margin: 0 auto;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px 26px 26px;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0;
  height: 3px; background: var(--accent); transform: translateY(-100%);
  transition: transform .2s ease;
}
.card:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -25px rgba(16, 48, 96, 0.25);
}
.card:hover::before { transform: translateY(0); }
.card-num {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--accent);
  border: 1px solid color-mix(in oklch, var(--accent) 30%, transparent);
  padding: 3px 8px; border-radius: 2px;
  margin-bottom: 36px;
}
.card h3 { font-size: 19px; font-weight: 600; margin: 0 0 10px; letter-spacing: -0.01em; color: var(--fg); }
.card p { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 22px; }
.card-link {
  font-size: 13px; font-weight: 600; color: var(--primary); cursor: pointer;
  display: inline-block;
  transition: color .15s, transform .15s;
}
.card-link:hover { color: var(--accent); transform: translateX(3px); }

/* ─── COVERAGE ─── */
.coverage {
  background: var(--primary);
  background-image:
    radial-gradient(circle at 85% 15%, color-mix(in oklch, var(--accent) 45%, transparent) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, color-mix(in oklch, #fff 8%, transparent) 0%, transparent 50%);
  color: #fff;
  padding: 88px 56px;
  position: relative;
}
.coverage-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start;
}
.coverage-inner .eyebrow { color: rgba(255, 255, 255, 0.62); }
.coverage h2 {
  font-size: 42px; color: #fff; margin: 14px 0 0;
  letter-spacing: -0.018em; font-weight: 700; text-wrap: balance;
}
.coverage-lead { color: rgba(255, 255, 255, 0.78); font-size: 16px; line-height: 1.6; margin: 24px 0 32px; max-width: 460px; }
.coverage-cta { background: #fff; color: var(--primary); }
.coverage-cta:hover { background: var(--accent); color: #fff; box-shadow: 0 12px 24px -12px rgba(0, 0, 0, 0.4); }
.coverage-list {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px 28px;
  font-size: 15px;
}
.coverage-list li {
  padding: 8px 0 8px 18px; position: relative;
  color: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.coverage-list li::before {
  content: ''; position: absolute; left: 0; top: 50%; width: 8px; height: 2px;
  background: var(--accent); transform: translateY(-50%);
}

/* ─── DRAGON BRIDGE ─── */
.dragon {
  padding: 96px 56px;
  background: var(--surface);
}
.dragon-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: center;
}
.dragon-left h2 { font-size: 40px; letter-spacing: -0.02em; font-weight: 700; margin: 14px 0 0; text-wrap: balance; }
.dragon-left p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 28px 0 28px; max-width: 460px; }
.dragon-right { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.dragon-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 24px;
  display: flex; flex-direction: column;
  cursor: pointer;
  transition: transform .2s, border-color .2s, box-shadow .2s;
}
.dragon-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -25px rgba(232, 117, 48, 0.25);
}
.dragon-card-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 22px; }
.dragon-card-icon {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--primary); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 600;
}
.dragon-card h4 { margin: 0; font-size: 17px; font-weight: 600; color: var(--fg); }
.dragon-card ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-direction: column; gap: 8px; font-size: 14px; color: var(--muted); }
.dragon-card ul li::before { content: '— '; color: var(--accent); }
.dragon-card-link { font-size: 12.5px; font-family: 'JetBrains Mono', ui-monospace, monospace; color: var(--accent); font-weight: 600; margin-top: auto; }

/* ─── REFERENCES ─── */
.references { background: #fff; }
.ref-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ref {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 26px 24px;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.ref:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px -25px rgba(16, 48, 96, 0.2);
}
.ref-head { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 28px; gap: 12px; }
.ref-tag {
  display: inline-block;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 3px 8px;
  border-radius: 2px;
  white-space: nowrap;
}
.ref-name {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  text-align: right;
}
.ref-quote { font-size: 17px; line-height: 1.5; color: var(--fg); margin: 0 0 28px; font-weight: 500; }
.ref-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 18px; margin: 0; border-top: 1px solid var(--line); }
.ref-metrics > div { display: flex; flex-direction: column; gap: 4px; }
.ref-metrics dt { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; color: var(--primary); margin: 0; }
.ref-metrics dd { font-size: 11.5px; color: var(--muted); margin: 0; }

/* ─── FORM CTA ─── */
.form-cta {
  padding: 96px 56px;
  background: var(--surface);
  background-image:
    repeating-linear-gradient(45deg,
      transparent 0 100px,
      color-mix(in oklch, var(--primary) 3%, transparent) 100px 101px);
}
.form-cta-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: start;
}
.form-cta-copy h2 {
  font-size: 44px; letter-spacing: -0.02em; font-weight: 700; margin: 14px 0 0;
  text-wrap: balance;
}
.form-cta-copy h2 em {
  font-style: normal;
  color: var(--accent);
  position: relative;
}
.form-cta-copy h2 em::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.05em; height: 8px;
  background: var(--accent); opacity: 0.22;
  z-index: -1;
}
.form-cta-copy p { font-size: 16px; line-height: 1.6; color: var(--muted); margin: 28px 0 24px; }
.form-bullets { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; font-size: 14px; }
.form-bullets li { padding-left: 20px; position: relative; color: var(--fg); }
.form-bullets li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.form-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px 28px 24px;
  box-shadow: 0 30px 60px -30px rgba(16, 48, 96, 0.25);
}
.form-card-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 18px; margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
  font-weight: 600; color: var(--fg);
}
.form-step { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: var(--accent); font-weight: 600; }
.form-row { margin-bottom: 14px; }
.form-row label,
.form-field label {
  display: block; font-size: 11.5px; font-weight: 600;
  color: var(--brand-gray); letter-spacing: 0.04em; text-transform: uppercase;
  margin-bottom: 6px;
}
.form-row label .req,
.form-field label .req { color: var(--accent); }
.form-row input, .form-row select, .form-row textarea,
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 11px 14px; font: inherit;
  border: 1px solid var(--line); border-radius: 4px;
  background: #fff; color: var(--fg);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus,
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-soft);
}
.form-row-2 { display: grid; grid-template-columns: 1.5fr 1fr; gap: 12px; }
.form-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 22px; padding-top: 22px;
  border-top: 1px solid var(--line);
  gap: 12px;
  flex-wrap: wrap;
}
.form-foot-meta { font-family: 'JetBrains Mono', ui-monospace, monospace; font-size: 11.5px; color: var(--muted); }

/* ─── FOOTER ─── */
.footer {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 56px 24px;
  position: relative;
}
.footer::before {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 6px;
  background:
    linear-gradient(to bottom,
      var(--accent) 0, var(--accent) 2px,
      transparent 2px, transparent 4px,
      var(--accent) 4px, var(--accent) 6px);
}
.footer-inner { max-width: 1440px; margin: 0 auto; }
.footer { text-align: center; }
.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-logo {
  height: 48px;
  background: #fff;
  padding: 8px 14px;
  border-radius: 4px;
  margin: 0 auto 22px;
  width: fit-content;
}
.footer-logo img { height: 100%; width: auto; }
.footer-tag { font-size: 15px; line-height: 1.5; color: #fff; margin: 0 0 22px; font-weight: 500; }
.footer-addr { font-size: 13px; line-height: 1.6; color: rgba(255, 255, 255, 0.6); margin: 0; }
.footer-cols { display: grid; grid-template-columns: 1fr; gap: 32px; }
.footer-cols h5 {
  font-size: 11.5px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 16px;
}
.footer-cols a {
  display: block; font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  padding: 5px 0;
  cursor: pointer; transition: color .15s;
}
.footer-cols a:hover { color: var(--accent); }
.footer-bottom {
  display: flex; justify-content: center; align-items: center;
  padding-top: 22px;
  font-size: 12px; color: rgba(255, 255, 255, 0.5);
  gap: 22px;
  flex-wrap: wrap;
  flex-direction: column;
}
.footer-links { display: inline-flex; gap: 22px; flex-wrap: wrap; justify-content: center; }
.footer-links a { color: rgba(255, 255, 255, 0.5); cursor: pointer; }
.footer-links a:hover { color: #fff; }

/* ─── SUBPAGE: ŽÁDOST ─── */
.page { padding: 56px 56px 96px; background: #fff; }
.page-inner { max-width: 1440px; margin: 0 auto; }
.breadcrumb { font-size: 12.5px; color: var(--muted); margin-bottom: 28px; }
.breadcrumb a { cursor: pointer; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span.sep { margin: 0 8px; }
.breadcrumb .active { color: var(--fg); font-weight: 600; }
.page-head { max-width: 760px; margin-bottom: 56px; }
.page-h1 {
  font-size: 56px; line-height: 1.04;
  letter-spacing: -0.022em; font-weight: 700; margin: 0;
  text-wrap: balance;
}
.page-h1 .brand-rule { margin-top: 22px; }
.page-lead { font-size: 17.5px; line-height: 1.6; color: var(--muted); margin: 32px 0 0; max-width: 620px; }

.page-grid { display: grid; grid-template-columns: 220px 1fr 280px; gap: 40px; align-items: start; }

/* Stepper */
.stepper { display: flex; flex-direction: column; gap: 8px; position: sticky; top: 100px; }
.step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  transition: all .2s;
}
.step.is-active { border-color: var(--primary); background: var(--primary-soft); }
.step-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 700;
  background: var(--primary); color: #fff;
  padding: 4px 7px;
  border-radius: 3px;
  margin-top: 2px;
}
.step:not(.is-active) .step-num { background: var(--surface-2); color: var(--brand-gray); }
.step-title { font-size: 14px; font-weight: 600; color: var(--fg); }
.step-meta { font-size: 11.5px; color: var(--muted); margin-top: 2px; }

/* Full form */
.fullform {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 32px;
}
.fullform-section + .fullform-section { margin-top: 32px; padding-top: 32px; border-top: 1px solid var(--line); }
.fullform-section h3 {
  font-size: 17px; font-weight: 600; margin: 0 0 22px; color: var(--fg);
  display: flex; align-items: center; gap: 12px;
}
.fullform-section h3::before {
  content: ''; width: 12px; height: 4px;
  background: linear-gradient(to bottom, var(--accent) 0 1px, transparent 1px 2px, var(--accent) 2px 3px, transparent 3px 4px);
}
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 18px; }
.form-field { display: flex; flex-direction: column; }
.radio-group { display: flex; flex-direction: column; gap: 8px; }
.radio {
  display: flex; gap: 14px; align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
  cursor: pointer;
  transition: all .15s;
}
.radio.is-on { border-color: var(--primary); background: var(--primary-soft); }
.radio input { accent-color: var(--accent); }
.radio-title { display: block; font-size: 14.5px; font-weight: 600; color: var(--fg); }
.radio-meta { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }
.fullform-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 32px; padding-top: 32px;
  border-top: 1px solid var(--line);
  gap: 12px;
  flex-wrap: wrap;
}

/* Aside */
.form-aside { display: flex; flex-direction: column; gap: 14px; }
.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 22px;
}
.aside-card .eyebrow { color: var(--accent); display: block; margin-bottom: 12px; }
.aside-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; font-size: 13px; color: var(--muted); }
.aside-card ul li::before { content: '— '; color: var(--accent); }
.aside-card details { margin: 8px 0; }
.aside-card summary { font-size: 13px; font-weight: 600; color: var(--fg); cursor: pointer; padding: 6px 0; }
.aside-card details p { font-size: 13px; color: var(--muted); line-height: 1.55; margin: 4px 0 8px; }
.aside-card-dark { background: var(--primary); color: #fff; border-color: var(--primary); }
.aside-card-dark p { font-size: 13.5px; line-height: 1.55; margin: 0; color: rgba(255, 255, 255, 0.85); }
.aside-card-dark strong { color: var(--accent); font-size: 18px; display: inline-block; margin-top: 4px; }
.aside-card-dark .eyebrow { color: var(--accent-soft); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1180px) {
  .hero { padding: 64px 40px 80px; }
  .section, .coverage, .dragon, .form-cta { padding-left: 40px; padding-right: 40px; }
  .top-strip, .nav, .footer { padding-left: 40px; padding-right: 40px; }
  .nav { padding-top: 16px; padding-bottom: 16px; }
  .footer { padding-top: 64px; padding-bottom: 24px; }
  .page { padding: 48px 40px 80px; }
  .hero h1 { font-size: 52px; }
  .page-h1 { font-size: 48px; }
  .section-head h2, .coverage h2, .dragon-left h2, .form-cta-copy h2 { font-size: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-list { grid-template-columns: repeat(2, 1fr); }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .page-grid { grid-template-columns: 1fr; }
  .stepper { position: static; flex-direction: row; flex-wrap: wrap; }
  .step { flex: 1 1 calc(50% - 8px); min-width: 200px; }
}

@media (max-width: 860px) {
  .hero-grid, .coverage-inner, .dragon-inner, .form-cta-inner, .footer-top {
    grid-template-columns: 1fr; gap: 40px;
  }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .ref-grid { grid-template-columns: 1fr; }
  .nav ul { display: none; }
  .nav-actions .nav-link { display: none; }
  .nav-toggle { display: inline-block; }
  .nav { grid-template-columns: auto auto; }
  .nav.is-open ul {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: #fff;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 40px;
    gap: 0;
    justify-self: stretch;
  }
  .nav.is-open ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav.is-open ul li:last-child { border-bottom: 0; }
  .nav.is-open ul li.active::after { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 48px 24px 64px; }
  .section, .coverage, .dragon, .form-cta { padding: 64px 24px; }
  .top-strip, .nav, .footer { padding-left: 24px; padding-right: 24px; }
  .page { padding: 32px 24px 64px; }
  .hero h1 { font-size: 40px; }
  .page-h1 { font-size: 36px; }
  .section-head h2, .coverage h2, .dragon-left h2, .form-cta-copy h2 { font-size: 30px; }
  .services-grid, .dragon-right { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 24px 20px; }
  .stat-num { font-size: 36px; }
  .coverage-list { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
  .form-row-2 { grid-template-columns: 1fr; }
  .top-strip-inner { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .fullform { padding: 22px; }
  .ref-metrics { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .ref-metrics dt { font-size: 16px; }
}

/* ─── LEGAL — Ochrana osobních údajů, Cookies ─── */
.legal-page { padding-bottom: 80px; }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--fg);
}
.legal-content h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent-soft);
  position: relative;
}
.legal-content h2::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: var(--accent);
}
.legal-content h2:first-of-type { margin-top: 32px; }
.legal-content p { margin: 14px 0; color: var(--fg); }
.legal-content ul {
  list-style: none;
  padding: 0;
  margin: 14px 0;
}
.legal-content ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  line-height: 1.6;
}
.legal-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 2px;
  background: var(--accent);
}
.legal-content a {
  color: var(--primary);
  text-decoration: underline;
  text-decoration-color: var(--accent-soft);
  text-underline-offset: 3px;
}
.legal-content a:hover {
  color: var(--accent);
  text-decoration-color: var(--accent);
}
.legal-content strong { color: var(--fg); font-weight: 600; }
.legal-effective {
  margin-top: 48px !important;
  padding: 18px 22px;
  background: var(--surface);
  border-left: 4px solid var(--accent);
  border-radius: 4px;
}

/* Cookies tabulka */
.cookie-table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: #fff;
}
.cookie-table thead {
  background: var(--primary);
  color: #fff;
}
.cookie-table th {
  text-align: left;
  padding: 14px 16px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cookie-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line);
  vertical-align: top;
  line-height: 1.5;
}
.cookie-table tr:nth-child(even) td { background: var(--surface); }
.cookie-meta {
  display: inline-block;
  margin-top: 2px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 500;
}
.badge-yes, .badge-no {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.badge-yes {
  background: color-mix(in oklch, #2db66b 18%, transparent);
  color: #1d8a4c;
}
.badge-no {
  background: var(--accent-soft);
  color: var(--accent-700);
}

/* ─── KONTAKTY — karty s kontaktními údaji ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto 18px;
  align-items: stretch;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 20px 50px -35px rgba(16, 48, 96, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-card .eyebrow { display: block; margin-bottom: 14px; color: var(--accent); }
.contact-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.015em;
  margin: 0 0 22px;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  text-align: left;
  width: 100%;
  max-width: 320px;
  margin-inline: auto;
}
.contact-list > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 12px;
  align-items: baseline;
}
.contact-list dt {
  font-size: 12px;
  font-weight: 600;
  color: var(--brand-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0;
}
.contact-list dd {
  font-size: 15px;
  font-weight: 500;
  color: var(--fg);
  margin: 0;
}
.contact-list dd a { color: var(--primary); }
.contact-list dd a:hover { color: var(--accent); }
.contact-btn {
  margin-top: auto;
  padding-top: 22px;
}
.contact-card-wide {
  max-width: 980px;
  margin: 0 auto;
}
.contact-address {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 600px;
  margin: 0 auto;
}
.contact-address p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
  text-align: left;
}
.contact-address strong {
  color: var(--fg);
  font-weight: 600;
}
@media (max-width: 720px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-card { padding: 24px; }
  .contact-list > div { grid-template-columns: 1fr; gap: 2px; }
  .contact-address { grid-template-columns: 1fr; }
}

/* ─── PAGE CENTERED — pro podstránky (vyjadreni.html) ─── */
.page-centered { text-align: center; }
.page-centered .breadcrumb { display: flex; justify-content: center; flex-wrap: wrap; gap: 4px; }
.page-centered .page-head { margin-left: auto; margin-right: auto; }
.page-centered .page-h1 .brand-rule { margin-left: auto; margin-right: auto; }
.page-centered .page-lead { margin-left: auto; margin-right: auto; }
.page-centered .aside-card { text-align: left; }
.page-centered .aside-card .eyebrow { text-align: center; display: block; }
.page-centered .legal-content { text-align: left; }

/* ─── VYJÁDŘENÍ — e-mailová CTA karta ─── */
.email-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px 32px;
  max-width: 720px;
  margin: 0 auto 32px;
  text-align: center;
  box-shadow: 0 30px 60px -35px rgba(16, 48, 96, 0.25);
}
.email-card-head {
  display: flex; flex-direction: column; align-items: center; gap: 16px;
  margin-bottom: 16px;
}
.email-card-icon {
  width: 56px; height: 56px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 26px;
  font-weight: 700;
}
.email-card-title {
  font-size: 28px; font-weight: 700; letter-spacing: -0.015em;
  margin: 0; color: var(--fg);
}
.email-card-lead {
  font-size: 16px; line-height: 1.6; color: var(--muted);
  margin: 0 auto 28px;
  max-width: 540px;
}
.email-card-cta {
  font-size: 16px;
  padding: 16px 28px;
}
.email-card-phone {
  font-size: 14px; color: var(--muted);
  margin: 22px 0 0;
}
.email-card-phone a { color: var(--fg); }
.email-card-phone a:hover { color: var(--accent); }

.email-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 980px;
  margin: 0 auto;
}

/* Ceník — strip se dvěma položkami */
.price-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 0 auto 32px;
}
.price-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}
.price-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--brand-gray);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.price-value {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.02em;
}
.price-value.price-free { color: #2db66b; }
.price-vat {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}
@media (max-width: 560px) {
  .price-strip { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .email-card { padding: 32px 22px; }
  .email-card-title { font-size: 24px; }
  .email-info-grid { grid-template-columns: 1fr; }
}

/* ─── SPOLUPRÁCE — PDF kartička ─── */
.spoluprace { background: var(--surface); }
.pdf-card {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 32px;
  max-width: 980px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -35px rgba(16, 48, 96, 0.25);
}
.pdf-cover {
  position: relative;
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 18px 36px -18px rgba(16, 48, 96, 0.45);
  transition: transform .2s ease, box-shadow .2s ease;
  aspect-ratio: 894 / 1264;
  background: var(--surface);
}
.pdf-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pdf-cover:hover { transform: translateY(-4px); box-shadow: 0 28px 50px -22px rgba(16, 48, 96, 0.5); }
.pdf-cover-badge {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(12, 29, 58, 0.88);
  color: #fff;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: 3px;
  letter-spacing: 0.04em;
}
.pdf-body { text-align: left; }
.pdf-body h3 {
  font-size: 24px; font-weight: 700; margin: 0 0 8px;
  letter-spacing: -0.015em; color: var(--fg);
}
.pdf-sub {
  font-size: 14.5px; color: var(--muted);
  margin: 0 0 22px;
  line-height: 1.5;
}
.pdf-bullets {
  list-style: none; padding: 0; margin: 0 0 24px;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px; color: var(--fg);
}
.pdf-bullets li {
  padding-left: 22px; position: relative;
  line-height: 1.5;
}
.pdf-bullets li::before {
  content: '✓';
  position: absolute; left: 0; top: 0;
  color: var(--accent);
  font-weight: 700;
}
.pdf-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
}

@media (max-width: 860px) {
  .pdf-card { grid-template-columns: 1fr; gap: 28px; padding: 24px; }
  .pdf-cover { max-width: 240px; margin: 0 auto; }
  .pdf-body { text-align: center; }
  .pdf-bullets { text-align: left; }
  .pdf-actions { justify-content: center; }
}

/* ─── HOME — všechny texty vystředěné ─── */
.home-centered { text-align: center; }
.home-centered .section-head,
.home-centered .section-lead,
.home-centered .coverage-lead,
.home-centered .dragon-left p,
.home-centered .form-cta-copy p { margin-left: auto; margin-right: auto; }
.home-centered .section-head { max-width: 880px; }
.home-centered .section-head .brand-rule,
.home-centered .section-head .brand-rule-sm,
.home-centered .coverage .brand-rule,
.home-centered .coverage .brand-rule-sm,
.home-centered .dragon-left .brand-rule,
.home-centered .dragon-left .brand-rule-sm,
.home-centered .form-cta-copy .brand-rule,
.home-centered .form-cta-copy .brand-rule-sm { margin-left: auto; margin-right: auto; }

/* karty: vystředit obsah */
.home-centered .card { text-align: center; }
.home-centered .card-num { margin-left: auto; margin-right: auto; }
.home-centered .card-link { display: inline-block; }

/* coverage: hlavička i seznam na střed; mřížka 3-sloupcová bez ozdobné odrážky vlevo */
.home-centered .coverage-inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
.home-centered .coverage-inner > div:first-child { max-width: 720px; }
.home-centered .coverage-list { max-width: 960px; width: 100%; }
.home-centered .coverage-list li { padding-left: 0; text-align: center; }
.home-centered .coverage-list li::before { display: none; }

/* dragon: zarovnání na střed + karty pod sebou na střed */
.home-centered .dragon-inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
.home-centered .dragon-left { max-width: 720px; }
.home-centered .dragon-right { width: 100%; max-width: 720px; }
.home-centered .dragon-card { text-align: center; align-items: center; }
.home-centered .dragon-card-head { justify-content: center; gap: 12px; }
.home-centered .dragon-card ul { align-items: center; }
.home-centered .dragon-card ul li::before { content: ''; }

/* reference: vystředit obsah karet */
.home-centered .ref { text-align: center; align-items: center; }
.home-centered .ref-head { justify-content: center; gap: 14px; flex-wrap: wrap; }
.home-centered .ref-name { text-align: center; }
.home-centered .ref-metrics { width: 100%; }

/* form-cta: copy nahoře vystředěný, formulář pod tím vystředěný */
.home-centered .form-cta-inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
.home-centered .form-cta-copy { max-width: 720px; }
.home-centered .form-card { width: 100%; max-width: 640px; text-align: left; }
.home-centered .form-bullets { display: inline-flex; text-align: left; }

/* form bullets — vycentrovat sloupec, ale ponechat odsazení a check */
.home-centered .form-bullets { margin-left: auto; margin-right: auto; }

/* Reveal-on-scroll utility (progressive enhancement) */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
