@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --bg: #0f1115;
  --bg-panel: #151920;
  --bg-panel-2: #1b2028;
  --accent: #4a7fc2;
  --accent-dark: #3a68a8;
  --hero-accent: #c9a86a;
  --text: #ffffff;
  --dim: rgba(255, 255, 255, .68);
  --dim2: rgba(255, 255, 255, .45);
  --border: rgba(255, 255, 255, .1);
  --radius-sm: 3px;
  --radius-md: 8px;
  --container: 1160px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', system-ui, sans-serif;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: #6b98d1; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  transition: background .2s ease, transform .15s ease;
}
.btn:hover { background: var(--accent-dark); }
.btn-outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .3);
  color: #fff;
}
.btn-outline:hover { background: rgba(255, 255, 255, .08); }

.eyebrow {
  display: block;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--accent);
  margin-bottom: 10px;
}

.sec-title { font-size: 30px; margin: 0; font-weight: 800; }

.divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 20px auto 0;
}

.text-center { text-align: center; }

/* ---------- NAV ---------- */
#main-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(15, 17, 21, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 32px;
}

.nav-logo-link { display: flex; align-items: center; gap: 12px; }
.nav-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.nav-wordmark { font-weight: 800; letter-spacing: .08em; font-size: 14px; color: #fff; }

.nav-list {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-list a {
  color: var(--dim);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .02em;
}
.nav-list a:hover, .nav-list a.active { color: #fff; }
.nav-list a.nav-highlight {
  background: var(--accent);
  color: #fff;
  padding: 7px 14px;
  border-radius: 30px;
  font-weight: 800;
}
.nav-list a.nav-highlight:hover { background: var(--accent-dark); color: #fff; }
@media screen and (min-width: 861px) {
  .nav-list { margin-left: auto; }
  .nav-list .nav-cta { margin-left: 8px; }
}

#burger {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 22px;
  cursor: pointer;
}

@media screen and (max-width: 860px) {
  #burger { display: block; order: 3; }
  .nav-list {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-panel);
    padding: 20px 32px;
    gap: 16px;
    display: none;
    border-bottom: 1px solid var(--border);
  }
  .nav-list.open { display: flex; }
}

/* ---------- HERO (per option 1a) ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(-45deg, rgba(255,255,255,.045) 0 5px, transparent 5px 30px),
    linear-gradient(180deg, rgba(6, 7, 9, .55), rgba(6, 7, 9, .92));
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding: 0 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero-content .eyebrow { color: var(--hero-accent); text-shadow: 0 2px 10px rgba(0,0,0,.5); }
.hero-content h1 { font-size: 48px; line-height: 1.1; margin: 0; font-weight: 800; text-shadow: 0 3px 18px rgba(0,0,0,.6); }
.hero-content p { margin: 0; font-size: 15px; color: rgba(255, 255, 255, .92); max-width: 480px; text-shadow: 0 2px 10px rgba(0,0,0,.55); }
.hero-content .btn { background: var(--hero-accent); color: #14171c; }
.hero-content .btn:hover { background: #d8bc80; }
.hero-actions { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; }
.hero-insta {
  background: rgba(6, 7, 9, .45);
  border-color: rgba(255, 255, 255, .35);
  color: #fff;
  backdrop-filter: blur(4px);
  text-shadow: none;
}
.hero-insta::before { content: ""; width: 16px; height: 16px; margin-right: 8px; flex-shrink: 0; background: currentColor; -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2.2c3.2 0 3.6 0 4.9.1 1.2.1 1.8.2 2.2.4.6.2 1 .5 1.4.9.4.4.7.8.9 1.4.2.4.4 1 .4 2.2.1 1.3.1 1.7.1 4.9s0 3.6-.1 4.9c-.1 1.2-.2 1.8-.4 2.2-.2.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.2-1 .4-2.2.4-1.3.1-1.7.1-4.9.1s-3.6 0-4.9-.1c-1.2-.1-1.8-.2-2.2-.4-.6-.2-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.2-.4-.4-1-.4-2.2-.1-1.3-.1-1.7-.1-4.9s0-3.6.1-4.9c.1-1.2.2-1.8.4-2.2.2-.6.5-1 .9-1.4.4-.4.8-.7 1.4-.9.4-.2 1-.4 2.2-.4 1.3-.1 1.7-.1 4.9-.1zm0 2c-3.1 0-3.5 0-4.8.1-1.1.1-1.4.2-1.7.3-.4.2-.7.3-1 .6-.3.3-.5.6-.6 1-.1.3-.3.6-.3 1.7-.1 1.3-.1 1.7-.1 4.8s0 3.5.1 4.8c.1 1.1.2 1.4.3 1.7.2.4.3.7.6 1 .3.3.6.5 1 .6.3.1.6.3 1.7.3 1.3.1 1.7.1 4.8.1s3.5 0 4.8-.1c1.1-.1 1.4-.2 1.7-.3.4-.2.7-.3 1-.6.3-.3.5-.6.6-1 .1-.3.3-.6.3-1.7.1-1.3.1-1.7.1-4.8s0-3.5-.1-4.8c-.1-1.1-.2-1.4-.3-1.7-.2-.4-.3-.7-.6-1-.3-.3-.6-.5-1-.6-.3-.1-.6-.3-1.7-.3-1.3-.1-1.7-.1-4.8-.1zm0 3.4a5.1 5.1 0 110 10.2 5.1 5.1 0 010-10.2zm0 2a3.1 3.1 0 100 6.2 3.1 3.1 0 000-6.2zm5.3-3.5a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z"/></svg>') center / contain no-repeat; mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M12 2.2c3.2 0 3.6 0 4.9.1 1.2.1 1.8.2 2.2.4.6.2 1 .5 1.4.9.4.4.7.8.9 1.4.2.4.4 1 .4 2.2.1 1.3.1 1.7.1 4.9s0 3.6-.1 4.9c-.1 1.2-.2 1.8-.4 2.2-.2.6-.5 1-.9 1.4-.4.4-.8.7-1.4.9-.4.2-1 .4-2.2.4-1.3.1-1.7.1-4.9.1s-3.6 0-4.9-.1c-1.2-.1-1.8-.2-2.2-.4-.6-.2-1-.5-1.4-.9-.4-.4-.7-.8-.9-1.4-.2-.4-.4-1-.4-2.2-.1-1.3-.1-1.7-.1-4.9s0-3.6.1-4.9c.1-1.2.2-1.8.4-2.2.2-.6.5-1 .9-1.4.4-.4.8-.7 1.4-.9.4-.2 1-.4 2.2-.4 1.3-.1 1.7-.1 4.9-.1zm0 2c-3.1 0-3.5 0-4.8.1-1.1.1-1.4.2-1.7.3-.4.2-.7.3-1 .6-.3.3-.5.6-.6 1-.1.3-.3.6-.3 1.7-.1 1.3-.1 1.7-.1 4.8s0 3.5.1 4.8c.1 1.1.2 1.4.3 1.7.2.4.3.7.6 1 .3.3.6.5 1 .6.3.1.6.3 1.7.3 1.3.1 1.7.1 4.8.1s3.5 0 4.8-.1c1.1-.1 1.4-.2 1.7-.3.4-.2.7-.3 1-.6.3-.3.5-.6.6-1 .1-.3.3-.6.3-1.7.1-1.3.1-1.7.1-4.8s0-3.5-.1-4.8c-.1-1.1-.2-1.4-.3-1.7-.2-.4-.3-.7-.6-1-.3-.3-.6-.5-1-.6-.3-.1-.6-.3-1.7-.3-1.3-.1-1.7-.1-4.8-.1zm0 3.4a5.1 5.1 0 110 10.2 5.1 5.1 0 010-10.2zm0 2a3.1 3.1 0 100 6.2 3.1 3.1 0 000-6.2zm5.3-3.5a1.2 1.2 0 110 2.4 1.2 1.2 0 010-2.4z"/></svg>') center / contain no-repeat; }
.hero-insta:hover { background: rgba(6, 7, 9, .65); color: #fff; border-color: rgba(255, 255, 255, .6); }

@media screen and (max-width: 640px) {
  .hero-content h1 { font-size: 32px; }
}

/* ---------- SECTIONS ---------- */
section.panel { padding: 96px 0; }
section.panel.alt { background: var(--bg-panel); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-grid img { border-radius: var(--radius-md); width: 100%; height: 380px; object-fit: cover; }
.about-grid h2 { margin: 4px 0 16px; font-size: 28px; }
.about-grid p { color: var(--dim); font-size: 14.5px; line-height: 1.7; margin: 0 0 14px; }

@media screen and (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-grid img { height: 260px; }
}

/* Services */
.svc-head { text-align: center; margin-bottom: 40px; }
.svc-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.svc-card {
  flex: 0 1 320px;
  box-sizing: border-box;
  background: var(--bg-panel-2);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}
section.panel.alt .svc-card { background: var(--bg); }
.svc-card h3 { margin: 0 0 10px; font-size: 16px; min-height: 40px; }
.svc-card p { margin: 0 0 14px; font-size: 13px; line-height: 1.6; color: var(--dim); flex: 1 0 auto; }
.svc-card ul { list-style: none; margin: 0 0 16px; padding: 0; display: flex; flex-direction: column; gap: 6px; min-height: 24px; }
.svc-card li { font-size: 12.5px; color: var(--dim); }
.svc-card li::before { content: "✓"; color: var(--accent); font-weight: 800; margin-right: 7px; }
.svc-card .btn { width: 100%; text-align: center; padding: 11px 20px; font-size: 12px; margin-top: auto; }

@media screen and (max-width: 960px) {
  .svc-card { flex-basis: 45%; }
}
@media screen and (max-width: 560px) {
  .svc-card { flex-basis: 100%; }
}

/* Gallery slider */
.gallery-slider { position: relative; display: flex; align-items: center; gap: 12px; }
.gallery-track { display: flex; gap: 12px; overflow-x: auto; scroll-behavior: smooth; scroll-snap-type: x mandatory; padding-bottom: 4px; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img { flex: 0 0 220px; width: 220px; height: 160px; object-fit: cover; border-radius: 6px; scroll-snap-align: start; }
.gallery-arrow {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg-panel-2);
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.gallery-arrow:hover { background: var(--accent); border-color: var(--accent); }

@media screen and (max-width: 520px) {
  .gallery-track img { flex: 0 0 220px; width: 220px; height: 160px; }
}

.gallery-video {
  flex: 0 0 320px;
  width: 320px;
  height: 180px;
  border-radius: 6px;
  overflow: hidden;
  scroll-snap-align: start;
  background: #000;
}
.gallery-video iframe { width: 100%; height: 100%; border: none; display: block; }

.showcase-video {
  max-width: 720px;
  margin: 32px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.showcase-video iframe { width: 100%; height: 100%; border: none; display: block; }

/* Video carousel */
.video-carousel { display: flex; align-items: center; justify-content: center; gap: 16px; max-width: 560px; margin: 32px auto 0; }
.video-stage { position: relative; flex: 0 1 380px; aspect-ratio: 9 / 16; max-height: 76vh; border-radius: var(--radius-md); overflow: hidden; background: #000; border: 1px solid var(--border); }
.video-slide { position: absolute; inset: 0; opacity: 0; transform: translateX(60px) scale(.88); transition: transform .5s cubic-bezier(.22,.9,.3,1), opacity .5s ease; pointer-events: none; }
.video-slide.active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.video-slide.exit-left { opacity: 0; transform: translateX(-60px) scale(.88); }
.video-slide.exit-right { opacity: 0; transform: translateX(60px) scale(.88); }
.video-slide.enter-left { transition: none; opacity: 0; transform: translateX(-60px) scale(.88); }
.video-slide.enter-right { transition: none; opacity: 0; transform: translateX(60px) scale(.88); }
.video-slide iframe { width: 100%; height: 100%; border: none; display: block; }
.video-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.video-dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--border); transition: background .25s ease, transform .25s ease; }
.video-dots i.active { background: var(--accent); transform: scale(1.3); }
@media screen and (max-width: 640px) {
  .video-carousel { gap: 8px; max-width: 100%; }
  .video-stage { flex: 0 1 300px; max-height: 70vh; }
}

.contact-person {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.contact-person img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
}
.contact-person .placeholder-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-person .placeholder-avatar svg { width: 40px; height: 40px; color: var(--dim); }
.contact-person .name { font-size: 15px; font-weight: 700; }
.contact-person .role { font-size: 12.5px; color: var(--dim); }

@media screen and (max-width: 520px) {
  .gallery-video { flex: 0 0 260px; width: 260px; height: 150px; }
}

.insta-note {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
}
.insta-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 30px;
  padding: 9px 20px;
}
.insta-pill:hover { background: rgba(74, 127, 194, .12); color: var(--accent); }
.contact-legal { font-size: 12px; color: var(--dim); margin: 14px 0 0; }
.footer-legal { font-size: 11.5px; opacity: .75; }

/* Reviews – masonry collage */
.reviews-head { text-align: center; margin-bottom: 12px; }
.reviews-head p { color: var(--dim); font-size: 14px; margin: 8px 0 28px; }
.reviews-masonry {
  column-count: 3;
  column-gap: 18px;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-bottom: 18px;
  break-inside: avoid;
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
}
.review-card.hidden-review { display: none; }
.review-card .stars { color: var(--hero-accent); font-size: 13px; letter-spacing: 2px; margin-bottom: 8px; }
.review-card .name { font-size: 13px; font-weight: 700; margin-bottom: 8px; }
.review-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--dim);
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.review-card.expanded p { -webkit-line-clamp: unset; display: block; overflow: visible; }
.review-more {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.reviews-cta { text-align: center; margin-top: 8px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.reviews-toggle {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.reviews-toggle:hover { color: #6b98d1; }

@media screen and (max-width: 860px) {
  .reviews-masonry { column-count: 2; }
}
@media screen and (max-width: 560px) {
  .reviews-masonry { column-count: 1; }
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info p { color: var(--dim); font-size: 14px; line-height: 1.7; margin: 0 0 20px; }
.contact-info .row { display: flex; align-items: center; gap: 10px; font-size: 13.5px; margin-bottom: 10px; }
.contact-info svg { flex-shrink: 0; }

.mockform, form.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form label {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--dim);
  margin-bottom: 6px;
  display: block;
}
.contact-form input[type="text"],
.contact-form input[type="tel"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  color: #fff;
  padding: 11px 13px;
  font-size: 13px;
  border-radius: var(--radius-sm);
  font-family: inherit;
}
.contact-form textarea { resize: vertical; }
.contact-form fieldset {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  margin: 0;
}
.contact-form fieldset legend {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--dim);
  padding: 0 4px;
}
.contact-form .checks { display: flex; flex-wrap: wrap; gap: 16px; font-size: 12.5px; color: var(--dim); }
.contact-form .checks label { display: flex; align-items: center; gap: 5px; white-space: nowrap; font-weight: 400; margin: 0; }
.contact-form input[type="checkbox"] { margin: 0; flex-shrink: 0; width: auto; }
.contact-form .consent {
  font-size: 11.5px;
  color: var(--dim);
  display: flex;
  gap: 5px;
  align-items: flex-start;
  font-weight: 400;
}
.contact-form button[type="submit"] { margin-top: 4px; }

@media screen and (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* Cookie banner – vycentrované okno uprostřed obrazovky (PC i mobil) */
.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .6);
  padding: 16px;
}
.cookie-banner.hidden { display: none; }
.cookie-content {
  width: 100%;
  max-width: 460px;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 18px;
}
.cookie-content p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--dim); }
.cookie-buttons { display: flex; gap: 10px; justify-content: center; }
.cookie-buttons button {
  flex: 1;
  max-width: 180px;
  padding: 11px 18px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
}
#cookie-accept { background: var(--accent); color: #fff; }
#cookie-decline { background: transparent; border: 1px solid rgba(255, 255, 255, .3); color: #fff; }

/* Formulář zablokovaný po odmítnutí cookies */
.contact-form.form-disabled > div,
.contact-form.form-disabled fieldset,
.contact-form.form-disabled .consent,
.contact-form.form-disabled button[type="submit"] { opacity: .4; pointer-events: none; }
.form-blocked-note {
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-size: 13px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.form-blocked-reset {
  align-self: flex-start;
  padding: 8px 16px;
  font-size: 12.5px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: inherit;
  background: var(--accent);
  color: #fff;
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--bg-panel);
  border-top: 1px solid var(--border);
  padding: 44px 24px 28px;
  text-align: center;
}
.footer .icons { display: flex; justify-content: center; gap: 20px; margin-bottom: 20px; }
.footer .icons svg { width: 22px; height: 22px; opacity: .8; transition: opacity .2s ease; }
.footer .icons a:hover svg { opacity: 1; }
.footer p { font-size: 12.5px; color: var(--dim2); margin: 0; }
.footer p a { color: var(--dim2); }
.footer p a:hover { color: #fff; }

/* ---------- FAQ (used on faq.html) ---------- */
.faq-page-header { padding: 64px 0 8px; text-align: center; }
.faq-list { max-width: 760px; margin: 0 auto; padding: 40px 24px 96px; display: flex; flex-direction: column; gap: 14px; }
.faq-card { background: var(--bg-panel-2); border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
.faq-question {
  margin: 0;
  padding: 20px 22px;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.faq-question .arrow { color: var(--accent); font-size: 12px; transition: transform .2s ease; }
.faq-question.open .arrow { transform: rotate(90deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease;
  font-size: 13.5px;
  color: var(--dim);
  line-height: 1.7;
  padding: 0 22px;
}
.faq-answer.show { max-height: 400px; padding: 0 22px 20px; }
.faq-cta { text-align: center; padding: 0 24px 90px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.faq-cta .icons { display: flex; gap: 18px; }
.faq-cta .icons svg { width: 26px; height: 26px; }

/* ---------- PRICING (used on cenik.html) ---------- */
.price-table { width: 100%; border-collapse: collapse; margin-top: 24px; }
.price-table th, .price-table td { padding: 14px 16px; text-align: left; font-size: 13px; border-bottom: 1px solid var(--border); vertical-align: top; }
.price-table th { color: var(--dim); font-weight: 700; font-size: 11.5px; letter-spacing: .04em; text-transform: uppercase; }
.price-table td { color: var(--dim); }
.price-table strong { color: #fff; }
.nowrap { white-space: nowrap; }

.highlight-box {
  background: var(--bg-panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-top: 28px;
}
.highlight-box h3 { margin: 0 0 12px; font-size: 17px; }
.highlight-box p { color: var(--dim); font-size: 13.5px; line-height: 1.7; margin: 0 0 10px; }

.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 24px; }
.compare-grid.two { grid-template-columns: repeat(2, 1fr); max-width: 540px; margin-left: auto; margin-right: auto; }
.compare-grid.two .compare-card { text-align: center; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; }
.compare-card { background: var(--bg-panel-2); border-radius: var(--radius-md); padding: 22px; border: 1px solid var(--border); }
.compare-card.highlight { border-color: var(--accent); }
.compare-card h4 { margin: 0 0 10px; font-size: 14.5px; }
.compare-card p { margin: 0; font-size: 12.5px; color: var(--dim); line-height: 1.6; }

@media screen and (max-width: 860px) {
  .compare-grid, .compare-grid.two { grid-template-columns: 1fr; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr { margin-bottom: 16px; border: 1px solid var(--border); border-radius: var(--radius-md); overflow: hidden; }
  .price-table td { border-bottom: none; padding: 10px 16px; }
  .price-table td::before { content: attr(data-label); display: block; font-weight: 700; color: #fff; font-size: 11px; margin-bottom: 4px; }
}

/* ---------- TERMS (GDPR.html) ---------- */
.terms { padding: 64px 0 96px; }
.terms h1 { font-size: 30px; margin: 0 0 28px; }
.terms h2, .terms h3 { color: #fff; margin: 28px 0 12px; }
.terms p, .terms li { color: var(--dim); font-size: 13.5px; line-height: 1.7; }
.terms ul { padding-left: 20px; }

/* ---------- CENÍK TABS ---------- */
.cenik-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.cenik-tab-btn {
  padding: 12px 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, .3);
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.cenik-tab-btn:hover { background: rgba(255, 255, 255, .08); }
.cenik-tab-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.cenik-tabpanel { display: none; }
.cenik-tabpanel.active { display: block; }

/* ---------- ANIMATIONS ----------
   Obsah je VŽDY viditelný. Skrytí pro scroll-animace se aktivuje jen tehdy,
   když skutečně běží JavaScript (script.js přidá na <html> třídu "js").
   Když se JS nenačte nebo spadne, web se zobrazí celý, jen bez animací. */
.reveal { transition: opacity .7s ease, transform .7s ease; }
html.js .reveal:not(.in-view) { opacity: 0; transform: translateY(28px); }
.stagger-item { transition: opacity .5s ease, transform .5s ease; }
html.js .reveal-stagger:not(.in-view) .stagger-item { opacity: 0; transform: translateY(20px); }
.stagger-item:nth-child(1) { transition-delay: .05s; }
.stagger-item:nth-child(2) { transition-delay: .12s; }
.stagger-item:nth-child(3) { transition-delay: .19s; }
.stagger-item:nth-child(4) { transition-delay: .26s; }
.stagger-item:nth-child(5) { transition-delay: .33s; }
.stagger-item:nth-child(6) { transition-delay: .4s; }
.stagger-item:nth-child(7) { transition-delay: .47s; }
.stagger-item:nth-child(8) { transition-delay: .54s; }
.stagger-item:nth-child(9) { transition-delay: .61s; }

.svc-card, .review-card, .gallery-track img, .compare-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.svc-card:hover { transform: translateY(-6px); box-shadow: 0 16px 32px rgba(0, 0, 0, .35); border-color: rgba(74, 127, 194, .4); }
.review-card:hover { transform: translateY(-4px); box-shadow: 0 12px 26px rgba(0, 0, 0, .3); }
.gallery-track img:hover { transform: scale(1.04); }
.compare-card:hover { transform: translateY(-4px); }

.btn { transition: background .2s ease, transform .15s ease; }
.btn:active { transform: scale(.96); }

.faq-answer { transition: max-height .35s ease, opacity .3s ease; opacity: 0; }
.faq-answer.show { opacity: 1; }

@keyframes heroFadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.hero-content > * { opacity: 0; animation: heroFadeUp .8s ease forwards; }
.hero-content .eyebrow { animation-delay: .05s; }
.hero-content h1 { animation-delay: .2s; }
.hero-content p { animation-delay: .35s; }
.hero-content .btn { animation-delay: .5s; }
.hero-content .hero-actions { animation-delay: .5s; }
.hero-actions > * { opacity: 1; animation: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger-item, .hero-content > * { opacity: 1; transform: none; animation: none; transition: none; }
}

/* ---------- RESPONSIVE REFINEMENTS (tablet & mobile) ---------- */
@media screen and (max-width: 1024px) {
  .container { padding: 0 20px; }
  section.panel { padding: 72px 0; }
  .sec-title { font-size: 26px; }
}

@media screen and (max-width: 860px) {
  #main-nav { padding: 12px 20px; }
  .nav-wordmark { font-size: 12.5px; }
  .nav-logo { width: 32px; height: 32px; }
  .hero { min-height: 78vh; }
  .hero-content h1 { font-size: 30px; }
  .hero-content p { font-size: 14px; }
  section.panel { padding: 60px 0; }
  .svc-head { margin-bottom: 28px; }
  .faq-page-header { padding: 48px 0 4px; }
  .faq-list { padding: 32px 20px 72px; }
  .compare-card { padding: 18px; }
  .contact-info { margin-bottom: 8px; }
}

@media screen and (max-width: 640px) {
  .container { padding: 0 16px; }
  .sec-title { font-size: 22px; }
  .hero-content h1 { font-size: 26px; }
  .hero-content { gap: 14px; padding: 0 18px; }
  section.panel { padding: 48px 0; }
  .about-grid { gap: 28px; }
  .about-grid img { height: 210px; }
  .svc-card { padding: 22px 20px; }
  .review-card { padding: 16px; }
  .price-table td, .price-table th { font-size: 12.5px; padding: 10px 12px; }
  .highlight-box { padding: 20px 22px; }
  .footer .icons { gap: 16px; flex-wrap: wrap; }
  .cookie-content { padding: 20px 18px; }
  .cookie-buttons button { max-width: none; }
  .gallery-arrow { width: 36px; height: 36px; font-size: 14px; }
}

@media screen and (max-width: 420px) {
  .hero-content h1 { font-size: 23px; }
  .sec-title { font-size: 20px; }
  .svc-card { flex-basis: 100%; }
}

/* ---------- PROMO: Odhad ceny vozidla (index.html) ---------- */
.promo-calc {
  background: linear-gradient(135deg, rgba(74, 127, 194, .14), rgba(201, 168, 106, .08));
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}
.promo-calc-inner { display: flex; align-items: center; gap: 48px; padding: 52px; }
.promo-calc-visual { flex: 0 0 300px; }
.mock-kalk {
  position: relative;
  background: var(--bg-panel-2);
  border: 1px solid rgba(74, 127, 194, .35);
  border-radius: var(--radius-md);
  padding: 24px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: rotate(-2deg);
  box-shadow: 0 24px 48px -24px rgba(74, 127, 194, .5);
}
.mock-kalk::before {
  content: "";
  position: absolute;
  top: 0; left: 20px; right: 20px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--accent), var(--hero-accent));
}
.mock-kalk-badge {
  align-self: flex-start;
  background: rgba(201, 168, 106, .15);
  border: 1px solid rgba(201, 168, 106, .4);
  color: var(--hero-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  padding: 5px 11px;
  border-radius: 30px;
}
.mock-kalk-progress { display: flex; gap: 5px; }
.mock-kalk-progress i { flex: 1; height: 4px; border-radius: 4px; background: var(--border); }
.mock-kalk-progress i.done { background: var(--accent); }
.mock-kalk-label { font-size: 10.5px; font-weight: 700; color: var(--dim); letter-spacing: .02em; }
.mock-kalk-row { display: flex; gap: 6px; margin-top: -6px; }
.mock-kalk-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 9px 11px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
}
.mock-kalk-btn {
  display: flex;
  align-items: center;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.mock-kalk-price {
  background: var(--accent);
  border-radius: var(--radius-sm);
  padding: 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.mock-kalk-price .val { font-size: 15px; font-weight: 800; color: #fff; }
.mock-kalk-price .lbl { font-size: 10px; color: rgba(255, 255, 255, .85); }
.promo-free { color: var(--hero-accent); }
.promo-calc-body h2 { margin: 4px 0 12px; font-size: 26px; }
.promo-calc-body p { color: var(--dim); font-size: 14px; line-height: 1.7; margin: 0 0 18px; max-width: 560px; }
.promo-calc-list { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.promo-calc-list li { font-size: 13px; color: var(--dim); padding-left: 22px; position: relative; }
.promo-calc-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

@media screen and (max-width: 860px) {
  .promo-calc-inner { flex-direction: column; text-align: center; padding: 40px 24px; gap: 28px; }
  .promo-calc-visual { flex: 0 0 auto; width: 100%; max-width: 300px; margin: 0 auto; }
  .mock-kalk { transform: none; }
  .promo-calc-list { align-items: center; }
  .promo-calc-list li { padding-left: 0; }
  .promo-calc-list li::before { display: none; }
  .promo-calc-body p { margin-left: auto; margin-right: auto; }
}

/* ---------- KALKULAČKA (kalkulacka.html) ---------- */
.kalk-hero {
  position: relative;
  text-align: center;
  padding: 80px 24px 60px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(74, 127, 194, .4), transparent 55%),
    radial-gradient(circle at 85% 120%, rgba(201, 168, 106, .2), transparent 50%),
    var(--bg-panel);
  border-bottom: 1px solid var(--border);
}
.kalk-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .03) 0 5px, transparent 5px 30px);
  pointer-events: none;
}
.kalk-hero .container { position: relative; }
.kalk-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(201, 168, 106, .15);
  border: 1px solid rgba(201, 168, 106, .4);
  color: var(--hero-accent);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 30px;
  margin-bottom: 20px;
}
.kalk-hero h1 { font-size: 40px; margin: 0 0 14px; font-weight: 800; line-height: 1.15; }
.kalk-hero > .container > p { color: var(--dim); font-size: 15.5px; margin: 0 0 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.kalk-hero-features { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.kalk-hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .04);
  backdrop-filter: blur(4px);
  border: 1px solid var(--border);
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 12.5px;
  font-weight: 700;
  color: #fff;
}
.kalk-hero-feature .ico { font-size: 15px; }

@media screen and (max-width: 640px) {
  .kalk-hero { padding: 56px 18px 44px; }
  .kalk-hero h1 { font-size: 27px; }
  .kalk-hero > .container > p { font-size: 14px; }
  .kalk-hero-feature { font-size: 11.5px; padding: 8px 14px; }
}

.kalk-card {
  position: relative;
  background: var(--bg-panel-2);
  border: 1px solid rgba(74, 127, 194, .3);
  border-radius: var(--radius-md);
  padding: 38px 34px 34px;
  max-width: 640px;
  margin: 0 auto;
  box-shadow: 0 30px 60px -32px rgba(74, 127, 194, .4);
}
.kalk-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 4px;
  border-radius: 0 0 6px 6px;
  background: linear-gradient(90deg, var(--accent), var(--hero-accent));
}
.kalk-progress { display: flex; gap: 6px; margin-bottom: 28px; }
.kalk-progress .seg { flex: 1; height: 4px; border-radius: 4px; background: var(--border); overflow: hidden; }
.kalk-progress .seg.done { background: var(--accent); }
.kalk-step-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--accent); margin-bottom: 6px; text-align: center; }
.kalk-step-title { font-size: 20px; margin: 0 0 22px; font-weight: 800; text-align: center; }
.kalk-field { margin-bottom: 18px; }
.kalk-field label { display: block; font-size: 12px; font-weight: 700; letter-spacing: .02em; color: var(--dim); margin-bottom: 7px; }
.kalk-field input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  background: var(--bg);
  color: #fff;
  font-family: inherit;
}
.kalk-field input:focus { outline: none; border-color: var(--accent); }
.kalk-row2 { display: flex; gap: 14px; }
.kalk-row2 .kalk-field { flex: 1; }
.kalk-hint { font-size: 12px; color: var(--dim); margin-top: 8px; line-height: 1.55; }
.kalk-hint.warn { background: rgba(201, 168, 106, .12); border: 1px solid rgba(201, 168, 106, .35); border-radius: var(--radius-sm); padding: 8px 11px; color: var(--hero-accent); }
.kalk-btn-ai { background: var(--accent); color: #fff; border: none; border-radius: var(--radius-sm); padding: 12px 16px; font-size: 12.5px; font-weight: 700; white-space: nowrap; cursor: pointer; font-family: inherit; transition: background .2s ease; }
.kalk-btn-ai:hover { background: var(--accent-dark); }
.kalk-btn-ai:disabled { opacity: .5; cursor: wait; }
.kalk-btn-ghost { background: transparent; color: var(--dim); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 18px; font-size: 13px; font-weight: 700; cursor: pointer; font-family: inherit; transition: background .2s ease, color .2s ease; }
.kalk-btn-ghost:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.kalk-btn-center { display: block; margin: 6px auto 0; }
.kalk-spz-row { display: flex; gap: 8px; }
.kalk-spz-row input { flex: 1; min-width: 0; }
.kalk-choice-group { display: flex; gap: 8px; flex-wrap: wrap; }
.kalk-choice { border: 1px solid var(--border); padding: 10px 18px; border-radius: 30px; font-size: 12.5px; font-weight: 700; cursor: pointer; color: var(--dim); background: var(--bg); text-align: center; transition: background .2s ease, border-color .2s ease, color .2s ease; }
.kalk-choice.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.kalk-nav-row { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.kalk-btn-primary { background: var(--accent); color: #fff; border: none; border-radius: var(--radius-sm); padding: 13px 22px; font-size: 13.5px; font-weight: 800; flex: 1; max-width: 340px; cursor: pointer; font-family: inherit; transition: background .2s ease; }
.kalk-btn-primary:hover { background: var(--accent-dark); }
.kalk-btn-primary:disabled { opacity: .4; cursor: not-allowed; }
.kalk-step { display: none; }
.kalk-step.active { display: block; }
.kalk-found-index { font-size: 11.5px; color: var(--dim); margin-top: -6px; }
.kalk-result-hero { text-align: center; padding: 4px 0 22px; }
.kalk-result-hero .emoji { font-size: 34px; }
.kalk-result-hero h2 { font-size: 20px; margin: 10px 0 4px; }
.kalk-result-hero p { font-size: 13px; color: var(--dim); margin: 0; }
.kalk-estimate-banner { background: var(--accent); color: #fff; border-radius: var(--radius-md); padding: 22px; text-align: center; margin-bottom: 22px; }
.kalk-estimate-banner .amount { font-size: 26px; font-weight: 800; margin-bottom: 2px; }
.kalk-estimate-banner .label { font-size: 11.5px; opacity: .85; }
.kalk-tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin: -8px 0 22px; }
.kalk-tags span { font-size: 10.5px; background: var(--bg); border: 1px solid var(--border); color: var(--dim); padding: 5px 11px; border-radius: 30px; font-weight: 700; }
.kalk-saving-box { background: rgba(201, 168, 106, .1); border: 1px solid rgba(201, 168, 106, .35); }
.kalk-saving-box p strong { color: var(--hero-accent); }
.kalk-thankyou { text-align: center; padding: 24px 0; }
.kalk-thankyou .emoji { font-size: 42px; }
.kalk-thankyou h2 { font-size: 19px; margin: 12px 0 6px; }
.kalk-thankyou p { font-size: 13.5px; color: var(--dim); }
.kalk-disclaimer { font-size: 11px; color: var(--dim2); line-height: 1.6; margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--border); }

@media screen and (max-width: 640px) {
  .kalk-card { padding: 24px 18px; }
  .kalk-row2 { flex-direction: column; gap: 0; }
  .kalk-spz-row { flex-direction: column; }
  .kalk-spz-row .kalk-btn-ai { width: 100%; }
  .kalk-field input { font-size: 16px; }
  .kalk-choice { flex: 1 1 auto; }
  .kalk-nav-row { flex-direction: column-reverse; }
  .kalk-nav-row .kalk-btn-primary { max-width: none; width: 100%; }
  .kalk-nav-row .kalk-btn-ghost { width: 100%; }
}

/* Honeypot kontaktního formuláře. Musí být neviditelný pro člověka, ale
   normálně přítomný v DOM - display:none by část botů poznala a pole
   přeskočila. Zároveň se schovává před čtečkami (aria-hidden v šabloně). */
.contact-ref-x {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* Stavová hláška pod odesílacím tlačítkem */
.form-status {
  margin: 10px 0 0;
  font-size: 14px;
  min-height: 1.2em;
}
.form-status.is-ok { color: #2f6b2f; }
.form-status.is-error { color: #b3261e; }

/* Místo pro Turnstile widget. Když Turnstile není nakonfigurovaný, zůstane
   prázdné a nesmí kolem sebe dělat mezeru. */
.turnstile-slot:empty { display: none; }
.turnstile-slot { margin: 10px 0; }
