/* ══════════════════════════════════════════════════════
   ELBIT s.r.o. — světlý redesign „Poctivá firma, moderně"
   ══════════════════════════════════════════════════════ */

:root {
  --bg: #ffffff;
  --bg-alt: #f4f6f9;
  --ink: #10203a;
  --muted: #5b6b80;
  --blue: #1a6df0;
  --blue-dark: #0f56c9;
  --blue-soft: #e8f0fe;
  --amber: #f5a524;
  --navy: #0b1830;
  --line: #e5eaf1;
  --font-display: "Bricolage Grotesque", sans-serif;
  --font-body: "Archivo", sans-serif;
  --radius: 18px;
  --shadow: 0 14px 40px -18px rgba(16, 32, 58, 0.18);
  --shadow-lg: 0 24px 60px -24px rgba(16, 32, 58, 0.26);
  --nav-h: 82px;
  --pad: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--blue); color: #fff; }

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }

/* ── typografie ─────────────────────────────────────── */

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.12; letter-spacing: -0.01em; }

.h-hero { font-size: clamp(2.2rem, 4.6vw, 3.7rem); }
.h-section { font-size: clamp(1.7rem, 3.2vw, 2.5rem); }

.overline {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.overline::before {
  content: "";
  width: 26px; height: 2px;
  border-radius: 2px;
  background: var(--amber);
}

.lead { color: var(--muted); font-size: clamp(1rem, 1.3vw, 1.15rem); max-width: 56ch; }
.accent { color: var(--blue); }

/* ── layout ─────────────────────────────────────────── */

.wrap { max-width: 1240px; margin: 0 auto; padding-inline: var(--pad); }
section { position: relative; }
.section-pad { padding-block: clamp(70px, 10vh, 120px); }
.section-head { display: flex; flex-direction: column; gap: 14px; margin-bottom: clamp(34px, 5vh, 56px); }
.section-head.split { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 32px; flex-wrap: wrap; }
.section-head .h-section { max-width: 22ch; }

/* ── nav ────────────────────────────────────────────── */

.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 110;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: 0 8px 30px -20px rgba(16, 32, 58, 0.18); }
.nav-inner {
  width: 100%;
  max-width: 1240px; margin: 0 auto; padding-inline: var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  display: flex; align-items: center; gap: 8px;
}
.logo .bolt {
  width: 36px; height: 36px;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 6px 16px -6px rgba(26, 109, 240, 0.55);
}
.logo small { font-family: var(--font-body); font-size: 0.62rem; font-weight: 500; color: var(--muted); align-self: flex-end; margin-bottom: 4px; letter-spacing: 0.12em; }

.nav-links { display: flex; gap: 30px; align-items: center; }
.nav-links a {
  font-size: 0.92rem; font-weight: 600;
  color: var(--muted);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  border-radius: 2px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.7, 0, 0.2, 1);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }

/* ── tlačítka ───────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 999px;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
}
.btn.solid {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 26px -12px rgba(26, 109, 240, 0.65);
}
.btn.solid:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 16px 32px -12px rgba(26, 109, 240, 0.7); }
.btn.ghost { border: 1.5px solid var(--line); color: var(--ink); background: #fff; }
.btn.ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn.white { background: #fff; color: var(--navy); }
.btn.white:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(0, 0, 0, 0.5); }
.nav-cta .btn { padding: 11px 22px; font-size: 0.88rem; }

/* burger */
.burger { display: none; z-index: 130; width: 44px; height: 44px; position: relative; }
.burger span {
  position: absolute; left: 10px; right: 10px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s, top 0.3s;
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
.burger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* mobilní menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--pad);
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s;
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 7.5vw, 2.6rem);
  font-weight: 700;
  padding: 12px 0;
  display: flex; align-items: baseline; gap: 16px;
  transform: translateY(24px); opacity: 0;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.45s, color 0.25s;
}
.mobile-menu.open a { transform: translateY(0); opacity: 1; }
.mobile-menu a:nth-child(2) { transition-delay: 0.05s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.1s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.15s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: var(--blue); }
.mobile-menu a i { font-style: normal; font-size: 0.8rem; color: var(--amber); font-weight: 600; }
.mobile-menu .menu-phone { margin-top: 34px; font-size: 1.15rem; color: var(--blue); font-weight: 700; }

