:root {
  --black: #14151a;
  --black-2: #1d1e25;
  --yellow: #ffc72c;
  --yellow-2: #ffd85c;
  --ink: #1c1c22;
  --muted: #5f6270;
  --line: #eceef2;
  --bg-alt: #f7f7f9;
  --radius: 16px;
  --shadow: 0 20px 40px -20px rgba(20, 21, 26, 0.25);
  --font-body: 'Manrope', system-ui, sans-serif;
  --font-head: 'Poppins', system-ui, sans-serif;

  /* Pojmenovaná spacing škála — místo volných hodnot rozházených po souboru */
  --space-1: 4px;  --space-2: 8px;  --space-3: 12px; --space-4: 16px;
  --space-5: 24px; --space-6: 32px; --space-7: 48px; --space-8: 64px;

  /* Pojmenovaný easing — dřív rozepsaný jako stejný cubic-bezier na 6, resp. 2 místech zvlášť */
  --ease-bounce: cubic-bezier(.34, 1.6, .6, 1);
  --ease-snap: cubic-bezier(.65, 0, .35, 1);

  /* Fluidní typografie pro hero a sekční nadpisy — už byly na clamp(), teď pojmenované a sdílené */
  --text-display-lg: clamp(2.1rem, 1.7rem + 4.6vw, 3.4rem);
  --text-display-md: clamp(1.7rem, 1.4rem + 3.2vw, 2.4rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Scroll progress bar ---------- */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--yellow), var(--black));
  z-index: 200;
  transition: width 0.1s linear;
  pointer-events: none;
}

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }
.bento-grid .reveal:nth-child(2) { transition-delay: .06s; }
.bento-grid .reveal:nth-child(3) { transition-delay: .12s; }
.bento-grid .reveal:nth-child(4) { transition-delay: .18s; }
.bento-grid .reveal:nth-child(5) { transition-delay: .24s; }
.bento-grid .reveal:nth-child(6) { transition-delay: .3s; }
.fleet-grid .reveal:nth-child(2) { transition-delay: .1s; }
.fleet-grid .reveal:nth-child(3) { transition-delay: .2s; }
.compare-grid .reveal:nth-child(2) { transition-delay: .12s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .card:hover, .fleet-card:hover { transform: none; }
  .card, .fleet-card, .compare-card, .review-link { --dodge-x: 0px; --dodge-y: 0px; transition: none; }
  .rail-track-inner { animation: none; }
  #routeCar { transition: none; }
  .mobile-route-flag, .mobile-route-flag-text { transition: none; }
}

/* ---------- Route rail — klikatá trasa přes celou stránku, taxík mizí za kartami ---------- */
main { position: relative; }
.route-rail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  z-index: 2;
  pointer-events: none;
}
#routeSvg { display: block; width: 100%; height: 100%; overflow: visible; }

/* Silnice: jemný světlý "asfalt" zaručuje čitelnost na jakémkoli pozadí,
   žlutý přerušovaný pruh uprostřed dělá z čáry vozovku, ne jen linku. */
#routePathCasing {
  stroke: rgba(255, 255, 255, .8);
  stroke-width: 5;
  filter: drop-shadow(0 1px 2px rgba(20, 21, 26, .16));
}
#routePathLine {
  stroke: var(--yellow);
  stroke-width: 1.6;
  stroke-dasharray: 7 10;
  opacity: .95;
}

#routeCar { will-change: transform; }
.car-shadow { fill: rgba(20, 21, 26, .28); filter: blur(2px); }
.car-body { fill: var(--yellow); stroke: var(--black); stroke-width: 2.2; }
.car-glass { fill: var(--black); opacity: .82; }
.car-wheel { fill: var(--black); }
.car-sign { fill: var(--black); }
.car-sign-text {
  font-family: var(--font-head);
  font-size: 5.2px;
  font-weight: 800;
  fill: var(--yellow);
  text-anchor: middle;
}

