/* ============================================================
   LunchDrive — Stripe-inspired Redesign
   Builds on: design system/tokens.css
   One self-contained file, mobile-first.
   ============================================================ */

/* ---------- Font fallback — funguje i bez tokens.css ---------- */
:root {
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body:    'Plus Jakarta Sans', system-ui, sans-serif;
}

/* ---------- Radius system — Stripe-like precision ---------- */
:root {
  --s-radius-sm:    6px;   /* buttons, inputs, small chips */
  --s-radius-md:    8px;   /* icons, badges */
  --s-radius-lg:   12px;   /* cards, panels */
  --s-radius-xl:   16px;   /* browser frame, hero container */
  --s-radius-pill: 40px;   /* pill labels */
}

/* ---------- Reset + base ---------- */
*, *::before, *::after { box-sizing: border-box; }
img, video { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.s-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.s-container--wide {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ---------- Section rhythm ---------- */
.s-section {
  padding: clamp(80px, 10vw, 140px) 0;
}

/* ---------- Eyebrow label ---------- */
.s-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 18px;
}

.s-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--blue-600);
  border-radius: 2px;
  flex: none;
}

/* ---------- Buttons ---------- */
.s-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 24px;
  border-radius: var(--s-radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  min-height: 48px;
  transition:
    transform .12s var(--ease),
    box-shadow .2s var(--ease),
    background .2s var(--ease),
    border-color .2s var(--ease),
    color .2s var(--ease);
}

.s-btn:active { transform: translateY(1px); }
.s-btn:focus-visible { outline: none; box-shadow: var(--ring-focus); }

.s-btn--primary {
  background: var(--blue-600);
  color: #fff;
  box-shadow: 0 1px 2px rgba(14,111,184,.35), 0 4px 12px rgba(14,111,184,.18);
}
.s-btn--primary:hover {
  background: var(--blue-700);
  box-shadow: 0 2px 4px rgba(14,111,184,.40), 0 8px 20px rgba(14,111,184,.22);
}

.s-btn--ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.s-btn--ghost:hover {
  border-color: var(--blue-300);
  background: var(--blue-50);
  color: var(--blue-700);
}

.s-btn--ghost-white {
  background: rgba(255,255,255,.10);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.25);
}
.s-btn--ghost-white:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.45);
}

.s-btn--lg {
  font-size: 17px;
  padding: 16px 32px;
  min-height: 54px;
}

.s-btn--mint {
  background: var(--mint-500);
  color: #fff;
  box-shadow: 0 1px 2px rgba(34,185,138,.30);
}
.s-btn--mint:hover { background: var(--mint-600); }

/* ---------- Scroll reveal ---------- */
.s-reveal-ready .s-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}
.s-reveal-ready .s-reveal.in { opacity: 1; transform: none; }

.s-reveal-ready .s-reveal--fast {
  transition-duration: .4s;
}

.s-reveal-ready .s-reveal--d1 { transition-delay: .08s; }
.s-reveal-ready .s-reveal--d2 { transition-delay: .16s; }
.s-reveal-ready .s-reveal--d3 { transition-delay: .24s; }
.s-reveal-ready .s-reveal--d4 { transition-delay: .32s; }

/* ============================================================
   NAV
   ============================================================ */
.s-nav {
  position: sticky;
  top: 0;
  z-index: 9100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  background: rgba(251,250,247,.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}

.s-nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(251,250,247,.97);
}

.s-nav-logo { flex: none; }
.s-nav-logo img { display: block; height: 40px; width: auto; }

.s-nav-links {
  display: none;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.s-nav-links a {
  font-size: 14.5px;
  color: var(--ink-soft);
  text-decoration: none;
  font-weight: 450;
  transition: color .15s;
}
.s-nav-links a:hover { color: var(--blue-600); }

.s-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}

/* Mobil: pouze logo + Přihlásit se + hamburger */
.s-nav-actions .s-btn--ghost { display: none; }

.s-nav-sep {
  display: none;
  width: 1px;
  height: 20px;
  background: var(--line);
}

.s-hamburger {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  color: var(--ink);
  flex: none;
}

/* Mobile menu */
.s-mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 190;
  background: #fff;
  border-bottom: 1px solid var(--line);
  padding: 8px clamp(20px, 5vw, 60px) 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow-md);
}

.s-mobile-menu[hidden] { display: none; }

.s-mobile-menu a {
  font-size: 16px;
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  padding: 12px 14px;
  border-radius: var(--r-sm);
  transition: background .12s;
  min-height: 44px;
  display: flex;
  align-items: center;
}
.s-mobile-menu a:hover { background: var(--blue-50); }

.s-mobile-menu .s-mobile-login {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  color: var(--blue-600);
  font-weight: 600;
}

@media (min-width: 768px) {
  .s-nav-links { display: flex; }
  .s-nav-sep { display: block; }
  .s-hamburger { display: none; }
  .s-nav-actions .s-btn--ghost { display: inline-flex; }
}

/* ============================================================
   HERO ORBS — animated background atmosphere
   ============================================================ */
.s-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.s-hero__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: .22;
  transform: translate3d(0,0,0);
  will-change: transform;
}

.s-hero__orb--blue {
  width: 620px;
  height: 620px;
  right: 4%;
  top: 6%;
  background: #0E6FB8;
  animation: orbMoveBlue 24s ease-in-out infinite alternate;
}

.s-hero__orb--cyan {
  width: 520px;
  height: 520px;
  right: 28%;
  top: 22%;
  background: #7DDCFF;
  opacity: .18;
  animation: orbMoveCyan 28s ease-in-out infinite alternate;
}

.s-hero__orb--violet {
  width: 560px;
  height: 560px;
  right: 12%;
  bottom: -18%;
  background: #B9A7FF;
  opacity: .16;
  animation: orbMoveViolet 30s ease-in-out infinite alternate;
}