/* ── hero ───────────────────────────────────────────── */

.hero {
  padding-top: calc(var(--nav-h) + clamp(36px, 7vh, 80px));
  padding-bottom: clamp(50px, 8vh, 90px);
  overflow: hidden;
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(26, 109, 240, 0.07), transparent 60%),
    radial-gradient(40% 60% at 0% 100%, rgba(245, 165, 36, 0.06), transparent 60%),
    var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.hero h1 { margin-block: 18px 20px; }
.hero .lead { margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 34px; }
.hero-trust {
  display: flex; gap: 26px; flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}
.hero-trust b { color: var(--ink); font-weight: 700; display: block; font-size: 1rem; }

.hero-visual { position: relative; }
.hero-photo {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.6;
  will-change: transform;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.float-card {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 12px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.85rem; font-weight: 600;
  animation: floaty 5s ease-in-out infinite;
}
.float-card .dot {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.float-card .dot svg { width: 18px; height: 18px; }
.float-card small { display: block; font-weight: 500; color: var(--muted); font-size: 0.72rem; }
.float-card.fc-cert { top: 26px; left: -34px; }
.float-card.fc-cert .dot { background: var(--blue-soft); color: var(--blue); }
.float-card.fc-nonstop { bottom: 40px; right: -26px; animation-delay: 1.6s; }
.float-card.fc-nonstop .dot { background: #fdf1dc; color: var(--amber); }
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ── pás důvěry ─────────────────────────────────────── */

.trustbar { background: var(--bg-alt); border-block: 1px solid var(--line); }
.trustbar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding-block: 22px;
}
.trust-item { display: flex; align-items: center; gap: 12px; font-size: 0.9rem; color: var(--muted); }
.trust-item svg { width: 22px; height: 22px; color: var(--blue); flex-shrink: 0; }
.trust-item b { color: var(--ink); display: block; font-size: 0.95rem; }

/* ── služby — foto karty ────────────────────────────── */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s, border-color 0.3s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card-img { aspect-ratio: 16 / 10; overflow: hidden; }
.card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.card:hover .card-img img { transform: scale(1.06); }
.card-body { padding: clamp(20px, 2vw, 28px); display: flex; flex-direction: column; gap: 10px; flex: 1; }
.card-body h3 { font-size: 1.15rem; }
.card-body p { color: var(--muted); font-size: 0.92rem; flex: 1; }
.card-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.9rem;
  color: var(--blue);
  margin-top: 6px;
}
.card-link i { font-style: normal; transition: transform 0.25s; }
.card:hover .card-link i { transform: translateX(5px); }

/* ── jak to probíhá ─────────────────────────────────── */

.steps-sec { background: var(--bg-alt); border-block: 1px solid var(--line); }
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.5vw, 34px);
  position: relative;
}
.steps::before {
  content: "";
  position: absolute; top: 27px; left: 6%; right: 6%;
  height: 2px;
  background: var(--line);
  z-index: 0;
}
.steps .progress {
  position: absolute; top: 27px; left: 6%;
  height: 2px; width: 0;
  background: var(--blue);
  z-index: 1;
  transition: width 0.2s linear;
  max-width: 88%;
}
.step { position: relative; z-index: 2; }
.step .num {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700; font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 16px;
  transition: border-color 0.3s, color 0.3s, box-shadow 0.3s, background 0.3s;
}
.step.done .num {
  border-color: var(--blue);
  color: #fff;
  background: var(--blue);
  box-shadow: 0 10px 22px -10px rgba(26, 109, 240, 0.6);
}
.step h3 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: 0.88rem; }