.route-flag .flag-pole {
  stroke: rgba(255, 255, 255, .95);
  stroke-width: 4;
  stroke-linecap: round;
  filter: drop-shadow(0 1px 2px rgba(20,21,26,.25));
  transition: stroke .35s ease;
}
.route-flag .flag-dot {
  fill: rgba(255, 255, 255, .95);
  stroke: rgba(20, 21, 26, .35);
  stroke-width: 1.5;
  transition: fill .35s ease;
}
.route-flag .flag-flag {
  fill: rgba(20, 21, 26, .4);
  stroke: rgba(255, 255, 255, .9);
  stroke-width: 1.5;
  stroke-linejoin: round;
  transform-origin: 0px -15px;
  transition: fill .4s ease, transform .45s cubic-bezier(.34,1.7,.5,1);
}
.route-flag.is-active .flag-pole { stroke: var(--black); }
.route-flag.is-active .flag-dot { fill: var(--yellow); }
.route-flag.is-active .flag-flag {
  fill: var(--yellow);
  stroke: var(--black);
  transform: scale(1.35) rotate(-4deg);
}

/* Popisek zastávky — vlastní neprůhledné pozadí = čitelné na jakémkoli podkladu.
   Viditelný pořád (i pro nadcházející zastávky), při dojetí "vybarvující" pop animace. */
.flag-label {
  opacity: .8;
  transform: scale(.92);
  transform-origin: center;
  transition: opacity .3s ease, transform .4s var(--ease-bounce);
  transform-box: fill-box;
}
.route-flag.is-active .flag-label { opacity: 1; transform: scale(1); }
.flag-pill {
  fill: rgba(20, 21, 26, .82);
  transition: fill .35s ease;
}
.route-flag.is-active .flag-pill { fill: var(--yellow); }
.flag-text {
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  fill: #fff;
  text-anchor: middle;
  dominant-baseline: central;
  transition: fill .35s ease;
}
.route-flag.is-active .flag-text { fill: var(--black); }

/* Text musí mít vždy přednost před trasou/autem — nikdy pod ním nesmí zaniknout */
main h1, main h2, main h3, main p, main .eyebrow, main li {
  position: relative;
  z-index: 3;
}

/* Klikatá vozovka s uhýbáním karet je jen pro širokou desktopovou verzi —
   pod 1240px (tablet i mobil) na ni není místo. Na mobilu její roli
   přebírá samostatná "štafeta" aut mezi sekcemi (viz níže). */
@media (max-width: 1240px) {
  .route-rail { display: none; }
}

/* Parkovací místo na konci trasy */
.parking-spot {
  fill: none;
  stroke: rgba(20, 21, 26, .3);
  stroke-width: 2;
  stroke-dasharray: 6 5;
}
.parking-label {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  fill: rgba(20, 21, 26, .3);
  text-anchor: middle;
}

/* Odznak "palec nahoru" — objeví se, až auto dojede na konec a zaparkuje */
.thumbs-up-badge {
  opacity: 0;
  transform: scale(.4) rotate(-25deg);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .45s var(--ease-bounce), transform .45s var(--ease-bounce);
  filter: drop-shadow(0 6px 12px rgba(20, 21, 26, .3));
}
.thumbs-up-badge.is-visible { opacity: 1; transform: scale(1) rotate(0deg); }
.thumbs-up-bg { fill: var(--yellow); stroke: var(--black); stroke-width: 2.2; }
.thumbs-up-icon { fill: var(--black); }
@media (prefers-reduced-motion: reduce) {
  .thumbs-up-badge { transition: opacity .2s ease; transform: none !important; }
}