.s-hero__orb--pink {
  width: 420px;
  height: 420px;
  left: 8%;
  top: 16%;
  background: #F2B8FF;
  opacity: .08;
  animation: orbMovePink 32s ease-in-out infinite alternate;
}

@keyframes orbMoveBlue {
  from { transform: translate3d(0,     0,    0) scale(1);    }
  to   { transform: translate3d(-70px, 45px, 0) scale(1.12); }
}
@keyframes orbMoveCyan {
  from { transform: translate3d(0,    0,     0) scale(1);    }
  to   { transform: translate3d(80px, -35px, 0) scale(1.08); }
}
@keyframes orbMoveViolet {
  from { transform: translate3d(0,     0,     0) scale(1);    }
  to   { transform: translate3d(-40px, -70px, 0) scale(1.15); }
}
@keyframes orbMovePink {
  from { transform: translate3d(0,    0,    0) scale(1);   }
  to   { transform: translate3d(50px, 30px, 0) scale(1.1); }
}

@media (prefers-reduced-motion: reduce) {
  .s-hero__orb { animation: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.s-hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding: clamp(40px, 6vw, 80px) 0 0;
  text-align: center;
}

/* Ambient gradient orbs — stronger, 4 colors */
.s-hero::before {
  content: '';
  position: absolute;
  inset: -25% -20%;
  background:
    radial-gradient(ellipse 62% 58% at 10% 12%,  rgba(14,111,184,.26)  0%, transparent 52%),
    radial-gradient(ellipse 52% 52% at 88% 8%,   rgba(107,93,231,.20)  0%, transparent 52%),
    radial-gradient(ellipse 48% 44% at 56% 94%,  rgba(34,185,138,.13)  0%, transparent 50%),
    radial-gradient(ellipse 42% 40% at 92% 65%,  rgba(56,189,248,.16)  0%, transparent 50%);
  animation: heroAmbient 20s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}


@keyframes heroAmbient {
  0%   { transform: scale(1)    translate(0,    0);    }
  35%  { transform: scale(1.04) translate(1.5%, 2.5%); }
  70%  { transform: scale(1.02) translate(-1%,  1.5%); }
  100% { transform: scale(1.03) translate(2%,  -1.5%); }
}

@media (prefers-reduced-motion: reduce) {
  .s-hero::before { animation: none; }
}

.s-hero__inner {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Decorative illustration — small, right of headline */
.s-hero__inner {
  position: relative;
}

.s-hero__bg-illo {
  display: none;
}

.s-hero__bg-illo img {
  width: 100%;
  height: auto;
  display: block;
}

/* Hide on small screens — would overlap centred text */
@media (max-width: 679px) {
  .s-hero__bg-illo { display: none; }
}

@keyframes heroIlloFloat {
  0%, 100% { transform: rotate(12deg) translateY(0px);  }
  50%       { transform: rotate(11deg) translateY(-7px); }
}

@media (prefers-reduced-motion: reduce) {
  .s-hero__bg-illo { animation: none; }
}

/* Hero content sits above the decorative illo */
.s-hero__pill,
.s-hero__h1,
.s-hero__lead,
.s-hero__actions,
.s-hero__note,
.s-hero__routing,
.s-hero__visual {
  position: relative;
  z-index: 1;
}

/* Lottie wave — dekorativní pozadí za nadpisem (zatím skryto) */
.s-hero__lottie {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.25;
  display: none;
}

.s-hero__lottie svg { width: 100% !important; height: auto !important; display: block; }

@media (prefers-reduced-motion: reduce) {
  .s-hero__lottie { display: none; }
}

/* Plovoucí ikonky v hero pozadí */
.s-hero__floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

@keyframes heroFloatAppear {
  0%   { opacity: 0;    transform: translateY(4px) scale(.96); }
  15%  { opacity: .13;  transform: translateY(0)   scale(1);   }
  50%  { opacity: .13;  transform: translateY(0)   scale(1);   }
  65%  { opacity: 0;    transform: translateY(-4px) scale(.96); }
  100% { opacity: 0;    transform: translateY(-4px) scale(.96); }
}

.s-hero__float--a {
  position: absolute;
  width: 48px; height: 48px;
  object-fit: contain;
  top: 22%; left: 8%;
  animation: heroFloatAppear 12s ease-in-out 1s infinite both;
}

.s-hero__float--b {
  position: absolute;
  width: 48px; height: 48px;
  object-fit: contain;
  top: 35%; right: 10%;
  animation: heroFloatAppear 12s ease-in-out 5s infinite both;
}

.s-hero__float--c {
  position: absolute;
  width: 48px; height: 48px;
  object-fit: contain;
  bottom: 18%; left: 18%;
  animation: heroFloatAppear 12s ease-in-out 9s infinite both;
}

@media (max-width: 767px) {
  .s-hero__float--a { width: 28px; height: 28px; top: 14%; left: 4%; }
  .s-hero__float--b { width: 28px; height: 28px; top: 22%; right: 4%; }
  .s-hero__float--c { width: 28px; height: 28px; bottom: 12%; left: 8%; }
}

@media (prefers-reduced-motion: reduce) {
  .s-hero__floats { display: none; }
}

/* Announcement pill */
.s-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--s-radius-pill);
  padding: 5px 14px 5px 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
  text-decoration: none;
}

.s-hero__pill:hover { border-color: var(--blue-300); }

.s-hero__pill-badge {
  background: var(--blue-50);
  color: var(--blue-700);
  font-weight: 600;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--s-radius-pill);
  letter-spacing: .02em;
}

/* Headline */
.s-hero__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 7vw, 82px);
  letter-spacing: -.04em;
  line-height: 1.02;
  color: var(--ink);
  max-width: 18ch;
  margin: 0 auto;
}

.s-hero__accent {
  background: linear-gradient(
    90deg,
    var(--blue-600) 0%,
    #7B61FF       22%,
    #38BDF8       44%,
    var(--blue-600) 66%,
    #7B61FF       88%,
    var(--blue-500) 100%
  );
  background-size: 300% 100%;
  background-position: 100% 0%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentSweep 1.6s cubic-bezier(.22, 1, .36, 1) .4s forwards;
}