/* ── proč elbit ─────────────────────────────────────── */

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.why-photo {
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
  position: relative;
}
.why-photo img { width: 100%; height: 100%; object-fit: cover; }
.why-photo .exp-badge {
  position: absolute; left: 20px; bottom: 20px;
  background: #fff;
  border-radius: 14px;
  box-shadow: var(--shadow);
  padding: 14px 20px;
  font-weight: 700;
  display: flex; align-items: center; gap: 12px;
}
.why-photo .exp-badge .n { font-family: var(--font-display); font-size: 1.6rem; color: var(--blue); line-height: 1; }
.why-photo .exp-badge small { font-weight: 500; color: var(--muted); font-size: 0.78rem; line-height: 1.3; }
.checks { display: flex; flex-direction: column; gap: 20px; margin-top: 28px; }
.check { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; }
.check .ico {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.check .ico svg { width: 20px; height: 20px; }
.check h3 { font-size: 1.02rem; margin-bottom: 4px; }
.check p { color: var(--muted); font-size: 0.92rem; }

/* ── čísla ──────────────────────────────────────────── */

.numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  text-align: center;
}
.number .val {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  color: var(--blue);
  line-height: 1.1;
  display: flex; align-items: baseline; justify-content: center; gap: 4px;
}
.number .val .suffix { font-size: 0.5em; color: var(--amber); }
.number .val.txt { font-size: clamp(1.25rem, 2vw, 1.8rem); padding-block: 10px; }
.number p { color: var(--muted); font-size: 0.88rem; margin-top: 6px; }

/* ── interaktivní průvodce ──────────────────────────── */

.quiz {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: var(--shadow);
  padding: clamp(24px, 3.4vw, 46px);
  max-width: 940px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.quiz::before {
  content: "";
  position: absolute; inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--amber));
}
.quiz-top {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: clamp(22px, 3.2vh, 36px);
}
.quiz-steps { display: flex; gap: 8px; }
.qs {
  width: 40px; height: 5px; border-radius: 999px;
  background: var(--line);
  transition: background 0.35s;
}
.qs.active { background: var(--blue); }
.qs.done { background: var(--amber); }
.quiz-back, .quiz-restart {
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.9rem; color: var(--muted);
  display: inline-flex; align-items: center; gap: 6px;
  transition: color 0.25s;
}
.quiz-back:hover, .quiz-restart:hover { color: var(--ink); }
.quiz-back[hidden] { display: none; }
.quiz-step[hidden] { display: none; }

.quiz-q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  margin-bottom: clamp(18px, 2.8vh, 28px);
}
.quiz-opts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quiz-opts.opts-4 { grid-template-columns: repeat(4, 1fr); }
.quiz-opt {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 18px;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  background: #fff;
  font-family: var(--font-body);
  font-weight: 600; font-size: 0.98rem;
  color: var(--ink);
  text-align: left;
  transition: border-color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.quiz-opt:hover {
  border-color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.qo-ico {
  width: 42px; height: 42px; border-radius: 12px;
  background: var(--blue-soft); color: var(--blue);
  display: grid; place-items: center; flex-shrink: 0;
  transition: background 0.2s, color 0.2s;
}
.qo-ico svg { width: 21px; height: 21px; }
.quiz-opt:hover .qo-ico { background: var(--blue); color: #fff; }

.quiz-result { animation: none; }
.qr-badge {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); background: var(--blue-soft);
  padding: 7px 15px; border-radius: 999px; margin-bottom: 18px;
}
.qr-title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 12px; }
.qr-desc { color: var(--muted); max-width: 62ch; margin-bottom: 18px; }
.qr-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 28px; }
.qr-tags span {
  font-size: 0.78rem; font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--bg-alt);
  border: 1px solid var(--line);
  color: var(--ink);
}
.qr-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.qr-detail[hidden] { display: none; }

/* ── reference ──────────────────────────────────────── */

.refs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
}
.ref {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 32px);
  display: flex; flex-direction: column; gap: 16px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.ref:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ref .stars { color: var(--amber); letter-spacing: 3px; font-size: 0.9rem; }
.ref blockquote { line-height: 1.7; font-size: 0.96rem; flex: 1; color: var(--ink); }
.ref figcaption {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.82rem; font-weight: 600; color: var(--muted);
  border-top: 1px solid var(--line);
  padding-top: 16px;
}
.ref .ava {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  font-size: 0.75rem; font-weight: 700;
  flex-shrink: 0;
}

/* ── CTA pás ────────────────────────────────────────── */