/* ---------- Mobilní štafeta: auto proletí obrazovkou na každém přechodu sekce ---------- */
@media (max-width: 760px) {
  .section { position: relative; }
  /* Auto při jízdě dočasně přesáhne šířku obrazovky (translateX 100vw+) —
     bez tohoto by šlo stránku na mobilu rozjet do stran a odhalit bílý okraj. */
  html, body {
    overflow-x: hidden;
    overscroll-behavior-x: none;
    max-width: 100%;
    touch-action: pan-y;
  }

  .mobile-route-track {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 0;
    pointer-events: none;
    z-index: 2;
  }

  .mobile-route-flag {
    position: absolute;
    top: -6px;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: scale(.5);
    transition: opacity .3s var(--ease-bounce), transform .3s var(--ease-bounce);
    transition-delay: 1s;
  }
  .mobile-route-flag.is-visible { opacity: 1; transform: scale(1); }
  .mobile-route-track[data-dir="ltr"] .mobile-route-flag { left: 10px; }
  .mobile-route-track[data-dir="rtl"] .mobile-route-flag { right: 10px; flex-direction: row-reverse; }

  .mrf-pole { stroke: var(--black); stroke-width: 2; stroke-linecap: round; }
  .mrf-flag { fill: var(--yellow); stroke: var(--black); stroke-width: 1.2; stroke-linejoin: round; }
  .mrf-dot { fill: var(--black); }

  .mobile-route-flag-text {
    display: inline-block;
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    line-height: 1.3;
    opacity: 0;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: .74rem;
    color: var(--black);
    background: var(--yellow);
    border-radius: 20px;
    transition: max-width .5s var(--ease-snap), opacity .3s ease, padding .5s var(--ease-snap);
    transition-delay: 1.1s;
  }
  .mobile-route-flag.is-visible .mobile-route-flag-text {
    max-width: 150px;
    opacity: 1;
    padding: 4px 12px;
  }

  .mobile-route-car {
    position: absolute;
    top: -13px;
    width: 52px;
    height: 26px;
  }
  .mobile-route-track[data-dir="ltr"] .mobile-route-car { left: 6px; }
  .mobile-route-track[data-dir="rtl"] .mobile-route-car { right: 6px; }
  .mobile-route-track[data-dir="rtl"] .mobile-route-car-sprite { transform: scaleX(-1); }

  .mobile-route-car.is-driving-ltr,
  .mobile-route-car.is-driving-rtl {
    will-change: transform, opacity;
  }
  .mobile-route-car.is-driving-ltr { animation: mobile-route-drive-ltr 3s cubic-bezier(.45,.06,.55,.94) forwards; }
  .mobile-route-car.is-driving-rtl { animation: mobile-route-drive-rtl 3s cubic-bezier(.45,.06,.55,.94) forwards; }

  @keyframes mobile-route-drive-ltr {
    0% { opacity: 0; transform: translateX(-10px) scale(.7); }
    14% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 1; transform: translateX(calc(100vw + 40px)) scale(1); }
  }
  @keyframes mobile-route-drive-rtl {
    0% { opacity: 0; transform: translateX(10px) scale(.7); }
    14% { opacity: 1; transform: translateX(0) scale(1); }
    100% { opacity: 1; transform: translateX(calc(-100vw - 40px)) scale(1); }
  }

  .mrc-body { fill: var(--yellow); stroke: var(--black); stroke-width: 2.2; }
  .mrc-glass { fill: var(--black); opacity: .82; }
  .mrc-sign { fill: var(--black); }
  .mrc-light { fill: var(--yellow); stroke: var(--black); stroke-width: 1.2; }
  .mrc-wheel { fill: var(--black); }
  .mrc-hub { fill: var(--yellow); }
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 20px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--black); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px -10px rgba(255,199,44,.6); }
.btn-ghost { border-color: rgba(255,255,255,.35); color: #fff; }
.section .btn-ghost { border-color: var(--black); color: var(--black); }
.btn-ghost:hover { background: rgba(255,255,255,.12); }
.section .btn-ghost:hover { background: var(--black); color: #fff; }
.btn-call {
  background: var(--black);
  color: #fff;
  padding: 8px 20px 8px 8px;
  font-size: .9rem;
  gap: 12px;
  border: 1.5px solid rgba(255, 199, 44, .5);
}
.btn-call:hover { background: var(--yellow); color: var(--black); }
.btn-call:hover .call-icon-ring { background: var(--black); color: var(--yellow); }
.call-text { display: flex; flex-direction: column; align-items: flex-start; line-height: 1.2; }
.call-hey { color: var(--yellow); font-size: .78rem; font-weight: 800; letter-spacing: .01em; }
.btn-call:hover .call-hey { color: var(--black); }
.call-number { font-weight: 800; font-size: .95rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20,21,26,.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.is-scrolled {
  background: rgba(15,16,20,.94);
  box-shadow: 0 12px 30px -20px rgba(0,0,0,.6);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 24px;
  transition: height .3s ease;
}
.site-header.is-scrolled .header-inner { height: 66px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo-badge {
  width: 38px; height: 38px;
  background: var(--yellow);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
}
.logo-text { font-family: var(--font-head); font-weight: 600; color: #fff; font-size: 1.1rem; letter-spacing: .2px; }
.logo-text strong { color: var(--yellow); font-weight: 800; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
  position: relative;
  color: rgba(255,255,255,.8);
  font-weight: 600;
  font-size: .95rem;
  padding-bottom: 4px;
  transition: color .15s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover { color: var(--yellow); }
.main-nav a:hover::after,
.main-nav a.is-active::after { transform: scaleX(1); }
.main-nav a.is-active { color: var(--yellow); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 140% at 15% 0%, #23242c 0%, var(--black) 55%, #0e0f13 100%);
  color: #fff;
  padding: 110px 0 90px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-stripe {
  position: absolute;
  right: -10%;
  top: -20%;
  width: 60%;
  height: 160%;
  background: repeating-linear-gradient(-25deg, rgba(255,199,44,.08) 0 24px, transparent 24px 48px);
  transform: skewX(-8deg);
}
.hero-inner { position: relative; max-width: 720px; }
.eyebrow {
  display: inline-block;
  color: var(--yellow);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.hero h1 {
  font-family: var(--font-head);
  font-size: var(--text-display-lg);
  line-height: 1.12;
  margin: 0 0 20px;
  font-weight: 700;
}
.hero h1 .hl { color: var(--yellow); }
.hero-lead { font-size: 1.1rem; color: rgba(255,255,255,.75); max-width: 540px; margin: 0 0 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 56px; }

.hero-stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong { font-family: var(--font-head); font-size: 1.7rem; color: var(--yellow); }
.hero-stats span { font-size: .85rem; color: rgba(255,255,255,.6); }

/* ---------- Trust bar ---------- */
.trustbar { position: relative; z-index: 3; background: var(--yellow); }
.trustbar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding: 16px 24px;
  justify-content: center;
}
.trust-item { font-weight: 700; font-size: .88rem; color: var(--black); }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }
.section-eyebrow {
  color: #b78900;
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.section-title {
  font-family: var(--font-head);
  font-size: var(--text-display-md);
  margin: 0 0 16px;
  font-weight: 700;
}
.section-lead { color: var(--muted); font-size: 1.05rem; max-width: 620px; margin: 0 0 48px; line-height: 1.6; }

/* ---------- Cards / Services (bento grid) ---------- */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(180px, auto);
  gap: 20px;
}
.bento-lg { grid-column: span 2; }

.card {
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px;
  transform: translate(var(--dodge-x, 0px), var(--dodge-y, 0px));
  transition: transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .18s ease, border-color .18s ease;
}
.card:hover { transform: translateY(-4px) translate(var(--dodge-x, 0px), var(--dodge-y, 0px)); box-shadow: var(--shadow); border-color: transparent; }
.card:hover .card-icon { transform: rotate(-6deg) scale(1.06); }
.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  margin-bottom: 18px;
  transition: transform .25s ease;
}
.card h3 { font-family: var(--font-head); font-size: 1.15rem; margin: 0 0 10px; }
.card p { color: var(--muted); font-size: .95rem; line-height: 1.6; margin: 0; }
.card-link, .inline-link { display: inline-block; margin-top: 12px; font-weight: 700; color: var(--black); border-bottom: 2px solid var(--yellow); font-size: .9rem; }
.inline-link { margin: 0; }

/* Zvýrazněné CTA u rozvozu alkoholu — dvě sklenky si "ťuknou" při najetí myší */
.alkohol-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 22px;
  background: var(--black);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  font-size: .92rem;
  transition: background .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.alkohol-cta:hover {
  background: var(--yellow);
  color: var(--black);
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -14px rgba(255, 199, 44, .7);
}
.clink-icon { display: flex; color: currentColor; flex-shrink: 0; }
.glass { transition: transform .4s var(--ease-bounce); }
.glass-left { transform-box: fill-box; transform-origin: 90% 95%; }
.glass-right { transform-box: fill-box; transform-origin: 10% 95%; }
.alkohol-cta:hover .glass-left { transform: rotate(-22deg) translate(2px, -1px); }
.alkohol-cta:hover .glass-right { transform: rotate(22deg) translate(-2px, -1px); }
.clink-spark {
  opacity: 0;
  transform: scale(.5);
  transform-box: fill-box;
  transform-origin: center;
  transition: opacity .25s ease .15s, transform .25s ease .15s;
}
.alkohol-cta:hover .clink-spark { opacity: 1; transform: scale(1); }
.alkohol-arrow { margin-left: 2px; }
@media (prefers-reduced-motion: reduce) {
  .glass, .clink-spark { transition: none; }
}

/* ---------- Fleet (vozy) ---------- */
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fleet-card {
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  transform: translate(var(--dodge-x, 0px), var(--dodge-y, 0px));
  transition: transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .18s ease;
}
.fleet-card:hover { transform: translateY(-4px) translate(var(--dodge-x, 0px), var(--dodge-y, 0px)); box-shadow: var(--shadow); }
.fleet-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  color: var(--black);
}
.fleet-card h3 { font-family: var(--font-head); font-size: 1.1rem; margin: 0 0 8px; }
.fleet-card p { color: var(--muted); font-size: .92rem; line-height: 1.55; margin: 0 0 16px; }
.fleet-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.fleet-tags li {
  font-size: .75rem;
  font-weight: 700;
  background: var(--bg-alt);
  color: var(--ink);
  padding: 5px 10px;
  border-radius: 999px;
}

/* ---------- Kam nejčastěji jezdíme (lokální SEO trasy) ---------- */
.routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.route-card {
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transform: translate(var(--dodge-x, 0px), var(--dodge-y, 0px));
  transition: transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .18s ease, border-color .18s ease;
}
.route-card:hover { transform: translateY(-4px) translate(var(--dodge-x, 0px), var(--dodge-y, 0px)); box-shadow: var(--shadow); border-color: transparent; }
.route-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--yellow), var(--yellow-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  margin-bottom: 14px;
}
.route-card h3 { font-family: var(--font-head); font-size: 1.02rem; margin: 0 0 8px; }
.route-card p { color: var(--muted); font-size: .88rem; line-height: 1.55; margin: 0; }
.routes-cta { display: flex; justify-content: center; }

/* SPZ badge */
.plate {
  display: inline-flex;
  align-items: stretch;
  border-radius: 5px;
  overflow: hidden;
  border: 2px solid var(--black);
  font-family: var(--font-head);
}
.plate-eu {
  background: #003399;
  color: #fff;
  font-size: .6rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  letter-spacing: .02em;
}
.plate-num {
  background: #fff;
  color: var(--black);
  font-weight: 800;
  font-size: .82rem;
  letter-spacing: .04em;
  padding: 5px 9px;
}

/* ---------- Compare (organizované akce) ---------- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 24px;
  align-items: stretch;
}
.compare-card {
  position: relative;
  z-index: 3;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transform: translate(var(--dodge-x, 0px), var(--dodge-y, 0px));
  transition: transform .3s cubic-bezier(.34,1.2,.64,1);
}
.compare-featured {
  background: var(--black);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow);
}
.compare-tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--muted);
  margin-bottom: 14px;
}
.compare-tag-featured { color: var(--yellow); }
.compare-card h3 { font-family: var(--font-head); font-size: 1.3rem; margin: 0 0 12px; }
.compare-card > p { color: var(--muted); line-height: 1.6; margin: 0 0 18px; }
.compare-featured > p { color: rgba(255,255,255,.75); }
.compare-list { display: flex; flex-direction: column; gap: 10px; }
.compare-list li {
  position: relative;
  padding-left: 20px;
  font-size: .92rem;
  color: var(--muted);
}
.compare-list li::before { content: "–"; position: absolute; left: 0; }

.price-list { display: flex; flex-direction: column; gap: 12px; margin: 0 0 18px; }
.price-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-size: .92rem;
}
.price-list li span { color: rgba(255,255,255,.7); }
.price-list li strong { color: var(--yellow); font-family: var(--font-head); font-size: 1.05rem; }
.compare-note { font-size: .84rem; color: rgba(255,255,255,.55) !important; margin-bottom: 22px !important; }
.compare-featured .btn-primary:hover { box-shadow: 0 12px 24px -10px rgba(255,199,44,.4); }

/* ---------- Price table ---------- */
.price-table {
  position: relative;
  z-index: 3;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 32px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  font-size: .95rem;
}
.price-row:nth-child(odd) { background: var(--bg-alt); }
.price-service { font-weight: 600; }
.price-value { font-weight: 800; color: var(--black); white-space: nowrap; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.about-media { position: relative; z-index: 3; height: 380px; }
.about-media-shape {
  position: absolute; inset: 0;
  border-radius: 24px;
  background: linear-gradient(140deg, var(--black) 0%, #2b2c34 55%, var(--yellow) 220%);
  background-size: 160% 160%;
}
.about-media-shape::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 24px;
  background-image: repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 10px, transparent 10px 20px);
}
.about-badge {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: #fff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: var(--shadow);
  display: flex; flex-direction: column;
  min-width: 150px;
}
.about-badge strong { font-family: var(--font-head); font-size: 1.3rem; color: var(--black); }
.about-badge span { font-size: .82rem; color: var(--muted); }

.about-copy { position: relative; z-index: 3; }
.about-copy p { color: var(--muted); line-height: 1.7; margin: 0 0 18px; font-size: 1.02rem; }
.about-list { display: flex; flex-direction: column; gap: 12px; margin-top: 24px; }
.about-list li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
  font-size: .95rem;
}
.about-list li::before {
  content: "";
  position: absolute; left: 0; top: 4px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--yellow);
}

/* ---------- Pricing ---------- */
.price-cta {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  background: var(--black);
  color: #fff;
  border-radius: 24px;
  padding: 44px 44px;
}
.price-cta-text h3 { font-family: var(--font-head); margin: 0 0 10px; font-size: 1.4rem; }
.price-cta-text p { margin: 0; color: rgba(255,255,255,.7); max-width: 480px; line-height: 1.6; }

/* ---------- Reviews ---------- */
.reviews-cta { position: relative; z-index: 3; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.review-link {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
  transform: translate(var(--dodge-x, 0px), var(--dodge-y, 0px));
  transition: transform .3s cubic-bezier(.34,1.2,.64,1), box-shadow .18s ease;
}
.review-link:hover { transform: translateY(-3px) translate(var(--dodge-x, 0px), var(--dodge-y, 0px)); box-shadow: var(--shadow); }
.review-link-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--black);
  color: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.review-link > span:nth-child(2) { display: flex; flex-direction: column; gap: 2px; }
.review-link strong { font-family: var(--font-head); font-size: 1rem; }
.review-link > span:nth-child(2) span { color: var(--muted); font-size: .85rem; }
.review-link-arrow { margin-left: auto; font-weight: 700; color: var(--muted); }
.reviews-note { margin-top: 32px; color: var(--muted); font-size: .95rem; }
.reviews-note a { font-weight: 700; color: var(--black); border-bottom: 2px solid var(--yellow); }

/* ---------- Partneři: bublinky s jemnou plovoucí animací ---------- */
.partners-section { background: #fff; }
.partners-section .section-title { margin-bottom: 8px; }
.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}
.partner-pill {
  position: relative;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink);
  box-shadow: 0 10px 22px -16px rgba(20, 21, 26, .35);
  animation: pill-float 4.5s ease-in-out infinite;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.partner-pill:nth-child(1) { animation-delay: 0s; }
.partner-pill:nth-child(2) { animation-delay: .5s; }
.partner-pill:nth-child(3) { animation-delay: 1s; }
.partner-pill:nth-child(4) { animation-delay: 1.5s; }
.partner-pill:nth-child(5) { animation-delay: 2s; }
.partner-pill:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: var(--shadow);
  animation-play-state: paused;
  transform: translateY(-6px) scale(1.03);
}
.pill-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--yellow);
  transition: background .2s ease;
}
.partner-pill:hover .pill-dot { background: var(--black); }
@keyframes pill-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-pill { animation: none; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info { position: relative; z-index: 3; }
.contact-list { display: flex; flex-direction: column; gap: 20px; margin: 32px 0; }
.contact-list li { display: flex; align-items: center; gap: 16px; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  flex-shrink: 0;
}
.contact-list div { display: flex; flex-direction: column; gap: 2px; }
.contact-list strong { font-size: .78rem; text-transform: uppercase; letter-spacing: .04em; color: var(--muted); }
.contact-list a, .contact-list span { font-weight: 700; font-size: 1rem; }
.contact-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.contact-map {
  position: relative;
  z-index: 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 380px;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: rgba(255,255,255,.75); padding: 64px 0 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand p { margin-top: 12px; font-size: .9rem; color: rgba(255,255,255,.55); max-width: 260px; line-height: 1.6; }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.footer-cols h4 { color: #fff; font-size: .85rem; text-transform: uppercase; letter-spacing: .06em; margin: 0 0 16px; }
.footer-cols a, .footer-cols span { display: block; font-size: .9rem; margin-bottom: 10px; color: rgba(255,255,255,.65); }
.footer-cols a:hover { color: var(--yellow); }
.footer-bottom {
  padding: 22px 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.45);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
}
.footer-credit { color: rgba(255,255,255,.5); font-weight: 700; transition: color .15s ease; }
.footer-credit:hover { color: var(--yellow); }

/* ---------- Ikona sluchátka, co "zvoní" — sdílené pro horní i spodní CTA ---------- */
.call-icon-ring {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  flex-shrink: 0;
}
.call-icon-ring::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(255, 199, 44, .55);
  animation: call-ping 2.4s ease-out infinite;
}
.call-icon { animation: call-shake 3.2s ease-in-out infinite; transform-origin: 60% 40%; }
@keyframes call-ping {
  0% { box-shadow: 0 0 0 0 rgba(255, 199, 44, .55); }
  70%, 100% { box-shadow: 0 0 0 12px rgba(255, 199, 44, 0); }
}
@keyframes call-shake {
  0%, 74%, 100% { transform: rotate(0deg); }
  78% { transform: rotate(-18deg); }
  82% { transform: rotate(15deg); }
  86% { transform: rotate(-10deg); }
  90% { transform: rotate(6deg); }
  94% { transform: rotate(0deg); }
}
@media (prefers-reduced-motion: reduce) {
  .call-icon-ring::before { animation: none; }
  .call-icon { animation: none; }
}

/* ---------- Spodní fixní CTA lišta na mobilu ---------- */
.mobile-call-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px calc(14px + env(safe-area-inset-bottom, 0px));
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  font-size: .95rem;
  box-shadow: 0 -10px 24px -12px rgba(20, 21, 26, .35);
  z-index: 95;
}
.mobile-call-bar strong { font-family: var(--font-head); font-size: 1.02rem; }
.mobile-call-bar .call-icon-ring.small { background: var(--black); color: var(--yellow); width: 32px; height: 32px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .bento-grid { grid-template-columns: repeat(2, 1fr); }
  .bento-lg { grid-column: span 2; }
  .fleet-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-card:first-child { grid-column: span 2; }
  .routes-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { height: 300px; }
  .reviews-cta { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .main-nav { display: none; }
  .header-actions .btn-call .call-text { display: none; }
  .nav-toggle { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--black);
    padding: 20px 24px 28px;
    gap: 18px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }
  .hero { padding: 80px 0 60px; }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Kratší, míň scrollování — nižší odsazení sekcí a kompaktnější mřížky */
  .section { padding: 60px 0; }
  .section-lead { margin-bottom: 32px; }

  .bento-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .bento-lg { grid-column: span 2; }
  .card { padding: 18px 16px; }
  .card-icon { width: 42px; height: 42px; margin-bottom: 12px; }
  .card h3 { font-size: 1rem; }
  .card p { font-size: .86rem; }
  .alkohol-cta { width: 100%; justify-content: center; }

  .fleet-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .fleet-card:first-child { grid-column: span 2; }
  .fleet-card { padding: 16px; }
  .fleet-card:not(:first-child) h3 { font-size: .92rem; }
  .fleet-card:not(:first-child) p { font-size: .8rem; }
  .fleet-card:not(:first-child) .plate-num { font-size: .68rem; padding: 4px 6px; }
  .fleet-card:not(:first-child) .plate-eu { font-size: .55rem; }
  .fleet-card:not(:first-child) .fleet-tags li { font-size: .66rem; padding: 3px 7px; }

  .partners-grid { justify-content: center; gap: 10px; }
  .partner-pill { padding: 11px 18px; font-size: .85rem; }

  .price-row { flex-direction: column; gap: 4px; }
  .price-cta { flex-direction: column; align-items: flex-start; padding: 32px; }
  .price-cta .btn { width: 100%; justify-content: center; }
  .footer-cols { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 68px; }
  .mobile-call-bar { display: flex; }
  .header-actions .btn-call { padding: 7px; border-radius: 50%; }

  .routes-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .route-card { padding: 16px; }
  .route-card h3 { font-size: .92rem; }
  .route-card p { font-size: .8rem; }
  .routes-cta .btn { width: 100%; justify-content: center; }
}