@keyframes accentSweep {
  from { background-position: 100% 0%; }
  to   { background-position:   0% 0%; }
}

@media (prefers-reduced-motion: reduce) {
  .s-hero__accent {
    animation: none;
    background-position: 0% 0%;
  }
}

.s-hero__lead {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--ink-soft);
  line-height: 1.55;
  max-width: 52ch;
  margin: 22px auto 0;
}

.s-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

@media (min-width: 480px) {
  .s-hero__actions { flex-direction: row; justify-content: center; }
}

.s-hero__note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--muted);
}

/* USP mikrolinka pod hero CTA — „Nasazení do 60 minut" */
.s-hero__usp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 15px;
  color: var(--n-600);
}
.s-hero__usp svg,
.s-hero__usp i {
  color: var(--blue-600);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .s-hero__usp {
    align-items: flex-start;
  }
  .s-hero__usp span {
    text-align: left;
  }
}

/* Hero visual — browser-framed screenshot */
.s-hero__visual {
  position: relative;
  margin-top: 64px;
  z-index: 1;
}

/* Glow behind visual */
.s-hero__visual::before {
  content: '';
  position: absolute;
  inset: 5% 10% -8% 10%;
  background: radial-gradient(ellipse 80% 60% at 50% 40%,
    rgba(14,111,184,.22) 0%,
    rgba(142,118,222,.14) 40%,
    transparent 70%);
  pointer-events: none;
  filter: blur(32px);
  z-index: 0;
}

.s-hero__browser {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: var(--s-radius-xl) var(--s-radius-xl) 0 0;
  border: 1px solid rgba(0,0,0,.08);
  border-bottom: none;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.04),
    0 32px 80px rgba(27,33,38,.14),
    0 8px 24px rgba(27,33,38,.08);
  overflow: hidden;
}

.s-hero__browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  background: #F6F5F2;
  border-bottom: 1px solid rgba(0,0,0,.07);
}

.s-hero__browser-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.s-hero__browser-dot:nth-child(1) { background: #FC5F57; }
.s-hero__browser-dot:nth-child(2) { background: #FDBE2B; }
.s-hero__browser-dot:nth-child(3) { background: #27C840; }

.s-hero__browser-url {
  flex: 1;
  height: 24px;
  background: #fff;
  border-radius: var(--s-radius-sm);
  border: 1px solid rgba(0,0,0,.08);
  margin: 0 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 6px;
}

.s-hero__browser-url span {
  font-size: 11px;
  color: var(--muted);
  font-family: var(--font-body);
}

.s-hero__screenshot {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   HERO — 50/50 routing (FIRMY / GASTRO) — Vercel-like panel
   ============================================================ */
/* Wrapper zarovná routing přesně na grid linky */
.s-hero__routing-outer {
  width: calc(100% - 2 * var(--gutter));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

.s-hero__routing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: transparent;
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  text-align: left;
}

@media (min-width: 680px) {
  .s-hero__routing {
    grid-template-columns: 1fr 1px 1fr;
  }
}

.s-hero__route {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 3.5vw, 36px) clamp(24px, 3.5vw, 40px);
  color: inherit;
  position: relative;
  transition: background .2s var(--ease);
  cursor: pointer;
}

/* Top accent line — skrytá, zobrazí se jen při hoveru */
.s-hero__route::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}

.s-hero__route--firmy::before  { background: #0E6FB8; }
.s-hero__route--gastro::before { background: var(--mint-500); }

/* Hover: bílé pozadí + accent linka */
.s-hero__route--firmy:hover  { background: #ffffff; }
.s-hero__route--gastro:hover { background: #ffffff; }

.s-hero__route:hover::before { transform: scaleX(1); }

/* Icon lifts 2–3px on hover */
.s-hero__route:hover .s-hero__route-icon {
  transform: translateY(-3px);
}

/* CTA link shifts slightly on hover */
.s-hero__route:hover .s-hero__route-btns {
  transform: translateY(-2px);
}

/* Divider between panels */
.s-hero__route-divider {
  background: rgba(0,0,0,.07);
  width: 100%;
  height: 1px;
  flex: none;
}

@media (min-width: 680px) {
  .s-hero__route-divider {
    width: 1px;
    height: auto;
  }
}

/* Header row */
.s-hero__route-head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.s-hero__route-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  flex: none;
  transition: transform .22s var(--ease);
}

.s-hero__route--firmy .s-hero__route-icon  { background: var(--blue-50); }
.s-hero__route--gastro .s-hero__route-icon { background: var(--mint-50); }

@media (min-width: 680px) {
  .s-hero__route--firmy { padding-left: clamp(80px, 12vw, 160px); }
}


.s-hero__route-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.s-hero__route--firmy .s-hero__route-label  { color: var(--blue-600); }
.s-hero__route--gastro .s-hero__route-label { color: var(--mint-700); }

/* Heading */
.s-hero__route-h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.3vw, 26px);
  letter-spacing: -.025em;
  line-height: 1.2;
  color: var(--ink);
  margin: 0;
}

/* Feature list */
.s-hero__route-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}

.s-hero__route-list li {
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.4;
}

.s-hero__route--firmy .s-hero__route-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex: none;
  background: var(--blue-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%230E6FB8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}

.s-hero__route--gastro .s-hero__route-list li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex: none;
  background: var(--mint-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23149E73' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}

/* CTA buttons row */
.s-hero__route-btns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 4px;
  transition: transform .22s var(--ease);
}

.s-hero__route-cta {
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity .15s;
}

.s-hero__route-cta:hover { opacity: .7; }

.s-hero__route--firmy .s-hero__route-cta  { color: var(--blue-700); }
.s-hero__route--gastro .s-hero__route-cta { color: var(--mint-700); }

/* Strip pod rozcestníkem — „chci obědy" */
.s-hero__route-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 18px clamp(24px, 3.5vw, 40px);
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
  background: var(--n-50);
  text-decoration: none;
  transition: background .2s var(--ease);
}
.s-hero__route-strip:hover {
  background: #ffffff;
}