.cta-band {
  background:
    radial-gradient(75% 130% at 88% 0%, rgba(26, 109, 240, 0.34), transparent 58%),
    var(--navy);
  border-radius: calc(var(--radius) + 10px);
  color: #fff;
  padding: clamp(40px, 6.5vh, 76px) clamp(24px, 4vw, 68px);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  overflow: hidden;
  position: relative;
}
/* vzor plošného spoje (elektro téma) */
.cta-band::before {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' fill='none' stroke='%234f7fd6' stroke-width='1.2'%3E%3Cpath d='M0 24H36V60H72V96H120'/%3E%3Cpath d='M24 0V42H60V78H96V120'/%3E%3Cpath d='M120 40H84V72'/%3E%3Ccircle cx='36' cy='60' r='3.5' fill='%234f7fd6' stroke='none'/%3E%3Ccircle cx='60' cy='42' r='3.5' fill='%234f7fd6' stroke='none'/%3E%3Ccircle cx='72' cy='96' r='3.5' fill='%234f7fd6' stroke='none'/%3E%3Ccircle cx='84' cy='72' r='3.5' fill='%234f7fd6' stroke='none'/%3E%3C/svg%3E");
  background-size: 150px;
  opacity: 0.18;
  -webkit-mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
  mask-image: linear-gradient(120deg, transparent 30%, #000 100%);
  pointer-events: none;
}
.cta-main { position: relative; z-index: 1; }
.cta-band h2 { font-size: clamp(1.6rem, 3.2vw, 2.5rem); margin-block: 6px 12px; }
.cta-band p { color: rgba(255, 255, 255, 0.75); max-width: 46ch; margin-bottom: 24px; }

.cta-live {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 0.82rem; font-weight: 600;
  padding: 8px 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 18px;
}
.cta-live .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #3ddc84;
  box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.6);
  animation: livePulse 2.2s infinite;
}
@keyframes livePulse {
  0% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0.55); }
  70% { box-shadow: 0 0 0 11px rgba(61, 220, 132, 0); }
  100% { box-shadow: 0 0 0 0 rgba(61, 220, 132, 0); }
}

/* kontaktní kartička uvnitř panelu */
.cta-side {
  position: relative; z-index: 1;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  padding: clamp(24px, 2.6vw, 34px);
  text-align: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.cta-side-label {
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.cta-band .cta-phone {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  color: #fff;
  display: block;
  margin: 8px 0 16px;
  transition: color 0.25s;
}
.cta-band .cta-phone:hover { color: var(--amber); }
.cta-copy {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 9px 17px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.cta-copy:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.4); }
.cta-copy.copied { color: #3ddc84; border-color: rgba(61, 220, 132, 0.5); }
.cta-copy svg { width: 15px; height: 15px; }
.cta-sub { margin-top: 16px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.55); }

.btn.ghost-light { border: 1.5px solid rgba(255, 255, 255, 0.32); color: #fff; background: transparent; }
.btn.ghost-light:hover { background: #fff; color: var(--navy); border-color: #fff; transform: translateY(-2px); }

/* ── footer ─────────────────────────────────────────── */

footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.75);
  margin-top: clamp(70px, 10vh, 120px);
  padding: clamp(44px, 6vh, 70px) 0 28px;
}
footer .logo { color: #fff; }
footer .logo small { color: rgba(255, 255, 255, 0.5); }
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.foot-grid h4 {
  font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 16px;
  font-weight: 600;
}
.foot-grid ul { display: flex; flex-direction: column; gap: 10px; }
.foot-grid a { color: rgba(255, 255, 255, 0.85); font-size: 0.95rem; transition: color 0.25s; }
.foot-grid a:hover { color: var(--amber); }
.foot-desc { font-size: 0.92rem; max-width: 40ch; margin-top: 14px; color: rgba(255, 255, 255, 0.55); }
.foot-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ── podstránky ─────────────────────────────────────── */

.page-hero {
  padding-top: calc(var(--nav-h) + clamp(40px, 7vh, 80px));
  padding-bottom: clamp(36px, 6vh, 64px);
  background:
    radial-gradient(60% 90% at 100% 0%, rgba(26, 109, 240, 0.07), transparent 60%),
    var(--bg);
}
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); margin-block: 16px 18px; }