@media (min-width: 680px) {
  .s-hero__route-strip { justify-content: center; }
}
.s-hero__route-strip-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--n-600);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.s-hero__route-strip-arrow {
  display: inline-block;
  transition: transform .2s ease, color .2s ease;
}
.s-hero__route-strip:hover .s-hero__route-strip-arrow {
  transform: translateX(4px);
  color: var(--blue-700);
}

@media (max-width: 375px) {
  .s-hero__route-strip { padding: 16px clamp(24px, 3.5vw, 40px); }
}

/* ============================================================
   End hero routing
   ============================================================ */

/* Routing strip — below hero visual */
.s-routing-strip {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.s-routing-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 720px) {
  .s-routing-inner { grid-template-columns: 1fr 1px 1fr; }
}

.s-route-panel {
  padding: clamp(28px, 4vw, 48px) clamp(24px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background .2s;
}

.s-route-panel:hover { background: var(--n-50); }

.s-route-divider {
  background: var(--line);
  width: 100%;
  height: 1px;
}

@media (min-width: 720px) {
  .s-route-divider { width: 1px; height: auto; }
}

.s-route-panel__label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.s-route-panel--gastro .s-route-panel__label { color: var(--mint-700); }

.s-route-panel__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--blue-50);
  display: grid;
  place-items: center;
}

.s-route-panel--gastro .s-route-panel__icon { background: var(--mint-50); }

.s-route-panel__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--ink);
}

.s-route-panel__p {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 42ch;
}

.s-route-panel__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

/* ============================================================
   LOGOS MARQUEE
   ============================================================ */
.s-logos {
  padding: 36px 0;
  position: relative;
  z-index: 9001;
  background: var(--paper);
}

.s-logos__label {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted-soft);
  margin-bottom: 20px;
}

.s-logos__outer {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.s-logos__track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: sLogoMarquee 38s linear infinite;
}

.s-logos__outer:hover .s-logos__track { animation-play-state: paused; }

@keyframes sLogoMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .s-logos__track { animation: none; }
}

.s-logo-slot {
  width: 140px;
  height: 52px;
  flex: none;
  background: var(--n-50);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-soft);
}

.s-logo-slot span {
  font-size: 12px;
  font-weight: 600;
  color: var(--muted-soft);
  letter-spacing: .03em;
}

/* ============================================================
   NUMBERS — dark strip
   ============================================================ */
.s-numbers {
  background: var(--ink);
  padding: clamp(52px, 7vw, 88px) 0;
}

/* 5 položek: 1 sloupec (mobil) → 2 (600px) → 3 (768px) → auto-fit 5 (1024px+) */
.s-numbers__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px 0;
}

@media (min-width: 600px) {
  .s-numbers__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .s-numbers__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .s-numbers__grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); }
}

.s-number-item {
  text-align: center;
  position: relative;
}

@media (min-width: 600px) {
  .s-number-item + .s-number-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(255,255,255,.10);
  }
  /* první položka v řádku (2sloupcový rozvrh 600–767px) nemá souseda vlevo */
  .s-number-item:nth-child(3)::before { display: none; }
}

@media (min-width: 768px) {
  /* od 768px je rozvrh 3sloupcový — druhá řádka začíná 4. položkou */
  .s-number-item:nth-child(3)::before { display: block; }
  .s-number-item:nth-child(4)::before { display: none; }
}

@media (min-width: 1024px) {
  /* od 1024px se vejde všech 5 do jedné řady — dělítko mají všechny kromě první */
  .s-number-item:nth-child(4)::before { display: block; }
}

/* USP dlaždice (60 minut) má vlastní oddělení — číslo je mintové, ne modré */
.s-number-item--usp::before { display: none !important; }

.s-number-item--usp {
  border-left: 1px solid rgba(255,255,255,.10);
}

@media (max-width: 767px) {
  /* na zalomených šířkách (1 a 2sloupcový rozvrh) je dlaždice vždy první ve svém řádku */
  .s-number-item--usp { border-left: none; }
}

.s-number-item__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 5vw, 54px);
  letter-spacing: -.04em;
  line-height: 1;
  color: var(--blue-300);
  display: block;
}

.s-number-item--usp .s-number-item__num {
  color: var(--mint-300);
  white-space: nowrap;
}

.s-number-item__num-unit {
  font-size: .42em;
  letter-spacing: -.02em;
}

.s-number-item__label {
  font-size: 14px;
  color: rgba(255,255,255,.50);
  margin-top: 8px;
  line-height: 1.4;
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PRODUCT SHOWCASE — intro 3-col features
   ============================================================ */
/* ============================================================
   EDITORIAL ROWS — numbered showcase (01 / 02 / 03)
   ============================================================ */
.s-editorial {
  background: #fff;
  padding: clamp(80px, 10vw, 130px) 0;
}

/* Intro */
.s-editorial__intro {
  max-width: 44ch;
  margin-bottom: clamp(64px, 8vw, 100px);
}

.s-editorial__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.8vw, 56px);
  letter-spacing: -.04em;
  line-height: 1.05;
  color: var(--ink);
  margin: 10px 0 0;
}

.s-editorial__lead {
  font-size: clamp(16px, 1.8vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 14px;
}

/* Each row */
.s-ed-row {
  position: relative;
  padding: clamp(48px, 6vw, 80px) 0;
}

/* Large decorative number */
.s-ed-row__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(96px, 18vw, 200px);
  line-height: 1;
  letter-spacing: -.06em;
  color: var(--blue-50);
  position: absolute;
  top: clamp(20px, 3vw, 40px);
  left: -20px;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.s-ed-row--alt .s-ed-row__num {
  left: auto;
  right: -20px;
}

/* Inner grid — text + visual */
.s-ed-row__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 760px) {
  .s-ed-row__inner {
    grid-template-columns: 1fr 1fr;
  }
  /* Alt row: visual first (CSS order) */
  .s-ed-row--alt .s-ed-row__text { order: 2; }
  .s-ed-row--alt .s-ed-row__visual { order: 1; }
}

/* Text side */
.s-ed-row__text {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-left: clamp(0px, 4vw, 48px);
}

.s-ed-row--alt .s-ed-row__text {
  padding-left: 0;
  padding-right: clamp(0px, 4vw, 48px);
}

@media (max-width: 759px) {
  .s-ed-row__text,
  .s-ed-row--alt .s-ed-row__text {
    padding-left: 0;
    padding-right: 0;
  }
}

.s-ed-row__label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--blue-600);
}

.s-ed-row__h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 52px);
  letter-spacing: -.04em;
  line-height: 1.06;
  color: var(--ink);
  margin: 0;
}

.s-ed-row__p {
  font-size: clamp(15px, 1.7vw, 18px);
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 42ch;
}

.s-ed-row__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  margin-top: 4px;
  transition: gap .15s var(--ease);
}
.s-ed-row__link:hover { gap: 10px; }

/* Visual side */
.s-ed-row__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.s-ed-row__visual img {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  display: block;
  filter: drop-shadow(0 16px 40px rgba(27,33,38,.10));
  transition: transform .4s var(--ease);
}

.s-ed-row__visual:hover img {
  transform: translateY(-6px) scale(1.03);
}

/* Divider between rows */
.s-ed-divider {
  height: 1px;
  background: var(--line-soft);
  margin: 0;
}

/* ============================================================
   GRADIENT MOMENT — aurora orbs
   ============================================================ */
.s-gradient-moment {
  position: relative;
  overflow: hidden;
  background: #080D18;
  padding: clamp(88px, 11vw, 140px) 0;
  text-align: center;
}

/* Three animated orbs */
.s-gm-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}

.s-gm-orb--azure {
  width: clamp(300px, 55vw, 700px);
  height: clamp(300px, 55vw, 700px);
  background: rgba(14, 111, 184, .65);
  top: -25%;
  left: -15%;
  animation: orbAzure 14s ease-in-out infinite alternate;
}

.s-gm-orb--violet {
  width: clamp(260px, 48vw, 620px);
  height: clamp(260px, 48vw, 620px);
  background: rgba(142, 118, 222, .72);
  top: 10%;
  right: -12%;
  animation: orbViolet 11s ease-in-out infinite alternate;
}

.s-gm-orb--pink {
  width: clamp(220px, 40vw, 520px);
  height: clamp(220px, 40vw, 520px);
  background: rgba(226, 150, 196, .55);
  bottom: -20%;
  left: 28%;
  animation: orbPink 16s ease-in-out infinite alternate;
}

@keyframes orbAzure {
  from { transform: translate(0,    0)    scale(1);    }
  to   { transform: translate(10%,  18%)  scale(1.12); }
}
@keyframes orbViolet {
  from { transform: translate(0,    0)    scale(1.05); }
  to   { transform: translate(-14%, 10%)  scale(0.92); }
}
@keyframes orbPink {
  from { transform: translate(0,    0)    scale(0.9);  }
  to   { transform: translate(8%,  -16%)  scale(1.1);  }
}

@media (prefers-reduced-motion: reduce) {
  .s-gm-orb { animation: none; }
}

/* Subtle noise overlay for texture */
.s-gradient-moment::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  opacity: .35;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}

/* Content */
.s-gm-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.s-gm-kicker {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin: 0;
}

.s-gm-h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 72px);
  letter-spacing: -.045em;
  line-height: 1.04;
  color: #fff;
  margin: 0;
}

.s-gm-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,.55);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0;
}

.s-gm-cta {
  margin-top: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.28);
  backdrop-filter: blur(8px);
  transition: background .2s, border-color .2s;
}
.s-gm-cta:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.50);
}

/* ============================================================
   EXPERIENCE SECTIONS — full-width alternating
   ============================================================ */
.s-exp {
  background: #fff;
  overflow: hidden;
}

.s-exp--alt {
  background: var(--n-50);
  position: relative;
}

/* Horizontální linka gridu — odděluje sekce na šířce containeru */
.s-exp--alt::before {
  content: '';
  position: absolute;
  top: 0;
  left:  max(var(--gutter), calc(50% - var(--container) / 2));
  right: max(var(--gutter), calc(50% - var(--container) / 2));
  height: 1px;
  background: rgba(14, 111, 184, .15);
  pointer-events: none;
  z-index: 1;
}

/* Modrý odlesk přejíždějící po lince */
.s-exp--alt::after {
  content: '';
  position: absolute;
  top: 0;
  left:  max(var(--gutter), calc(50% - var(--container) / 2));
  right: max(var(--gutter), calc(50% - var(--container) / 2));
  height: 1px;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, transparent 0%, #0E6FB8 50%, transparent 100%);
  background-size: 160px 100%;
  background-repeat: no-repeat;
  background-position: -160px 0;
}

.s-exp--alt.s-line-visible::after {
  animation: lineShineSweep 1.4s cubic-bezier(.4, 0, .2, 1) forwards;
}

@keyframes lineShineSweep {
  from { background-position: -160px 0; }
  to   { background-position: calc(100% + 160px) 0; }
}

@media (prefers-reduced-motion: reduce) {
  .s-exp--alt::after { display: none; }
}

.s-exp__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}

@media (min-width: 900px) {
  .s-exp__grid {
    grid-template-columns: 1fr 1fr;
    gap: clamp(48px, 6vw, 96px);
  }

  .s-exp--alt .s-exp__text { order: 2; }
  .s-exp--alt .s-exp__visual { order: 1; }
}

.s-exp__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s-exp__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}

.s-exp__lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-soft);
  line-height: 1.65;
}