/* služby detail */
.svc-rows { display: flex; flex-direction: column; gap: clamp(18px, 2.5vh, 28px); }
.svc-row {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(24px, 3vw, 48px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.svc-row:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.svc-row .photo { overflow: hidden; }
.svc-row .photo img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.svc-row .body { padding: clamp(24px, 3vh, 38px) clamp(24px, 3vw, 40px) clamp(24px, 3vh, 38px) 0; }
.svc-row h2 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); margin-bottom: 12px; display: flex; align-items: center; gap: 12px; }
.svc-row h2 .badge {
  font-family: var(--font-body);
  font-size: 0.72rem; font-weight: 700;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 5px 12px;
  border-radius: 999px;
}
.svc-row .body p { color: var(--muted); margin-bottom: 12px; font-size: 0.95rem; }
.svc-row .tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 6px; }
.svc-row .tags span {
  font-size: 0.76rem; font-weight: 600;
  padding: 6px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--bg-alt);
}

.cert-note {
  margin-top: clamp(28px, 4vh, 44px);
  border: 1px solid rgba(245, 165, 36, 0.4);
  background: #fdf6e8;
  padding: clamp(22px, 3vw, 36px);
  display: flex; gap: 20px; align-items: center; flex-wrap: wrap;
  border-radius: var(--radius);
}
.cert-note .ico { width: 42px; height: 42px; color: var(--amber); flex-shrink: 0; }
.cert-note h3 { font-size: 1.05rem; margin-bottom: 4px; }
.cert-note p { color: var(--muted); font-size: 0.92rem; }

/* kariéra */
.jobs { display: flex; flex-direction: column; gap: clamp(16px, 2vh, 24px); }
.job {
  padding: clamp(24px, 3vh, 36px) clamp(24px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
.job:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.job h3 { font-size: clamp(1.15rem, 2vw, 1.45rem); margin-bottom: 8px; }
.job p { color: var(--muted); font-size: 0.94rem; max-width: 60ch; }
.job .tags { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 12px; }
.job .tags span {
  font-size: 0.74rem; font-weight: 600;
  padding: 5px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--bg-alt);
}

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin-top: clamp(28px, 4vh, 44px);
}
.benefit {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(22px, 2.4vw, 30px);
}
.benefit .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.benefit .ico svg { width: 22px; height: 22px; }
.benefit h3 { font-size: 1rem; margin-bottom: 6px; }
.benefit p { color: var(--muted); font-size: 0.88rem; }

/* kontakt */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 26px;
  display: flex; flex-direction: column; gap: 4px;
  transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s;
}
a.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-item .k { font-size: 0.76rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); }
.contact-item .v { font-family: var(--font-display); font-weight: 700; font-size: clamp(1.2rem, 2.2vw, 1.6rem); }
.contact-item .sub { color: var(--muted); font-size: 0.88rem; }

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3.2;
  box-shadow: var(--shadow);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ── plovoucí telefon (mobil) ───────────────────────── */

.call-fab {
  position: fixed;
  right: 18px; bottom: 18px;
  z-index: 90;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(26, 109, 240, 0.6);
}
.call-fab svg { width: 24px; height: 24px; }

/* ── reveal defaults ────────────────────────────────── */

[data-reveal] { opacity: 0; }
.no-motion [data-reveal] { opacity: 1 !important; transform: none !important; }

/* ── responsive ─────────────────────────────────────── */

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 560px; }
  .float-card.fc-cert { left: 14px; }
  .float-card.fc-nonstop { right: 14px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .steps::before, .steps .progress { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .why-photo { max-width: 560px; }
  .numbers { grid-template-columns: repeat(2, 1fr); gap: 34px; }
  .refs { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 1fr; }
  .svc-row .photo img { max-height: 260px; }
  .svc-row .body { padding: clamp(22px, 3vh, 34px) clamp(24px, 3vw, 40px); }
  .benefits { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .quiz-opts { grid-template-columns: repeat(2, 1fr); }
  .quiz-opts.opts-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .burger { display: block; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .job { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 28px; }
  .call-fab { display: flex; }
  .numbers { text-align: left; }
  .number .val { justify-content: flex-start; }
  .quiz-opts, .quiz-opts.opts-4 { grid-template-columns: 1fr; }
  .qr-actions .btn { width: 100%; }
}

/* ── reduced motion ─────────────────────────────────── */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