.s-exp__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s-exp__features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
}

.s-exp__features li::before {
  content: '';
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%230E6FB8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
  margin-top: 2px;
}

.s-exp__link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  margin-top: 4px;
  transition: gap .15s;
}
.s-exp__link:hover { gap: 10px; }

.s-exp__visual {
  position: relative;
}

.s-exp__img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0,0,0,.05),
    0 24px 60px rgba(27,33,38,.12),
    0 6px 16px rgba(27,33,38,.07);
}

.s-exp__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Floating badge on screenshot */
.s-exp__badge {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.s-exp__badge--tl { top: -16px; left: -16px; }
.s-exp__badge--br { bottom: -16px; right: -16px; }

@media (max-width: 479px) {
  .s-exp__badge--tl { top: 12px; left: 12px; }
  .s-exp__badge--br { bottom: 12px; right: 12px; }
}

.s-exp__badge-icon {
  width: 32px;
  height: 32px;
  border-radius: var(--r-sm);
  background: var(--blue-50);
  display: grid;
  place-items: center;
  flex: none;
}

.s-exp__badge-text strong {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
  display: block;
}

.s-exp__badge-text span {
  font-size: 12px;
  color: var(--muted);
}

/* Glow accent behind visual */
.s-exp__glow {
  position: absolute;
  inset: -20% -20%;
  background: radial-gradient(ellipse 60% 55% at 50% 50%,
    rgba(14,111,184,.12) 0%, transparent 65%);
  pointer-events: none;
  z-index: -1;
}

/* ============================================================
   SOCIAL PROOF — editorial testimonials
   ============================================================ */
.s-proof {
  background: var(--ink);
  padding: clamp(80px, 10vw, 130px) 0;
}

.s-proof__head {
  text-align: center;
  margin-bottom: clamp(52px, 6vw, 80px);
}

.s-proof__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--blue-300);
  margin-bottom: 16px;
}

.s-proof__eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--blue-300);
  border-radius: 2px;
}

.s-proof__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -.035em;
  line-height: 1.08;
  color: #fff;
  margin: 0;
}

/* Grid: 1 large + 2 smaller */
.s-proof__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 720px) {
  .s-proof__grid {
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
    align-items: start;
  }
}

@media (min-width: 1000px) {
  .s-proof__grid {
    grid-template-columns: 1.4fr 1fr;
    gap: 24px;
  }
}

.s-proof__stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s-proof-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
}

.s-proof-card--large {
  padding: clamp(28px, 4vw, 44px);
}

.s-proof-card__stars {
  display: flex;
  gap: 3px;
  color: #F5C842;
  margin-bottom: 20px;
}

.s-proof-card__quote {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,.88);
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 24px;
}

.s-proof-card--large .s-proof-card__quote {
  font-size: clamp(17px, 2.4vw, 22px);
}

.s-proof-card__who {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.s-proof-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  flex: none;
}

.s-proof-card__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: #fff;
  display: block;
}

.s-proof-card__role {
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* ============================================================
   PRICING TEASER
   ============================================================ */
.s-pricing {
  background: #fff;
  position: relative;
  overflow: hidden;
}


.s-pricing::before {
  content: '';
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(ellipse 50% 60% at 10% 30%, rgba(14,111,184,.18) 0%, transparent 55%),
    radial-gradient(ellipse 45% 55% at 90% 70%, rgba(142,118,222,.15) 0%, transparent 55%);
  pointer-events: none;
}

.s-pricing__head {
  text-align: center;
  max-width: 56ch;
  margin: 0 auto clamp(52px, 6vw, 80px);
  position: relative;
}

.s-pricing__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 46px);
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}

.s-pricing__lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-top: 14px;
}

/* Grid-outer — zarovnán na grid linky stejně jako hero routing */
.s-pricing__grid-outer {
  width: calc(100% - 2 * var(--gutter));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  margin-top: clamp(32px, 4vw, 52px);
}

.s-pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 640px) {
  .s-pricing__grid { grid-template-columns: 1fr 1fr; }
}

.s-pricing-card {
  border-radius: 0;
  padding: clamp(28px, 3.5vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Karty — transparentní, top border panel, vertikální dělič */
.s-pricing__grid {
  border-top: 1px solid rgba(0,0,0,.08);
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.s-pricing-card {
  position: relative;
  background: transparent;
  transition: background .2s var(--ease);
}

/* Vertikální dělič mezi kartami */
.s-pricing-card--firmy {
  border-right: 1px solid rgba(0,0,0,.08);
}

/* Top accent linka — skrytá, objeví se na hover */
.s-pricing-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .3s var(--ease);
}
.s-pricing-card--firmy::before  { background: #0E6FB8; }
.s-pricing-card--gastro::before { background: var(--mint-500); }
.s-pricing-card:hover::before   { transform: scaleX(1); }

/* Hover tint */
.s-pricing-card--firmy:hover  { background: rgba(14,111,184,.04); }
.s-pricing-card--gastro:hover { background: rgba(34,185,138,.04); }

.s-pricing-card__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.s-pricing-card--firmy .s-pricing-card__label  { color: var(--blue-600); }
.s-pricing-card--gastro .s-pricing-card__label { color: var(--mint-700); }

.s-pricing-card__h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 26px);
  letter-spacing: -.025em;
  line-height: 1.15;
  color: var(--ink);
}

.s-pricing-card__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.s-pricing-card__features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.s-pricing-card__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--ink-soft);
}

.s-pricing-check {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.s-pricing-card--firmy .s-pricing-check {
  background: var(--blue-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%230E6FB8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}

.s-pricing-card--gastro .s-pricing-check {
  background: var(--mint-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9' height='9' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23149E73' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}

.s-pricing-card__cta {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-pricing-card__try {
  font-size: 13px;
  text-decoration: none;
  font-weight: 500;
  text-align: center;
  color: var(--muted);
}
.s-pricing-card__try:hover { color: var(--blue-600); }

.s-pricing__enterprise {
  text-align: center;
  margin-top: 32px;
  font-size: 14.5px;
  color: var(--muted);
}
.s-pricing__enterprise a { color: var(--blue-600); text-decoration: none; font-weight: 500; }
.s-pricing__enterprise a:hover { text-decoration: underline; }

/* ============================================================
   DEMO REQUEST
   ============================================================ */
.s-demo {
  background: var(--n-50);
  position: relative;
  overflow: hidden;
}

.s-demo::before {
  content: '';
  position: absolute;
  inset: -20% -15%;
  background:
    radial-gradient(ellipse 50% 60% at 5% 50%, rgba(14,111,184,.09) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 95% 40%, rgba(142,118,222,.07) 0%, transparent 55%);
  pointer-events: none;
}

.s-demo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  position: relative;
}

@media (min-width: 860px) {
  .s-demo__grid {
    grid-template-columns: 1fr 1.1fr;
    gap: clamp(48px, 6vw, 88px);
    align-items: start;
  }
}

.s-demo__text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.s-demo__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.8vw, 44px);
  letter-spacing: -.035em;
  line-height: 1.08;
  color: var(--ink);
  margin: 0;
}

.s-demo__lead {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--ink-soft);
  line-height: 1.65;
}

.s-demo__benefits {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.s-demo__benefits li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.s-demo__benefits li::before {
  content: '';
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--mint-50)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24'%3E%3Cpath d='M5 13l4 4L19 7' stroke='%23149E73' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
    no-repeat center;
}

/* Form card */
.s-demo__card {
  background: #fff;
  border-radius: 20px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow:
    0 0 0 1px rgba(14,111,184,.07),
    0 24px 60px rgba(14,111,184,.09),
    0 6px 16px rgba(27,33,38,.06);
}

.s-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.s-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

@media (max-width: 519px) {
  .s-form__row { grid-template-columns: 1fr; }
}

.s-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.s-form__field label {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
}

.s-form__field input,
.s-form__field select,
.s-form__field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  background: var(--n-50);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}

.s-form__field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%2379828C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-color: var(--n-50);
  padding-right: 36px;
  cursor: pointer;
}

.s-form__field input::placeholder,
.s-form__field textarea::placeholder { color: var(--n-600); } /* var(--muted-soft) dávalo jen 2.5:1 na klidovém poli a 2.61:1 po fokusu — nesplňovalo WCAG AA 4.5:1 */

.s-form__field input:focus,
.s-form__field select:focus,
.s-form__field textarea:focus {
  border-color: var(--blue-600);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(14,111,184,.12);
}

.s-form__field textarea {
  resize: vertical;
  min-height: 80px;
}

.s-form__submit {
  width: 100%;
  margin-top: 4px;
  font-size: 16px;
}

.s-form__note {
  font-size: 12.5px;
  color: var(--muted);
  text-align: center;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.s-cta-final {
  position: relative;
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
  text-align: center;
  overflow: hidden;
}

.s-cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 90% at 12% 0%,  rgba(14,111,184,.45), transparent 55%),
    radial-gradient(ellipse 55% 80% at 88% 100%, rgba(34,185,138,.30), transparent 55%),
    radial-gradient(ellipse 40% 60% at 50% 50%,  rgba(142,118,222,.18), transparent 60%);
  pointer-events: none;
}

.s-cta-final__inner {
  position: relative;
  z-index: 1;
}

.s-cta-final__h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -.04em;
  line-height: 1.04;
  color: #fff;
  max-width: 20ch;
  margin: 0 auto;
}

.s-cta-final__lead {
  font-size: clamp(15px, 1.8vw, 19px);
  color: rgba(255,255,255,.62);
  margin: 18px auto 0;
  max-width: 48ch;
  line-height: 1.55;
}

.s-cta-final__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-top: 36px;
}

@media (min-width: 480px) {
  .s-cta-final__actions { flex-direction: row; justify-content: center; }
}

.s-cta-final__note {
  margin-top: 20px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ============================================================
   FOOTER — full
   ============================================================ */
.s-footer {
  background: #fff;
  border-top: 1px solid var(--line);
}

/* --- Payment logos row --- */
.s-footer__payments {
  border-bottom: 1px solid var(--line-soft);
  padding: 20px 0;
}

.s-footer__pay-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.s-pay-badge {
  height: 36px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  flex: none;
}

.s-pay-badge--text {
  gap: 5px;
  padding: 6px 10px;
}

.s-pay-badge--text span {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}

.s-pay-badge__gopay {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: #007AFF;
}

/* --- Main grid --- */
.s-footer__main {
  padding: 56px 0 48px;
}

.s-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 32px;
}

@media (min-width: 640px) {
  .s-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .s-footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; gap: 0 40px; }
}

/* Brand column */
.s-footer__brand-logo { display: block; }

.s-footer__tagline {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 14px;
  max-width: 26ch;
}

/* Column heading */
.s-footer__col-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0 0 16px;
}

/* Nav links list */
.s-footer__col-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.s-footer__col-links a,
.s-footer__col-links span {
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  transition: color .15s;
  line-height: 1.4;
}

.s-footer__col-links a:hover { color: var(--blue-600); }

.s-footer__col-links--contact span { color: var(--ink-soft); }

/* Newsletter */
.s-footer__nl-row {
  display: flex;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--n-50);
  transition: border-color .15s;
}

.s-footer__nl-row:focus-within { border-color: var(--blue-600); background: #fff; }

.s-footer__nl-row input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 12px;
  font-family: var(--font-body);
  font-size: 13.5px;
  color: var(--ink);
  outline: none;
  min-width: 0;
}

.s-footer__nl-row input::placeholder { color: var(--muted-soft); }

.s-footer__nl-row button {
  flex: none;
  width: 40px;
  background: var(--blue-600);
  color: #fff;
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s;
}

.s-footer__nl-row button:hover { background: var(--blue-700); }

/* Social icons */
.s-footer__social {
  display: flex;
  gap: 8px;
  margin-top: 8px;
}

.s-footer__social a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--muted);
  text-decoration: none;
  transition: border-color .15s, color .15s, background .15s;
}

.s-footer__social a:hover {
  border-color: var(--blue-300);
  color: var(--blue-600);
  background: var(--blue-50);
}

/* Language toggle */
.s-footer__lang {
  display: inline-block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  transition: color .15s;
}
.s-footer__lang:hover { color: var(--blue-700); }

/* --- Bottom bar --- */
.s-footer__bottom {
  border-top: 1px solid var(--line-soft);
  padding: 16px 0;
}

.s-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (min-width: 560px) {
  .s-footer__bottom-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.s-footer__bottom-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--blue-600);
  text-decoration: none;
}

.s-footer__copy {
  font-size: 13px;
  color: var(--muted-soft);
}

/* ============================================================
   EMPLOYEE STRIP
   ============================================================ */
.s-employee-strip {
  background: #fff;
  padding: 10px 0;
  position: relative;
  z-index: 9001;
}

.s-employee-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.s-strip-label {
  font-size: 14px;
  color: var(--ink-soft);
  font-weight: 500;
}

.s-strip-link {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue-600);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color .15s;
}
.s-strip-link:hover { color: var(--blue-700); text-decoration: underline; }

.s-strip-sep {
  width: 1px;
  height: 18px;
  background: var(--line);
  flex: none;
}

.s-strip-dot {
  color: var(--line);
  font-size: 16px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.s-text-center { text-align: center; }
.s-mt-auto { margin-top: auto; }

/* Hidden visually but accessible */
.s-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   MEDIA & PARTNERS LOGOS
   ============================================================ */
.s-media-logos {
  background: #fff;
  padding: 40px 0;
  position: relative;
  z-index: 9001; /* nad grid linkami */
  border-top: 1px solid var(--line-soft);
}

.s-media-logos__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 720px) {
  .s-media-logos__grid {
    grid-template-columns: 1fr 1px 1fr;
    align-items: center;
    gap: 0;
  }
}

.s-media-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 clamp(16px, 3vw, 40px);
  min-width: 0;
}

.s-media-group__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-soft);
}

/* Statický row — 3 loga rovnoměrně */
.s-media-group__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.s-media-slot {
  height: 44px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--s-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  transition: border-color .15s;
}

.s-media-slot:hover { border-color: var(--blue-200); }

.s-media-slot span {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
  letter-spacing: -.01em;
}

/* Svislý oddělovač — přesně 1px, výška celé skupiny */
.s-media-sep {
  display: none;
}

@media (min-width: 720px) {
  .s-media-sep {
    display: block;
    width: 1px;
    background: var(--line);
    align-self: stretch;
  }
}

/* ============================================================
   STRIPE SYSTEM — grid lines, glass, motion
   ============================================================ */

/* Numbers & proof background colors */
.s-numbers { background-color: var(--ink); }
.s-proof   { background-color: var(--ink); }

/* --- Two fixed vertical lines at container edges --- */
body::before,
body::after {
  content: '';
  position: fixed;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(14,111,184,.12);
  pointer-events: none;
  z-index: 9000;
}

body::before {
  left: max(var(--gutter), calc(50% - var(--container) / 2));
}

body::after {
  right: max(var(--gutter), calc(50% - var(--container) / 2));
}

@media (max-width: 679px) {
  body::before { left:  clamp(16px, 5vw, 32px); }
  body::after  { right: clamp(16px, 5vw, 32px); }
}

/* --- Hero note — move up, remove orphaned feel --- */
.s-hero__note {
  margin-top: 10px;
  font-size: 12.5px;
  color: var(--muted);
}

/* --- Mobile: no icon/btn lift on hover (stacked cards) --- */
@media (max-width: 679px) {
  .s-hero__route:hover .s-hero__route-icon,
  .s-hero__route:hover .s-hero__route-btns {
    transform: none;
  }
}

/* --- Reduced motion --- */
@media (prefers-reduced-motion: reduce) {
  .s-hero::before {
    animation: none;
  }
}

/* ============================================================
   RADIUS OVERRIDES — unified system
   ============================================================ */

/* Routing container — edge-to-edge, no radius */
.s-hero__routing         { border-radius: 0; }

/* Route icons */
.s-hero__route-icon      { border-radius: var(--s-radius-sm); }

/* Feature icons in showcase */
.s-feature__icon         { border-radius: var(--s-radius-md); }

/* Logo slots */
.s-logo-slot             { border-radius: var(--s-radius-sm); }

/* Payment badges */
.s-pay-badge             { border-radius: var(--s-radius-sm); }

/* Experience section — screenshot wrap */
.s-exp__img-wrap         { border-radius: var(--s-radius-lg); }

/* Experience badges (floating) */
.s-exp__badge            { border-radius: var(--s-radius-sm); }
.s-exp__badge-icon       { border-radius: var(--s-radius-sm); }

/* Social proof cards */
.s-proof-card            { border-radius: var(--s-radius-lg); }

/* Pricing cards — ostré rohy, edge-to-edge */
.s-pricing-card          { border-radius: 0; }

/* Demo card */
.s-demo__card            { border-radius: var(--s-radius-lg); }

/* Form inputs */
.s-form__field input,
.s-form__field select,
.s-form__field textarea  { border-radius: var(--s-radius-sm); }

/* Newsletter row */
.s-footer__nl-row        { border-radius: var(--s-radius-sm); }

/* Social icon buttons */
.s-footer__social a      { border-radius: var(--s-radius-sm); }

/* Hamburger */
.s-hamburger             { border-radius: var(--s-radius-sm); }

/* Mobile menu items */
.s-mobile-menu a         { border-radius: var(--s-radius-sm); }

/* Nav buttons */
.s-nav-actions .s-btn    { border-radius: var(--s-radius-sm); }
