:root {
  --bg: #0a0a0b;
  --bg-soft: #111214;
  --surface: #151619;
  --surface-2: #1c1d21;
  --text: #f5f5f2;
  --muted: #a8a8a2;
  --ink: #111215;
  --ink-soft: #62636a;
  --light: #f3f2ed;
  --white: #ffffff;
  --accent: #ffd400;
  --accent-2: #ffea66;
  --line-dark: rgba(255,255,255,.11);
  --line-light: rgba(17,18,21,.10);
  --shadow: 0 30px 80px rgba(0,0,0,.30);
  --radius-xl: 22px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shell: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }


.btnimgv{ width: 32px; height: auto; }
.btnimgs{ width: 27px; height: auto; }
.btnimgm{ width: 20px; height: auto; }

.site-shell {
  width: min(var(--shell), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background .25s ease, border-color .25s ease, padding .25s ease, backdrop-filter .25s ease;
}
.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(10,10,11,.82);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(18px);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { position: relative; z-index: 3; display: inline-flex; align-items: center; min-width: 148px; }
.brand img { width: 154px; max-height: 52px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 650; color: rgba(255,255,255,.78); }
.site-nav > a:not(.nav-cta) { transition: color .2s ease; }
.site-nav > a:not(.nav-cta):hover { color: var(--white); }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; padding: 12px 17px; color: var(--ink); background: var(--accent); border-radius: 12px; }
.nav-cta span { transition: transform .2s ease; }
.nav-cta:hover span { transform: translateX(3px); }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line-dark); background: rgba(255,255,255,.05); border-radius: 50%; position: relative; z-index: 3; }
.nav-toggle span { position: absolute; left: 13px; width: 18px; height: 1.5px; background: #fff; transition: transform .25s ease, top .25s ease; }
.nav-toggle span:first-child { top: 18px; }
.nav-toggle span:last-child { top: 25px; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 160px 0 58px;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 20%, rgba(255,212,0,.07), transparent 32%),
    linear-gradient(180deg, #09090a 0%, #0c0d0f 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 80%);
}
.hero__glow { position: absolute; border-radius: 50%; filter: blur(1px); pointer-events: none; }
.hero__glow--one { width: 520px; height: 520px; right: -220px; top: 90px; background: rgba(255,212,0,.09); }
.hero__glow--two { width: 420px; height: 420px; left: -260px; bottom: 80px; background: rgba(87,109,255,.06); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: .88fr 1.12fr; align-items: center; gap: 62px; }
.eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 24px; text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: rgba(255,255,255,.64); }
.eyebrow span { width: 32px; height: 2px; background: var(--accent); }
.eyebrow--dark { color: #6d6e74; }
.hero h1, .contact-hero h1 { margin: 0; max-width: 760px; font-size: clamp(17px, 3.3vw, 50px); line-height: .95; letter-spacing: -.058em; font-weight: 700; }
.hero h1 em, .brand-copy h2 em, .contact-hero h1 em { color: var(--accent); font-style: normal; }
.hero__lead { max-width: 650px; margin: 30px 0 0; font-size: clamp(12px, 1.7vw, 16px); line-height: 1.58; color: #b9bab6; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 38px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 12px; min-height: 54px; padding: 0 22px; border: 0; border-radius: 12px; font-weight: 600; font-size: 22px; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { color: #141414; background: var(--accent); }
.btn--primary:hover { background: var(--accent-2); }
.btn--ghost { color: #fff; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.045); }
.btn--ghost:hover { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.btn--full { width: 100%; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 38px; }
.hero__chips span { padding: 8px 10px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; color: #9FA1A6; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.hero__visual { min-width: 0; }
.product-stage { position: relative; padding: 70px 18px; perspective: 1300px; }
.product-stage::before { content: ""; position: absolute; inset: 10% 5%; border-radius: 50%; background: radial-gradient(circle, rgba(255,212,0,.17), transparent 65%); filter: blur(30px); }
.product-stage__screen { position: relative; z-index: 2; overflow: hidden; padding: 8px; border: 1px solid rgba(255,255,255,.13); border-radius: 24px; background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.02)); box-shadow: 0 50px 100px rgba(0,0,0,.55); transform: rotateY(-6deg) rotateX(2deg); }
.product-stage__screen img { width: 100%; border-radius: 17px; }
.product-stage__badge { position: absolute; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.12); border-radius: 999px; color: #d6d6d1; background: rgba(20,21,24,.88); box-shadow: 0 12px 30px rgba(0,0,0,.28); backdrop-filter: blur(14px); font-size: 11px; font-weight: 700; }
.product-stage__badge--top { right: 2%; top: 24px; }
.product-stage__badge--bottom { left: 0; bottom: 26px; }
.product-stage__badge i { width: 7px; height: 7px; border-radius: 50%; background: #58df82; box-shadow: 0 0 0 5px rgba(88,223,130,.11); }
.hero__metrics { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 60px; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.hero__metrics article { padding: 25px 18px; border-right: 1px solid var(--line-dark); }
.hero__metrics article:last-child { border-right: 0; }
.hero__metrics strong { display: block; color: #fff; font-size: 26px; letter-spacing: -.04em; }
.hero__metrics span { display: block; margin-top: 4px; color: #74777d; font-size: 12px; }

.section { position: relative; padding: 118px 0; }
.section--light { color: var(--ink); background: var(--light); }
.section--dark { color: var(--text); background: var(--bg); }
.section-head { max-width: 1000px; margin-bottom: 56px; }
.section-head h2, .brand-copy h2, .showcase__head h2, .cta-card h2, .contact-form-card h2 { margin: 0; font-size: clamp(14px, 3.3vw, 40px); line-height: 1; letter-spacing: -.052em; font-weight: 600; }
.section-head p, .showcase__head p { max-width: 1000px; margin: 24px 0 0; color: var(--ink-soft); font-size: 18px; line-height: 1.7; }
.section-head--split { max-width: none; display: grid; grid-template-columns: 1fr .64fr; gap: 60px; align-items: end; }
.section-head--split p { margin: 0 0 5px; }

.bento { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.bento__card { position: relative; min-height: 470px; overflow: hidden; padding: 34px; border: 1px solid var(--line-light); border-radius: var(--radius-xl); background: #fff; }
.bento__card--wide { grid-column: span 2; min-height: 520px; display: grid; grid-template-columns: .78fr 1.22fr; gap: 32px; }
.bento__card--dark { color: #fff; background: #111215; border-color: rgba(255,255,255,.09); }
.bento__card--accent { background: var(--accent); }
.card-number { margin-bottom: 46px; color: #87888d; font-size: 11px; font-weight: 850; letter-spacing: .15em; }
.bento__card--accent .card-number { color: rgba(17,18,21,.5); }
.bento__card h3 { margin: 0; font-size: clamp(13px, 3.3vw, 30px); letter-spacing: -.04em; }
.bento__card p { max-width: 550px; margin: 18px 0 0; color: #686970; font-size: 16px; line-height: 1.65; }
.bento__card--dark p { color: #a5a6aa; }
.bento__card--accent p { color: rgba(17,18,21,.72); }
.bento__content { position: relative; z-index: 2; align-self: center; }
.mini-list { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 11px; color: #c9c9c5; font-size: 14px; }
.mini-list li::before { content: "•"; color: var(--accent); margin-right: 10px; }
.bento__media { position: absolute; overflow: hidden; }
.bento__media img { width: 100%; height: 100%; object-fit: cover; }
.bento__media--screen { position: relative; inset: auto; align-self: stretch; border-radius: 22px 0 0 22px; margin: 40px -35px -35px 0; box-shadow: -22px 28px 60px rgba(0,0,0,.30); }
.bento__media--phone { width: 73%; height: 55%; right: -8%; bottom: -6%; border-radius: 24px 0 0 0; box-shadow: -15px 20px 45px rgba(0,0,0,.16); }
.bento__media--ai { position: relative; inset: auto; margin: -1px -35px -35px 0; border-radius: 24px 0 0 0; min-height: 350px; }
.text-link { display: inline-flex; gap: 10px; margin-top: 30px; font-size: 14px; font-weight: 750; }
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.brand-section { overflow: hidden; }
.brand-section::before { content: ""; position: absolute; width: 560px; height: 560px; left: -220px; top: -110px; border-radius: 50%; background: rgba(255,212,0,.06); filter: blur(5px); }
.brand-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: center; }
.brand-copy h2 { font-size: clamp(17px, 3.3vw, 50px); }
.brand-copy p { max-width: 620px; margin: 26px 0 0; color: #a9aaa7; font-size: 18px; line-height: 1.7; }
.brand-points { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 32px; }
.brand-points span { padding: 9px 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 999px; color: #c5c5c2; font-size: 12px; }
.device-frame { position: relative; padding: 28px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-xl); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); box-shadow: var(--shadow); }
.device-frame::before { content: ""; position: absolute; inset: 15% 8%; border-radius: 50%; background: rgba(255,212,0,.12); filter: blur(65px); }
.device-frame img { position: relative; z-index: 2; width: 100%; }

.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.benefit {
  position: relative;
  min-height: 320px;
  padding: 30px 30px 34px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: #fff;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.benefit__icon {
  width: 86px;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 42px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}
.benefit__icon img {
  display: block;
  width: 76px;
  height: 76px;
  max-width: 100%;
  object-fit: contain;
}
.benefit h3 {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.15;
  letter-spacing: -.03em;
}
.benefit p {
  margin: 0;
  color: #6d6e73;
  font-size: 14px;
  line-height: 1.65;
}
@media (hover: hover) {
  .benefit:hover {
    transform: translateY(-6px);
    border-color: rgba(17,18,21,.16);
    box-shadow: 0 20px 50px rgba(0,0,0,.08);
  }
}

.showcase { overflow: hidden; }
.showcase::before { content: ""; position: absolute; width: 700px; height: 700px; right: -260px; bottom: -220px; border-radius: 50%; background: rgba(255,212,0,.045); }
.showcase__head { display: grid; grid-template-columns: 1fr .65fr; gap: 60px; align-items: end; margin-bottom: 54px; }
.showcase__head p { color: #9b9c99; margin: 0 0 3px; }
.showcase__screen { position: relative; padding: 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 28px; background: linear-gradient(140deg, rgba(255,255,255,.075), rgba(255,255,255,.018)); box-shadow: 0 48px 100px rgba(0,0,0,.38); }
.showcase__screen::before { content: ""; position: absolute; inset: -15%; background: radial-gradient(circle, rgba(255,212,0,.10), transparent 58%); pointer-events: none; }
.showcase__screen img { position: relative; z-index: 2; width: 100%; border-radius: 19px; }

.pricing-grid { display: grid; grid-template-columns: 1.05fr 1fr 1fr; gap: 15px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; min-height: 520px; padding: 30px; border: 1px solid var(--line-light); border-radius: var(--radius-xl); background: #fff; }
.price-card--featured { color: #fff; background: #111215; border-color: #111215; }
.price-tag { display: inline-flex; width: max-content; padding: 7px 9px; border-radius: 999px; color: #171719; background: #ffd400; font-size: 11px; font-weight: 700; letter-spacing: .12em; }









.price-card h3 { margin: 19px 0 0; font-size: 30px; letter-spacing: -.04em; }
.price { margin: 38px 0 0; }
.price strong { display: block; font-size: 40px; letter-spacing: -.05em; }
.price span { display: block; margin-top: 4px; color: #8d8f93; font-size: 13px; }
.price-card ul { list-style: none; margin: 34px 0; padding: 0; display: grid; gap: 14px; color: #c3c4c2; font-size: 16px; }
.price-card ul span { display: inline-grid; place-items: center; width: 20px; height: 20px; margin-right: 8px; border-radius: 50%; color: #111; background: var(--accent); font-size: 11px; font-weight: 900; }
.price-card--featured .btn { margin-top: auto; }
.price-row { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; padding: 22px 0; border-bottom: 1px solid var(--line-light); }
.price-row:first-of-type { margin-top: 25px; border-top: 1px solid var(--line-light); }
.price-row span { color: #55575c; font-size: 16px; line-height: 1.35; }
.price-row small { color: #f8107d; font-size: 13px; }
.price-row strong { font-size: 15px; white-space: nowrap; }
.pricing-note { margin: 20px 4px 0; color: #000000; font-size: 14px; }

.cta-section { padding: 0 0 118px; background: var(--light); }
.cta-card { position: relative; overflow: hidden; display: grid; grid-template-columns: 1fr auto; gap: 70px; align-items: end; padding: 62px; border-radius: var(--radius-xl); background: #111215; }
.cta-card__glow { position: absolute; width: 500px; height: 500px; left: -140px; bottom: -250px; border-radius: 50%; background: rgba(255,212,0,.12); filter: blur(10px); }
.cta-card > *:not(.cta-card__glow) { position: relative; z-index: 2; }
.cta-card h2 { font-size: clamp(17px, 3.3vw, 40px); }
.cta-card p { max-width: 650px; margin: 22px 0 0; color: #DDDDDD; font-size: 16px; line-height: 1.7; }
.cta-card__actions { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.cta-phone { color: #d7d7d3; font-size: 22px; font-weight: 700; }


/* =========================================================
   ODBĚR NOVINEK / INFORMACÍ TAXISOFT
   ========================================================= */

.newsletter-section {
  position: relative;
  padding: 0 0 118px;
  color: var(--ink);
  background: var(--light);
}


/* HLAVNÍ KARTA */
.newsletter-card {
  position: relative;

  display: grid;
  grid-template-columns: 1fr .85fr;
  align-items: center;

  gap: 70px;

  overflow: hidden;

  padding: 58px 62px;

  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);

  background: #ffffff;
}


/* JEMNÝ ŽLUTÝ EFEKT V POZADÍ */
.newsletter-card::before {
  content: "";

  position: absolute;

  width: 420px;
  height: 420px;

  left: -170px;
  bottom: -250px;

  border-radius: 50%;

  background: rgba(255,212,0,.14);

  filter: blur(25px);

  pointer-events: none;
}


/* OBSAH MUSÍ BÝT NAD POZADÍM */
.newsletter-card > * {
  position: relative;
  z-index: 2;
}


/* =========================================================
   LEVÁ TEXTOVÁ ČÁST
   ========================================================= */

.newsletter-card__copy h2 {
  margin: 0;

  color: var(--ink);

  font-size: clamp(17px, 3.3vw, 44px);
  line-height: 1.02;

  letter-spacing: -.052em;

  font-weight: 600;
}


.newsletter-card__copy p {
  max-width: 640px;

  margin: 22px 0 0;

  color: var(--ink-soft);

  font-size: 16px;
  line-height: 1.7;
}


/* ŠTÍTKY POD TEXTEM */
.newsletter-card__topics {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 28px;
}


.newsletter-card__topics span {
  padding: 8px 11px;

  border: 1px solid var(--line-light);
  border-radius: 999px;

  color: #62636a;
  background: #f7f7f4;

  font-size: 12px;
  font-weight: 700;
}


/* =========================================================
   FORMULÁŘ
   ========================================================= */

.newsletter-card__form-wrap {
  min-width: 0;
}


.newsletter-form {
  padding: 30px;

  border: 1px solid var(--line-light);
  border-radius: 18px;

  background: #f7f7f4;
}


/* NADPIS NAD E-MAILEM */
.newsletter-form > label:first-child {
  display: block;

  margin-bottom: 9px;

  color: #55575c;

  font-size: 12px;
  font-weight: 750;
}


/* EMAIL + TLAČÍTKO */
.newsletter-form__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;

  gap: 10px;
}


.newsletter-form__row input {
  width: 100%;
  min-width: 0;
  height: 54px;

  padding: 0 16px;

  border: 1px solid #d7d8d5;
  border-radius: 12px;

  outline: none;

  color: #17181a;
  background: #ffffff;

  font-size: 15px;

  transition:
    border-color .2s ease,
    box-shadow .2s ease;
}


.newsletter-form__row input::placeholder {
  color: #9a9b9f;
}


.newsletter-form__row input:focus {
  border-color: #c9b800;

  box-shadow:
    0 0 0 4px rgba(255,212,0,.14);
}


/* TLAČÍTKO */
.newsletter-form__button {
  min-height: 54px;

  padding-left: 20px;
  padding-right: 20px;

  white-space: nowrap;

  font-size: 15px;
}


/* =========================================================
   SOUHLAS
   ========================================================= */

.newsletter-form__consent {
  display: flex;
  align-items: flex-start;

  gap: 10px;

  margin-top: 17px;

  cursor: pointer;
}


.newsletter-form__consent input {
  flex: 0 0 auto;

  width: 17px;
  height: 17px;

  margin: 2px 0 0;

  accent-color: #111215;
}


.newsletter-form__consent span {
  color: #686a6f;

  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   INFORMACE O ODHLAŠENÍ
   ========================================================= */

.newsletter-form__note {
  margin: 14px 0 0;
  padding-top: 14px;

  border-top: 1px solid var(--line-light);

  color: #929398;

  font-size: 11px;
  line-height: 1.5;
}

/* =========================================================
   NEWSLETTER - VÝSLEDEK ODESLÁNÍ
   ========================================================= */

.newsletter-form__message {
  display: none;

  margin-top: 16px;

  padding: 13px 15px;

  border-radius: 11px;

  font-size: 13px;
  line-height: 1.5;
  font-weight: 650;
}


/* ÚSPĚŠNÉ PŘIHLÁŠENÍ */
.newsletter-form__message.is-success {
  display: block;

  color: #176b38;

  border: 1px solid rgba(23,107,56,.18);

  background: rgba(42,172,91,.10);
}


/* CHYBA */
.newsletter-form__message.is-error {
  display: block;

  color: #a32525;

  border: 1px solid rgba(163,37,37,.18);

  background: rgba(220,50,50,.08);
}


/* E-MAIL UŽ EXISTUJE */
.newsletter-form__message.is-info {
  display: block;

  color: #665600;

  border: 1px solid rgba(180,150,0,.22);

  background: rgba(255,212,0,.13);
}

.site-footer { padding: 72px 0 28px; color: #d7d7d4; background: #080809; border-top: 1px solid rgba(255,255,255,.07); }
.site-footer__grid { display: grid; grid-template-columns: 1.45fr repeat(3, 1fr); gap: 55px; }
.footer-logo img { width: 150px; }
.site-footer__brand p { max-width: 330px; margin: 22px 0 0; color: #747579; font-size: 13px; line-height: 1.7; }
.site-footer h3 { margin: 3px 0 20px; color: #fff; font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.site-footer__grid > div:not(.site-footer__brand) { display: flex; flex-direction: column; align-items: flex-start; gap: 11px; }
.site-footer a, .site-footer span { color: #85868a; font-size: 13px; transition: color .2s ease; }
.site-footer a:hover { color: #fff; }
.site-footer__bottom { display: flex; justify-content: space-between; gap: 25px; margin-top: 62px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.07); }
.site-footer__bottom span { color: #57585c; font-size: 11px; }

.contact-hero {
  position: relative;
  overflow: hidden;
  padding: 170px 0 100px;
  background:
    radial-gradient(circle at 78% 28%, rgba(255,212,0,.08), transparent 32%),
    #0a0a0b;
}

.contact-hero__glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -200px;
  top: -150px;
  border-radius: 50%;
  background: rgba(255,212,0,.08);
}

.contact-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 70px;
  align-items: center;
}

.contact-hero__copy {
  min-width: 0;
}

.contact-hero h1 {
  max-width: 900px;
}

.contact-hero p {
  max-width: 670px;
  margin: 28px 0 0;
  color: #a8a9a6;
  font-size: 18px;
  line-height: 1.7;
}

.contact-hero__remote {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  max-width: 680px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.contact-hero__remote-icon {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: #FFFFFF;
   filter: brightness(0) invert(1); 
  font-size: 20px;
  font-weight: 800;
}

.contact-hero__remote div {
  min-width: 0;
}

.contact-hero__remote strong {
  display: block;
  color: #fff;
  font-size: 15px;
  font-weight: 750;
}

.contact-hero__remote div > span {
  display: block;
  margin-top: 7px;
  color: #85868a;
  font-size: 13px;
  line-height: 1.55;
}

.contact-hero__visual {
  min-width: 0;
}

.anydesk-card {
  position: relative;
  overflow: hidden;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.02));
  box-shadow: 0 42px 90px rgba(0,0,0,.42);
}

.anydesk-card::before {
  content: "";
  position: absolute;
  inset: 8% 8% 18%;
  border-radius: 50%;
  background: rgba(255,212,0,.10);
  filter: blur(65px);
  pointer-events: none;
}

.anydesk-card__top,
.anydesk-card__bottom,
.anydesk-card__media {
  position: relative;
  z-index: 2;
}

.anydesk-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 12px 16px;
}

.anydesk-card__status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #bdbebb;
  font-size: 11px;
  font-weight: 700;
}

.anydesk-card__status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #58df82;
  box-shadow: 0 0 0 5px rgba(88,223,130,.11);
}

.anydesk-card__name {
  color: #fff;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .04em;
}

.anydesk-card__media {
  overflow: hidden;
  min-height: 330px;
  border-radius: 17px;
  background: #111215;
}

.anydesk-card__media img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
}

.anydesk-card__bottom {
  padding: 18px 12px 12px;
}

.anydesk-card__bottom strong {
  display: block;
  color: #fff;
  font-size: 16px;
}

.anydesk-card__bottom span {
  display: block;
  margin-top: 6px;
  color: #85868a;
  font-size: 12px;
  line-height: 1.5;
}

.anydesk-card__download {
  margin-top: 18px;
  padding-top: 17px;
  border-top: 1px solid rgba(255,255,255,.09);
}

.anydesk-card__download p {
  margin: 0 0 13px;
  color: #a9aaa7;
  font-size: 12px;
  line-height: 1.55;
}

.anydesk-card__download-btn {
  min-height: 44px;
  padding: 0 16px;
  font-size: 14px;
}

.anydesk-card__download-btn span {
  display: inline;
  margin: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.contact-main {
  padding-top: 85px;
}
.contact-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px; align-items: start; }
.contact-form-card, .contact-info-card { border: 1px solid var(--line-light); border-radius: var(--radius-xl); background: #fff; }
.contact-form-card { padding: 38px; }
.contact-form-card__head { margin-bottom: 34px; }
.contact-form-card h2 { margin-top: 18px; font-size: clamp(17px, 3.3vw, 50px); }
.contact-form-card__head p { margin: 15px 0 0; color: #74757a; }
.form-grid { display: grid; gap: 16px; }
.form-grid--2 { grid-template-columns: 1fr 1fr; }
.form-field { display: block; margin-bottom: 18px; }
.form-field > span { display: block; margin-bottom: 8px; color: #5b5d62; font-size: 12px; font-weight: 750; }
.form-field input, .form-field textarea { width: 100%; border: 1px solid #dedfdc; border-radius: 14px; outline: 0; color: #17181a; background: #f8f8f6; transition: border-color .2s ease, box-shadow .2s ease, background .2s ease; }
.form-field input { height: 52px; padding: 0 15px; }
.form-field textarea { resize: vertical; min-height: 150px; padding: 14px 15px; }
.form-field input:focus, .form-field textarea:focus { border-color: #beb315; background: #fff; box-shadow: 0 0 0 4px rgba(255,212,0,.12); }
.form-check { display: flex; align-items: center; gap: 10px; margin: 2px 0 20px; color: #6d6e73; font-size: 13px; }
.form-check input { accent-color: #111; }
.captcha-row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; }
.captcha-image { display: flex; align-items: center; min-height: 52px; margin-bottom: 18px; padding: 5px 10px; border: 1px solid #dedfdc; border-radius: 14px; background: #f8f8f6; }
.captcha-image img { max-height: 42px; }
.contact-info-card { overflow: hidden; }
.contact-info-card__block { padding: 28px 30px; border-bottom: 1px solid var(--line-light); }
.contact-info-card__block:last-child { border-bottom: 0; }
.contact-label { display: block; margin-bottom: 10px; color: #96979b; font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.contact-big { display: block; color: #17181a; font-size: 23px; font-weight: 760; letter-spacing: -.03em; }
.contact-big--mail { font-size: 17px; word-break: break-word; }
.contact-info-card p { margin: 0; color: #55575c; font-size: 15px; line-height: 1.65; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal--delay { transition-delay: .12s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}

@media (max-width: 1100px) {
  .hero {
    min-height: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__copy {
    max-width: 820px;
  }

  .hero__visual {
    max-width: 920px;
  }

  .product-stage {
    padding-top: 30px;
  }

  .brand-grid {
    grid-template-columns: 1fr;
  }

  .brand-visual {
    max-width: 850px;
  }

  .benefit-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .price-card--featured {
    grid-row: span 2;
  }

  .site-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr;
  }

  .site-footer__grid > div:last-child {
    display: none;
  }
}

@media (max-width: 900px) {
	
	
	
  .site-shell {
    width: min(100% - 30px, var(--shell));
  }

  .site-header {
    padding: 12px 0;
  }

  /*
   * MOBILNÍ MENU:
   * Po scrollu má header třídu .is-scrolled. Backdrop-filter na rodiči může
   * změnit poziční kontext position: fixed potomka, proto ho na mobilu
   * vypínáme. Vzhled tmavého headeru zůstává zachovaný.
   */
  .site-header.is-scrolled {
    background: rgba(10,10,11,.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .brand img {
    width: 138px;
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 24px;
    padding: 100px 32px 40px;
    color: #fff;
    background: rgba(8,8,9,.98);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform .3s cubic-bezier(.2,.7,.2,1);
    font-size: 25px;
  }

  .nav-open .site-nav {
    transform: translateX(0);
  }

  .nav-open .nav-toggle span:first-child {
    top: 22px;
    transform: rotate(45deg);
  }

  .nav-open .nav-toggle span:last-child {
    top: 22px;
    transform: rotate(-45deg);
  }

  .nav-cta {
    margin-top: 10px;
    font-size: 15px;
  }

  .hero {
    padding: 122px 0 46px;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: clamp(38px, 7vw, 52px);
    line-height: .98;
    letter-spacing: -.05em;
  }

  .hero__lead {
    max-width: 680px;
    margin-top: 24px;
    font-size: 16px;
  }

  .hero__actions {
    margin-top: 30px;
  }

  .hero__chips {
    margin-top: 30px;
  }

  .product-stage {
    padding: 24px 10px 54px;
  }

  .hero__metrics {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 34px;
  }

  .hero__metrics article:nth-child(2) {
    border-right: 0;
  }

  .hero__metrics article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .section {
    padding: 78px 0;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .section-head h2,
  .brand-copy h2,
  .showcase__head h2,
  .cta-card h2,
  .contact-form-card h2 {
    font-size: clamp(36px, 6vw, 46px);
  }

  .section-head p,
  .showcase__head p {
    font-size: 17px;
  }

  .section-head--split,
  .showcase__head,
  .cta-card {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .bento__card--wide {
    grid-template-columns: 1fr;
  }

  .bento__media--screen,
  .bento__media--ai {
    min-height: 280px;
    margin-left: 0;
  }

  .brand-grid {
    gap: 48px;
  }

  .device-frame {
    padding: 22px;
  }

  .contact-hero__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .contact-hero__copy {
    max-width: 760px;
  }

  .contact-hero__visual {
    max-width: 820px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
	
	
  /* =========================================================
     ODBĚR NOVINEK - TABLET
     ========================================================= */

  .newsletter-card {
    grid-template-columns: 1fr;

    gap: 34px;

    padding: 42px;
  }


  .newsletter-card__copy {
    max-width: 760px;
  }


  .newsletter-card__form-wrap {
    max-width: 760px;
  }	
	
	
	
}

@media (max-width: 700px) {
  .site-shell {
    width: min(100% - 28px, var(--shell));
  }

  .site-header {
    padding: 10px 0;
  }

  .brand img {
    width: 132px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
  }

  .nav-toggle span {
    left: 13px;
  }

  .nav-toggle span:first-child {
    top: 17px;
  }

  .nav-toggle span:last-child {
    top: 24px;
  }

  .nav-open .nav-toggle span:first-child,
  .nav-open .nav-toggle span:last-child {
    top: 21px;
  }

  .site-nav {
    gap: 21px;
    padding: 90px 26px 34px;
    font-size: 22px;
  }

  .nav-cta {
    padding: 11px 15px;
    font-size: 15px;
  }

  .hero {
    padding: 112px 0 34px;
  }

  .hero__grid {
    gap: 22px;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 10px;
    letter-spacing: .13em;
  }

  .eyebrow span {
    width: 26px;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: clamp(34px, 9.5vw, 44px);
    line-height: 1;
    letter-spacing: -.047em;
  }

  .hero__lead {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero__actions {
    gap: 10px;
    margin-top: 26px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .btn {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 11px;
    font-size: 17px;
  }

  .btnimgv {
    width: 27px;
  }

  .btnimgs {
    width: 23px;
  }

  .btnimgm {
    width: 18px;
  }

  .hero__chips {
    gap: 7px;
    margin-top: 25px;
  }

  .hero__chips span {
    padding: 7px 9px;
    font-size: 11px;
    letter-spacing: .07em;
  }

  .product-stage {
    padding: 14px 0 46px;
  }

  .product-stage__screen {
    padding: 5px;
    border-radius: 16px;
    transform: none;
  }

  .product-stage__screen img {
    border-radius: 11px;
  }

  .product-stage__badge {
    padding: 8px 10px;
    font-size: 9px;
  }

  .product-stage__badge--top {
    right: 0;
    top: -8px;
  }

  .product-stage__badge--bottom {
    left: 5px;
    bottom: 11px;
    max-width: calc(100% - 10px);
  }

  .hero__metrics {
    margin-top: 22px;
  }

  .hero__metrics article {
    padding: 18px 10px;
  }

  .hero__metrics strong {
    font-size: 21px;
  }

  .hero__metrics span {
    margin-top: 3px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .section {
    padding: 66px 0;
  }

  .section-head {
    margin-bottom: 34px;
  }

  .section-head h2,
  .brand-copy h2,
  .showcase__head h2,
  .cta-card h2,
  .contact-form-card h2 {
    font-size: clamp(17px, 8.8vw, 40px);
    line-height: 1.03;
    letter-spacing: -.045em;
  }

  .section-head p,
  .showcase__head p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .section-head--split,
  .showcase__head,
  .cta-card {
    gap: 20px;
  }

  .bento {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .bento__card,
  .bento__card--wide {
    grid-column: auto;
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .bento__card--wide {
    gap: 24px;
  }

  .card-number {
    margin-bottom: 22px;
    font-size: 10px;
  }

  .bento__card h3 {
    font-size: 27px;
  }

  .bento__card p {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.6;
  }

  .mini-list {
    margin-top: 22px;
    gap: 9px;
    font-size: 13px;
  }

  .text-link {
    margin-top: 23px;
    font-size: 13px;
  }

  .bento__media--screen {
    min-height: 220px;
    margin: 0 -25px -25px 0;
    border-radius: 16px 0 0 0;
  }

  .bento__media--ai {
    min-height: 230px;
    margin: 0 -25px -25px 0;
    border-radius: 16px 0 0 0;
  }

  .brand-grid {
    gap: 34px;
  }

  .brand-copy p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .brand-points {
    gap: 7px;
    margin-top: 24px;
  }

  .brand-points span {
    padding: 8px 10px;
    font-size: 11px;
  }

  .device-frame {
    padding: 14px;
    border-radius: 20px;
  }

  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefit {
    min-height: auto;
    padding: 22px;
    border-radius: 20px;
  }

  .benefit__icon {
    width: 64px;
    height: 64px;
    margin-bottom: 22px;
  }

  .benefit__icon img {
    width: 56px;
    height: 56px;
  }

  .benefit h3 {
    margin-bottom: 10px;
    font-size: 20px;
  }

  .benefit p {
    font-size: 14px;
    line-height: 1.6;
  }

  .showcase__head {
    margin-bottom: 34px;
  }

  .showcase__screen {
    padding: 6px;
    border-radius: 20px;
  }

  .showcase__screen img {
    border-radius: 14px;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .price-card--featured {
    grid-row: auto;
  }

  .price-card {
    min-height: auto;
    padding: 24px;
    border-radius: 20px;
  }

  .price-card h3 {
    margin-top: 16px;
    font-size: 27px;
  }

  .price {
    margin-top: 28px;
  }

  .price strong {
    font-size: 36px;
  }

  .price-card ul {
    margin: 28px 0;
    gap: 12px;
    font-size: 15px;
  }

  .price-row {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    padding: 18px 0;
  }

  .price-row:first-of-type {
    margin-top: 20px;
  }

  .price-row span {
    min-width: 0;
    font-size: 15px;
  }

  .price-row small {
    font-size: 12px;
    line-height: 1.35;
  }

  .price-row strong {
    font-size: 15px;
  }

  .pricing-note {
    margin: 16px 2px 0;
    font-size: 13px;
  }

  .cta-section {
    padding-bottom: 68px;
  }

  .cta-card {
    padding: 28px 22px;
    border-radius: 20px;
  }

  .cta-card p {
    margin-top: 17px;
    font-size: 15px;
    line-height: 1.6;
  }

  .cta-card__actions {
    gap: 14px;
  }

  .cta-card__actions .btn {
    width: 100%;
  }

  .cta-phone {
    font-size: 14px;
  }

  .site-footer {
    padding: 56px 0 24px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .site-footer__brand {
    grid-column: span 2;
  }

  .site-footer__brand p {
    margin-top: 18px;
  }

  .site-footer__bottom {
    flex-direction: column;
    gap: 10px;
    margin-top: 44px;
  }

  .contact-hero {
    padding: 125px 0 66px;
  }

  .contact-hero__inner {
    gap: 30px;
  }

  .contact-hero p {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.6;
  }

  .contact-hero__remote {
    gap: 12px;
    margin-top: 25px;
    padding-top: 20px;
  }

  .contact-hero__remote-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    font-size: 18px;
  }

  .contact-hero__remote strong {
    font-size: 14px;
  }

  .contact-hero__remote div > span {
    font-size: 12px;
  }

  .anydesk-card {
    padding: 7px;
    border-radius: 20px;
  }

  .anydesk-card__top {
    padding: 8px 9px 13px;
  }

  .anydesk-card__media {
    min-height: 230px;
    border-radius: 14px;
  }

  .anydesk-card__media img {
    min-height: 230px;
  }

  .anydesk-card__bottom {
    padding: 15px 9px 10px;
  }

  .anydesk-card__bottom strong {
    font-size: 15px;
  }

  .anydesk-card__download {
    margin-top: 15px;
    padding-top: 15px;
  }

  .anydesk-card__download-btn {
    width: 100%;
    min-height: 48px;
    font-size: 15px;
  }

  .contact-main {
    padding-top: 50px;
  }

  .contact-form-card {
    padding: 22px;
    border-radius: 20px;
  }

  .contact-info-card {
    border-radius: 20px;
  }

  .contact-info-card__block {
    padding: 24px 22px;
  }

  .form-grid--2,
  .captcha-row {
    grid-template-columns: 1fr;
  }

  .captcha-image {
    width: max-content;
  }
	
	
  /* =========================================================
     ODBĚR NOVINEK - MOBIL
     ========================================================= */

  .newsletter-section {
    padding-bottom: 68px;
  }


  .newsletter-card {
    gap: 28px;

    padding: 28px 22px;

    border-radius: 20px;
  }


  .newsletter-card__copy h2 {
    font-size: clamp(31px, 8.8vw, 40px);

    line-height: 1.03;

    letter-spacing: -.045em;
  }


  .newsletter-card__copy p {
    margin-top: 17px;

    font-size: 15px;

    line-height: 1.6;
  }


  .newsletter-card__topics {
    margin-top: 22px;
  }


  .newsletter-form {
    padding: 20px;
  }


  /* EMAIL A TLAČÍTKO POD SEBE */
  .newsletter-form__row {
    grid-template-columns: 1fr;
  }


  .newsletter-form__button {
    width: 100%;
  }	
	
	
}

@media (max-width: 430px) {
  .site-shell {
    width: min(100% - 22px, var(--shell));
  }

  .brand img {
    width: 124px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .nav-toggle span:first-child {
    top: 16px;
  }

  .nav-toggle span:last-child {
    top: 23px;
  }

  .nav-open .nav-toggle span:first-child,
  .nav-open .nav-toggle span:last-child {
    top: 20px;
  }

  .site-nav {
    padding-left: 22px;
    padding-right: 22px;
    font-size: 21px;
  }

  .hero {
    padding-top: 105px;
  }

  .hero h1,
  .contact-hero h1 {
    font-size: 36px;
  }

  .hero__lead {
    font-size: 15px;
  }

  .eyebrow {
    font-size: 9.5px;
    letter-spacing: .11em;
  }

  .btn {
    min-height: 48px;
    font-size: 16px;
  }

  .product-stage__badge {
    font-size: 8.5px;
  }

  .product-stage__badge--bottom {
    white-space: normal;
    line-height: 1.25;
    border-radius: 10px;
  }

  .hero__metrics strong {
    font-size: 20px;
  }

  .hero__metrics span {
    font-size: 9.5px;
  }

  .section {
    padding: 58px 0;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .section-head h2,
  .brand-copy h2,
  .showcase__head h2,
  .cta-card h2,
  .contact-form-card h2 {
    font-size: 27px;
  }

  .section-head p,
  .showcase__head p {
    font-size: 15px;
  }

  .bento__card,
  .bento__card--wide {
    padding: 21px;
  }

  .bento__card h3 {
    font-size: 25px;
  }

  .bento__media--screen,
  .bento__media--ai {
    min-height: 200px;
    margin-right: -22px;
    margin-bottom: -22px;
  }

  .brand-copy p {
    font-size: 15px;
  }

  .device-frame {
    padding: 10px;
  }

  .benefit {
    padding: 20px;
  }

  .benefit__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 19px;
  }

  .benefit__icon img {
    width: 52px;
    height: 52px;
  }

  .price-card {
    padding: 20px;
  }

  .price-card h3 {
    font-size: 25px;
  }

  .price {
    margin-top: 24px;
  }

  .price strong {
    font-size: 33px;
  }

  .price-row {
    gap: 9px;
    padding: 16px 0;
  }

  .price-row span {
    font-size: 14px;
  }

  .price-row small {
    font-size: 11px;
  }

  .price-row strong {
    font-size: 14px;
  }

  .cta-card {
    padding: 25px 20px;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .contact-hero {
    padding: 112px 0 55px;
  }

  .contact-hero__inner {
    gap: 26px;
  }

  .contact-hero__remote {
    margin-top: 22px;
  }

  .anydesk-card__media,
  .anydesk-card__media img {
    min-height: 200px;
  }

  .anydesk-card__status,
  .anydesk-card__name {
    font-size: 10px;
  }

  .contact-form-card {
    padding: 20px;
  }

  .contact-big {
    font-size: 21px;
  }

  .contact-big--mail {
    font-size: 15px;
  }
}









/* =========================================================
   KONTAKTNÍ FORMULÁŘ – STAVOVÉ HLÁŠKY
   ========================================================= */

#note {
  margin-bottom: 18px;
}

.notification_ok,
.notification_error,
.notification_warning {
  padding: 18px 20px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.6;
}

.notification_ok {
  color: #17612d;
  border: 1px solid rgba(34, 139, 73, .22);
  background: rgba(88, 223, 130, .10);
}

.notification_error {
  color: #8d2634;
  border: 1px solid rgba(198, 54, 74, .22);
  background: rgba(198, 54, 74, .08);
}

.notification_warning {
  color: #745800;
  border: 1px solid rgba(255, 190, 0, .30);
  background: rgba(255, 212, 0, .12);
}

.notification_error ul {
  margin: 10px 0 0;
  padding-left: 20px;
}

.notification_ok a,
.notification_warning a {
  display: inline-block;
  margin-top: 10px;
  color: #111215;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#ajax-contact-form .btn:disabled {
  opacity: .65;
  cursor: wait;
  transform: none;
}





/* =========================================================
   SITEMAP – HEADER MUSÍ BÝT TMAVÝ I NAHOŘE STRÁNKY
   ========================================================= */

.sitemap-page .site-header {
  background: #0a0a0b;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.sitemap-page .site-header.is-scrolled {
  background: rgba(10,10,11,.96);
}


/* =========================================================
   SITEMAP – HLAVNÍ PLOCHA
   ========================================================= */

.sitemap-page {
  background: var(--light);
}

.sitemap-section {
  min-height: calc(100vh - 120px);
  padding: 150px 0 120px;

  color: var(--ink);

  background:
    radial-gradient(
      circle at 50% 15%,
      rgba(255,212,0,.035),
      transparent 34%
    ),
    var(--light);
}


/* =========================================================
   SITEMAP – HLAVNÍ OKNO
   ========================================================= */

.sitemap-window {
  width: min(1040px, 100%);

  margin: 0 auto;

  overflow: hidden;

  border: 1px solid rgba(17,18,21,.09);

  border-radius: 22px;

  background: #ffffff;

  box-shadow:
    0 30px 80px rgba(0,0,0,.13);
}


/* =========================================================
   HORNÍ LIŠTA OKNA
   ========================================================= */

.sitemap-window__head {
  display: flex;
  align-items: center;

  gap: 20px;

  min-height: 68px;

  padding: 0 36px;

  border-bottom: 1px solid #e5e6e8;

  background: #f5f6f7;
}


.sitemap-window__dots {
  display: flex;
  align-items: center;

  gap: 8px;
}


.sitemap-dot {
  display: block;

  width: 12px;
  height: 12px;

  border-radius: 50%;
}


.sitemap-dot--red {
  background: #ff5f57;
}


.sitemap-dot--yellow {
  background: #ffbd2e;
}


.sitemap-dot--green {
  background: #28c840;
}


.sitemap-window__title {
  color: #56585e;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: .08em;

  text-transform: uppercase;
}


/* =========================================================
   STROM – HLAVNÍ OBSAH
   ========================================================= */

.sitemap-tree {
  padding: 46px 58px 52px;
}


/* =========================================================
   JEDNA SKUPINA
   ========================================================= */

.sitemap-group {
  position: relative;

  margin-bottom: 42px;
}


.sitemap-group--last {
  margin-bottom: 0;
}


/* =========================================================
   NADPIS SKUPINY
   ========================================================= */

.sitemap-group__title {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 34px;

  padding-left: 40px;

  color: #111215;

  font-size: 19px;
}


.sitemap-group__title strong {
  font-weight: 750;
}


/* =========================================================
   HLAVNÍ ŽLUTÁ VĚTEV
   ========================================================= */

.sitemap-tree-line--main {
  position: absolute;

  left: 0;
  top: 4px;

  width: 28px;
  height: 21px;

  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}


/* =========================================================
   PODŘÍZENÉ ODKAZY
   ========================================================= */

.sitemap-group__links {
  position: relative;

  display: grid;

  margin-top: 7px;
  margin-left: 20px;

  padding: 7px 0 0 43px;

  border-left: 1px solid #dedfe2;
}


.sitemap-group__links a {
  position: relative;

  display: flex;
  align-items: center;

  min-height: 42px;

  padding-left: 20px;

  color: #484a50;

  font-size: 15px;

  font-weight: 500;

  line-height: 1.4;

  transition:
    color .18s ease,
    padding-left .18s ease;
}


/* =========================================================
   MALÁ VĚTEV U KAŽDÉHO ODKAZU
   ========================================================= */

.sitemap-group__links .sitemap-tree-line {
  position: absolute;

  left: -43px;
  top: 0;

  width: 29px;
  height: 21px;

  border-bottom: 1.5px solid var(--accent);
}


/* =========================================================
   HOVER ODKAZŮ
   ========================================================= */

.sitemap-group__links a:hover {
  padding-left: 27px;

  color: #000000;
}


.sitemap-group__links a:hover::after {
  content: "→";

  margin-left: 9px;

  color: var(--accent);

  font-weight: 800;
}


/* =========================================================
   FOOTER – SITEMAP TLAČÍTKO
   ========================================================= */

.footer-sitemap-link {
  display: inline-flex !important;

  align-items: center;

  gap: 8px;

  width: max-content;

  margin-top: 9px;

  padding: 9px 13px;

  border: 1px solid rgba(255,255,255,.13);

  border-radius: 10px;

  color: #ffffff !important;

  background: rgba(255,255,255,.045);

  font-weight: 700;
}


.footer-sitemap-link span {
  color: var(--accent) !important;

  font-size: 10px !important;
}


.footer-sitemap-link:hover {
  color: #111215 !important;

  border-color: var(--accent);

  background: var(--accent);
}


.footer-sitemap-link:hover span {
  color: #111215 !important;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .sitemap-window {
    width: min(920px, 100%);
  }

}


@media (max-width: 900px) {

  .sitemap-section {
    padding: 125px 0 90px;
  }


  .sitemap-window {
    width: 100%;
  }


  .sitemap-tree {
    padding: 38px 42px 44px;
  }


  .sitemap-group__title {
    font-size: 18px;
  }


  .sitemap-group__links a {
    font-size: 14px;
  }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 700px) {

  .sitemap-section {
    padding: 100px 0 65px;
  }


  .sitemap-window {
    border-radius: 18px;
  }


  .sitemap-window__head {
    gap: 14px;

    min-height: 54px;

    padding: 0 20px;
  }


  .sitemap-window__title {
    font-size: 9px;

    letter-spacing: .06em;
  }


  .sitemap-dot {
    width: 9px;
    height: 9px;
  }


  .sitemap-window__dots {
    gap: 6px;
  }


  .sitemap-tree {
    padding: 27px 22px 32px;
  }


  .sitemap-group {
    margin-bottom: 29px;
  }


  .sitemap-group__title {
    padding-left: 31px;

    font-size: 16px;
  }


  .sitemap-tree-line--main {
    width: 21px;
    height: 19px;
  }


  .sitemap-group__links {
    margin-left: 15px;

    padding-left: 30px;
  }


  .sitemap-group__links a {
    min-height: 38px;

    padding-left: 16px;

    font-size: 13px;

    line-height: 1.4;
  }


  .sitemap-group__links .sitemap-tree-line {
    left: -30px;

    width: 20px;

    height: 19px;
  }

}


/* =========================================================
   MALÝ MOBIL
   ========================================================= */

@media (max-width: 430px) {

  .sitemap-section {
    padding-top: 92px;
  }


  .sitemap-window__head {
    padding: 0 16px;
  }


  .sitemap-window__title {
    font-size: 8px;
  }


  .sitemap-tree {
    padding: 24px 17px 28px;
  }


  .sitemap-group {
    margin-bottom: 26px;
  }


  .sitemap-group__title {
    font-size: 15px;
  }


  .sitemap-group__links a {
    font-size: 12px;
  }

}














/* =========================================================
   LICENČNÍ SMLOUVA – OBRAZOVKA
   ========================================================= */

.license-page {
  background: #e9e9e5;
}

.license-page .site-header {
  background: #0a0a0b;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.license-main {
  padding: 125px 0 100px;
  color: #111215;
  background: #e9e9e5;
}


/* =========================================================
   OVLÁDACÍ LIŠTA
   ========================================================= */

.contract-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 22px;
}

.contract-toolbar > div {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contract-toolbar strong {
  color: #111215;
  font-size: 15px;
}

.contract-print-btn {
  min-height: 46px;
  font-size: 15px;
}


/* =========================================================
   OBAL DOKUMENTU
   ========================================================= */

.contract-screen {
  display: flex;
  justify-content: center;
}

.contract-document {
  width: 100%;
  max-width: 980px;
  padding: 72px 82px 80px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0,0,0,.14);
}


/* =========================================================
   HLAVIČKA
   ========================================================= */

.contract-header {
  position: relative;
  margin-bottom: 60px;
}

.contract-brand img {
  width: 165px;
  filter: brightness(0);
}

.contract-header__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 42px;
}

.contract-header__meta span {
  color: #8a8b90;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
}

.contract-header__meta strong {
  font-size: 12px;
  letter-spacing: .12em;
}

.contract-header__line {
  height: 4px;
  margin: 18px 0 34px;
  background: #ffd400;
}

.contract-header h1 {
  margin: 0;
  font-size: 39px;
  line-height: 1;
  letter-spacing: -.045em;
}

.contract-intro {
  max-width: 700px;
  margin: 18px 0 0;
  color: #6e7075;
  font-size: 13px;
  line-height: 1.65;
}

.contract-number {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-top: 32px;
  padding: 15px 18px;
  border: 1px solid #e0e1dd;
  border-radius: 10px;
  background: #f7f7f4;
}

.contract-number span {
  color: #77797d;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contract-number strong {
  font-size: 13px;
}


/* =========================================================
   ČLÁNKY
   ========================================================= */

.contract-article {
  margin-top: 42px;
}

.contract-article__head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 21px;
}

.contract-article__head > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  color: #111215;
  background: #ffd400;
  font-size: 11px;
  font-weight: 900;
}

.contract-article__head h2 {
  margin: 0;
  font-size: 21px;
  letter-spacing: -.025em;
}

.contract-article p {
  margin: 0 0 13px;
  color: #4f5156;
  font-size: 13.5px;
  line-height: 1.75;
}


/* =========================================================
   SMLUVNÍ STRANY
   ========================================================= */

.contract-parties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
  margin-bottom: 20px;
}

.contract-party {
  padding: 23px;
  border: 1px solid #e2e3df;
  border-radius: 13px;
  background: #fafaf8;
}

.contract-party--provider {
  background: #111215;
  border-color: #111215;
  color: #ffffff;
}

.contract-party__label {
  display: block;
  margin-bottom: 14px;
  color: #909196;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
}

.contract-party--provider .contract-party__label {
  color: #ffd400;
}

.contract-party h3 {
  margin: 0 0 19px;
  font-size: 18px;
}

.contract-party dl {
  margin: 0;
}

.contract-party dl > div {
  padding: 9px 0;
  border-top: 1px solid #e1e2df;
}

.contract-party--provider dl > div {
  border-color: rgba(255,255,255,.10);
}

.contract-party dt {
  margin-bottom: 3px;
  color: #98999d;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contract-party dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.5;
}


/* =========================================================
   SEZNAM
   ========================================================= */

.contract-list {
  margin: 17px 0 18px;
  padding: 0;
  list-style: none;
}

.contract-list li {
  position: relative;
  margin-bottom: 8px;
  padding-left: 24px;
  color: #4f5156;
  font-size: 13.5px;
  line-height: 1.6;
}

.contract-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 8px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ffd400;
}


/* =========================================================
   CENA
   ========================================================= */

.contract-highlight {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 13px;
  align-items: center;
  margin: 5px 0 24px;
  padding: 20px;
  border-radius: 12px;
  background: #111215;
}

.contract-highlight span {
  color: #c0c1be;
  font-size: 12px;
}

.contract-highlight strong {
  color: #ffffff;
  font-size: 20px;
}

.contract-highlight small {
  color: #ffd400;
  font-size: 10px;
  font-weight: 800;
}

.contract-bank {
  display: inline-flex;
  flex-direction: column;
  margin: 3px 0 19px;
  padding: 13px 18px;
  border-left: 4px solid #ffd400;
  background: #f5f5f1;
}

.contract-bank span {
  color: #8a8b90;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.contract-bank strong {
  margin-top: 4px;
  font-size: 15px;
}


/* =========================================================
   PODPISY
   ========================================================= */

.contract-signatures {
  margin-top: 70px;
}

.contract-place {
  color: #4e5055;
  font-size: 12px;
}

.contract-place span {
  display: inline-block;
  min-width: 145px;
  margin: 0 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid #9b9c9f;
}

.contract-signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  margin-top: 75px;
}

.contract-signature__line {
  height: 1px;
  margin-bottom: 11px;
  background: #8f9094;
}

.contract-signature strong,
.contract-signature span {
  display: block;
}

.contract-signature strong {
  font-size: 12px;
}

.contract-signature span {
  margin-top: 4px;
  color: #898a8e;
  font-size: 10px;
}


/* =========================================================
   PŘÍLOHA
   ========================================================= */

.contract-appendix {
  margin-top: 110px;
  padding-top: 50px;
  border-top: 4px solid #ffd400;
}

.contract-appendix__head > span {
  color: #9a9b9f;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .15em;
}

.contract-appendix__head h2 {
  max-width: 650px;
  margin: 10px 0 0;
  font-size: 27px;
  line-height: 1.12;
  letter-spacing: -.035em;
}

.contract-appendix > p {
  color: #56585d;
  font-size: 13px;
  line-height: 1.7;
}


/* =========================================================
   TABULKA MODULŮ
   ========================================================= */

.contract-table-wrap {
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #dedfdb;
  border-radius: 12px;
}

.contract-table {
  width: 100%;
  border-collapse: collapse;
}

.contract-table th {
  padding: 15px 18px;
  color: #ffffff;
  background: #111215;
  font-size: 10px;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.contract-table th:last-child {
  width: 210px;
  text-align: right;
}

.contract-table td {
  padding: 14px 18px;
  border-bottom: 1px solid #e5e5e1;
  color: #414348;
  font-size: 12px;
  line-height: 1.45;
}

.contract-table td:last-child {
  text-align: right;
  white-space: nowrap;
  font-weight: 700;
}

.contract-table tr:last-child td {
  border-bottom: 0;
}

.contract-table td small {
  display: block;
  margin-top: 3px;
  color: #939499;
  font-size: 9.5px;
}

.contract-table__primary td {
  background: rgba(255,212,0,.11);
  font-weight: 700;
}

.contract-appendix__note {
  margin-top: 20px;
  padding: 14px 17px;
  border-radius: 9px;
  background: #f5f5f1;
}


/* =========================================================
   TABLET / MOBIL
   ========================================================= */

@media (max-width: 900px) {

  .license-main {
    padding-top: 105px;
  }

  .contract-document {
    padding: 50px 45px 60px;
  }

  .contract-parties {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 700px) {

  .license-main {
    padding: 92px 0 55px;
  }

  .contract-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .contract-print-btn {
    width: 100%;
  }

  .contract-document {
    padding: 34px 23px 45px;
    border-radius: 12px;
  }

  .contract-header h1 {
    font-size: 31px;
  }

  .contract-header__meta {
    margin-top: 30px;
  }

  .contract-number {
    flex-direction: column;
    gap: 7px;
  }

  .contract-article {
    margin-top: 36px;
  }

  .contract-article__head h2 {
    font-size: 19px;
  }

  .contract-highlight {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contract-signature-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contract-table-wrap {
    overflow-x: auto;
  }

  .contract-table {
    min-width: 620px;
  }

}






/* =========================================================
   LICENČNÍ SMLOUVA – PROFESIONÁLNÍ TISK A4
   ========================================================= */

@media print {

  @page {
    size: A4 portrait;
    margin: 15mm 16mm 17mm;
  }


  /* =======================================================
     ZÁKLAD TISKU
     ======================================================= */

  html,
  body {
    width: auto !important;
    height: auto !important;
    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
    color: #111111 !important;

    font-family:
      Arial,
      Helvetica,
      sans-serif !important;

    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }


  body {
    font-size: 10.5pt !important;
  }


  /* =======================================================
     SKRYJEME VŠECHNO, CO PATŘÍ JEN NA WEB
     ======================================================= */

  .license-page .site-header,
  .license-page .site-footer,
  .contract-toolbar {
    display: none !important;
  }


  .license-main {
    display: block !important;

    width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    background: #ffffff !important;
  }


  .site-shell.contract-screen {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;
  }


  /* =======================================================
     SAMOTNÝ DOKUMENT
     ======================================================= */

  .contract-document {
    display: block !important;

    width: 100% !important;
    max-width: none !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
    border-radius: 0 !important;

    background: #ffffff !important;

    box-shadow: none !important;
  }


  /* =======================================================
     HLAVIČKA SMLOUVY
     ======================================================= */

  .contract-header {
    margin: 0 0 9mm !important;
    padding: 0 !important;
  }


  .contract-brand {
    margin: 0 !important;
  }


  .contract-brand img {
    width: 42mm !important;
    height: auto !important;

    filter: brightness(0) !important;
  }


  .contract-header__meta {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;

    margin: 8mm 0 0 !important;
  }


  .contract-header__meta span,
  .contract-header__meta strong {
    font-size: 7.5pt !important;
  }


  .contract-header__line {
    height: 1.2mm !important;

    margin: 3mm 0 6mm !important;

    background: #ffd400 !important;
  }


  .contract-header h1 {
    margin: 0 !important;

    font-size: 22pt !important;
    line-height: 1.05 !important;

    letter-spacing: -.5pt !important;

    color: #111111 !important;
  }


  .contract-intro {
    max-width: none !important;

    margin: 3mm 0 0 !important;

    color: #444444 !important;

    font-size: 9pt !important;
    line-height: 1.5 !important;
  }


  /* =======================================================
     ČÍSLO SMLOUVY
     ======================================================= */

  .contract-number {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;

    gap: 10mm !important;

    margin: 5mm 0 0 !important;
    padding: 3.5mm 4mm !important;

    border: 1px solid #d8d8d8 !important;
    border-radius: 2mm !important;

    background: #f7f7f4 !important;
  }


  .contract-number span {
    color: #666666 !important;

    font-size: 7.5pt !important;
  }


  .contract-number strong {
    color: #111111 !important;

    font-size: 9pt !important;
  }


  /* =======================================================
     ČLÁNKY
     ======================================================= */

  .contract-article {
    margin: 0 0 7mm !important;
    padding: 0 !important;

    break-inside: auto !important;
    page-break-inside: auto !important;
  }


  .contract-article__head {
    display: flex !important;
    align-items: center !important;

    gap: 3mm !important;

    margin: 0 0 3mm !important;

    break-after: avoid !important;
    page-break-after: avoid !important;
  }


  .contract-article__head > span {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;

    flex: 0 0 8mm !important;

    width: 8mm !important;
    height: 8mm !important;

    border-radius: 1.5mm !important;

    background: #ffd400 !important;
    color: #111111 !important;

    font-size: 7.5pt !important;
    font-weight: 800 !important;
  }


  .contract-article__head h2 {
    margin: 0 !important;

    color: #111111 !important;

    font-size: 13pt !important;
    line-height: 1.2 !important;

    letter-spacing: 0 !important;
  }


  .contract-article p {
    margin: 0 0 2.5mm !important;

    color: #222222 !important;

    font-size: 9.6pt !important;
    line-height: 1.48 !important;

    orphans: 3;
    widows: 3;
  }


  /* =======================================================
     SMLUVNÍ STRANY
     DŮLEŽITÉ:
     V TISKU VŽDY 2 SLOUPCE, I KDYŽ SE AKTIVOVAL MOBILNÍ CSS
     ======================================================= */

  .contract-parties {
    display: grid !important;

    grid-template-columns:
      minmax(0, 1fr)
      minmax(0, 1fr) !important;

    gap: 4mm !important;

    margin: 0 0 4mm !important;

    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }


  .contract-party,
  .contract-party--provider {
    min-height: 0 !important;

    margin: 0 !important;
    padding: 4mm !important;

    border: 1px solid #d7d7d7 !important;
    border-radius: 2mm !important;

    background: #ffffff !important;
    color: #111111 !important;

    box-shadow: none !important;
  }


  /*
   * Žádná velká černá plocha při tisku.
   * Poskytovatele zvýrazníme pouze žlutou linkou.
   */

  .contract-party--provider {
    border-top: 1.2mm solid #ffd400 !important;
  }


  .contract-party__label,
  .contract-party--provider .contract-party__label {
    display: block !important;

    margin: 0 0 3mm !important;

    color: #777777 !important;

    font-size: 7pt !important;
    font-weight: 800 !important;

    letter-spacing: .7pt !important;
  }


  .contract-party h3 {
    margin: 0 0 3.5mm !important;

    color: #111111 !important;

    font-size: 11.5pt !important;
    line-height: 1.25 !important;
  }


  .contract-party dl {
    margin: 0 !important;
  }


  .contract-party dl > div,
  .contract-party--provider dl > div {
    margin: 0 !important;
    padding: 2mm 0 !important;

    border-top: 1px solid #e5e5e5 !important;
  }


  .contract-party dt {
    margin: 0 0 .8mm !important;

    color: #777777 !important;

    font-size: 6.8pt !important;
    font-weight: 700 !important;

    letter-spacing: .4pt !important;
  }


  .contract-party dd {
    margin: 0 !important;

    color: #111111 !important;

    font-size: 8.5pt !important;
    line-height: 1.35 !important;
  }


  /* =======================================================
     SEZNAMY
     ======================================================= */

  .contract-list {
    margin: 3mm 0 4mm !important;
    padding: 0 !important;

    list-style: none !important;
  }


  .contract-list li {
    position: relative !important;

    margin: 0 0 1.7mm !important;
    padding-left: 5mm !important;

    color: #222222 !important;

    font-size: 9.6pt !important;
    line-height: 1.45 !important;
  }


  .contract-list li::before {
    content: "" !important;

    position: absolute !important;

    left: 1mm !important;
    top: 2.2mm !important;

    width: 1.8mm !important;
    height: 1.8mm !important;

    border-radius: 50% !important;

    background: #ffd400 !important;
  }


  /* =======================================================
     CENA
     ======================================================= */

  .contract-highlight {
    display: grid !important;

    grid-template-columns:
      1fr
      auto
      auto !important;

    align-items: center !important;

    gap: 3mm !important;

    margin: 0 0 4mm !important;
    padding: 3.5mm 4mm !important;

    border: 1px solid #d9d9d9 !important;
    border-left: 1.5mm solid #ffd400 !important;

    border-radius: 2mm !important;

    background: #f7f7f4 !important;
  }


  .contract-highlight span {
    color: #555555 !important;

    font-size: 8.5pt !important;
  }


  .contract-highlight strong {
    color: #111111 !important;

    font-size: 12pt !important;
  }


  .contract-highlight small {
    color: #666666 !important;

    font-size: 7pt !important;
  }


  /* =======================================================
     BANKOVNÍ ÚČET
     ======================================================= */

  .contract-bank {
    display: inline-flex !important;
    flex-direction: column !important;

    margin: 1mm 0 3mm !important;
    padding: 2.5mm 4mm !important;

    border-left: 1.2mm solid #ffd400 !important;

    background: #f6f6f3 !important;
  }


  .contract-bank span {
    color: #777777 !important;

    font-size: 7pt !important;
  }


  .contract-bank strong {
    margin-top: 1mm !important;

    color: #111111 !important;

    font-size: 10pt !important;
  }


  /* =======================================================
     PODPISY
     ======================================================= */

  .contract-signatures {
    margin-top: 14mm !important;

    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }


  .contract-place {
    color: #222222 !important;

    font-size: 9pt !important;
  }


  .contract-place span {
    min-width: 38mm !important;

    margin: 0 2mm !important;

    border-bottom: 1px solid #777777 !important;
  }


  .contract-signature-grid {
    display: grid !important;

    grid-template-columns: 1fr 1fr !important;

    gap: 25mm !important;

    margin-top: 18mm !important;

    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }


  .contract-signature__line {
    height: 1px !important;

    margin-bottom: 2mm !important;

    background: #777777 !important;
  }


  .contract-signature strong {
    color: #111111 !important;

    font-size: 8.5pt !important;
  }


  .contract-signature span {
    margin-top: 1mm !important;

    color: #666666 !important;

    font-size: 7.5pt !important;
  }


  /* =======================================================
     PŘÍLOHA – VŽDY NOVÁ STRÁNKA
     ======================================================= */

  .contract-appendix {
    break-before: page !important;
    page-break-before: always !important;

    margin: 0 !important;
    padding: 0 !important;

    border: 0 !important;
  }


  .contract-appendix__head {
    margin: 0 0 5mm !important;
    padding-top: 5mm !important;

    border-top: 1.2mm solid #ffd400 !important;
  }


  .contract-appendix__head > span {
    color: #777777 !important;

    font-size: 7.5pt !important;
  }


  .contract-appendix__head h2 {
    max-width: none !important;

    margin: 2mm 0 0 !important;

    color: #111111 !important;

    font-size: 18pt !important;
    line-height: 1.15 !important;
  }


  .contract-appendix > p {
    margin: 0 0 4mm !important;

    color: #333333 !important;

    font-size: 9pt !important;
    line-height: 1.45 !important;
  }


  /* =======================================================
     TABULKA MODULŮ
     ======================================================= */

  .contract-table-wrap {
    margin: 5mm 0 0 !important;

    overflow: visible !important;

    border: 1px solid #d6d6d6 !important;
    border-radius: 0 !important;

    break-inside: auto !important;
  }


  .contract-table {
    width: 100% !important;
    min-width: 0 !important;

    border-collapse: collapse !important;
  }


  .contract-table thead {
    display: table-header-group !important;
  }


  .contract-table tr {
    break-inside: avoid !important;
    page-break-inside: avoid !important;
  }


  .contract-table th {
    padding: 2.5mm 3mm !important;

    background: #111111 !important;
    color: #ffffff !important;

    font-size: 7.5pt !important;
  }


  .contract-table th:last-child {
    width: 43mm !important;

    text-align: right !important;
  }


  .contract-table td {
    padding: 2.5mm 3mm !important;

    border-bottom: 1px solid #dedede !important;

    color: #222222 !important;

    font-size: 8.2pt !important;
    line-height: 1.3 !important;
  }


  .contract-table td:last-child {
    width: 43mm !important;

    text-align: right !important;
    white-space: nowrap !important;

    font-weight: 700 !important;
  }


  .contract-table td small {
    margin-top: 1mm !important;

    color: #777777 !important;

    font-size: 7pt !important;
    line-height: 1.3 !important;
  }


  .contract-table__primary td {
    background: #fff9d9 !important;
  }


  .contract-appendix__note {
    margin: 4mm 0 0 !important;
    padding: 3mm 4mm !important;

    border: 1px solid #dedede !important;
    border-radius: 1.5mm !important;

    background: #f7f7f4 !important;

    color: #444444 !important;

    font-size: 8pt !important;
    line-height: 1.4 !important;
  }


  /* =======================================================
     ŽÁDNÉ WEBOVÉ ANIMACE V TISKU
     ======================================================= */

  .reveal,
  .reveal.is-visible,
  .reveal--delay {
    opacity: 1 !important;

    transform: none !important;

    transition: none !important;
  }

}













/* =========================================================
   =========================================================
   TAXISOFT DRIVER – PRODUKTOVÁ STRÁNKA + MANUÁL
   =========================================================
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.driver-hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  padding: 160px 0 58px;

  background:
    radial-gradient(
      circle at 72% 22%,
      rgba(255,212,0,.08),
      transparent 31%
    ),
    linear-gradient(
      180deg,
      #09090a 0%,
      #0c0d0f 100%
    );
}


.driver-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;

  opacity: .18;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 54px 54px;

  mask-image:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.9),
      transparent 82%
    );
}


.driver-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}


.driver-hero__glow--one {
  width: 580px;
  height: 580px;

  right: -240px;
  top: 80px;

  background: rgba(255,212,0,.08);
}


.driver-hero__glow--two {
  width: 420px;
  height: 420px;

  left: -270px;
  bottom: 80px;

  background: rgba(87,109,255,.05);
}


.driver-hero__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;

  gap: 70px;
}


.driver-hero__copy {
  position: relative;
  z-index: 3;
}


.driver-hero h1 {
  max-width: 760px;

  margin: 0;

  font-size: clamp(17px, 5vw, 47px);
  line-height: .95;

  letter-spacing: -.06em;
  font-weight: 700;
}


.driver-hero h1 em {
  color: var(--accent);
  font-style: normal;
}


.driver-hero__lead {
  max-width: 650px;

  margin: 30px 0 0;

  color: #b9bab6;

  font-size: 17px;
  line-height: 1.65;
}


.driver-hero__actions {
  display: flex;
  flex-wrap: wrap;

  gap: 12px;

  margin-top: 38px;
}


.driver-hero__chips {
  display: flex;
  flex-wrap: wrap;

  gap: 8px;

  margin-top: 38px;
}


.driver-hero__chips span {
  padding: 8px 11px;

  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;

  color: #9fa1a6;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: .08em;
}



/* =========================================================
   HERO – TELEFON
   ========================================================= */

.driver-hero__visual {
  min-width: 0;
}


.driver-phone-stage {
  position: relative;

  display: flex;
  justify-content: center;
  align-items: center;

  min-height: 590px;
}


.driver-phone-stage__glow {
  position: absolute;

  width: 470px;
  height: 470px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,212,0,.22),
      rgba(255,212,0,.04) 45%,
      transparent 70%
    );

  filter: blur(20px);
}


.driver-phone {
  position: relative;
  z-index: 3;

  width: 292px;

  padding: 10px;

  border: 1px solid rgba(255,255,255,.16);
  border-radius: 46px;

  background:
    linear-gradient(
      145deg,
      #25262a,
      #0d0e10
    );

  box-shadow:
    0 60px 120px rgba(0,0,0,.58),
    0 0 0 6px rgba(255,255,255,.025);

  transform:
    rotateY(-8deg)
    rotateX(2deg)
    rotateZ(2deg);
}


.driver-phone__speaker {
  position: absolute;
  z-index: 5;

  top: 18px;
  left: 50%;

  width: 72px;
  height: 18px;

  transform: translateX(-50%);

  border-radius: 999px;

  background: #070708;
}


.driver-phone__screen {
  overflow: hidden;

  aspect-ratio: 9 / 19.5;

  border-radius: 37px;

  background: #111215;
}


.driver-screen-placeholder {
  display: flex;
  flex-direction: column;

  width: 100%;
  height: 100%;

  background:
    linear-gradient(
      180deg,
      #16171a,
      #090a0b
    );
}


.driver-screen-placeholder__top {
  padding: 46px 20px 18px;

  color: #999b9f;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .14em;

  border-bottom: 1px solid rgba(255,255,255,.08);
}


.driver-screen-placeholder__body {
  flex: 1;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  padding: 30px;

  text-align: center;
}


.driver-screen-placeholder__body span {
  color: var(--accent);

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .15em;
}


.driver-screen-placeholder__body strong {
  display: block;

  margin-top: 12px;

  color: #fff;

  font-size: 27px;

  letter-spacing: -.04em;
}


.driver-screen-placeholder__body small {
  display: block;

  margin-top: 10px;

  color: #727479;

  font-size: 11px;
}


.driver-floating-card {
  position: absolute;
  z-index: 5;

  display: inline-flex;
  align-items: center;

  gap: 8px;

  padding: 11px 14px;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;

  color: #d6d6d1;

  background: rgba(20,21,24,.90);

  box-shadow:
    0 15px 35px rgba(0,0,0,.30);

  backdrop-filter: blur(15px);

  font-size: 11px;
  font-weight: 750;
}


.driver-floating-card i {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: #58df82;

  box-shadow:
    0 0 0 5px rgba(88,223,130,.11);
}


.driver-floating-card--top {
  top: 80px;
  right: 8%;
}


.driver-floating-card--bottom {
  left: 7%;
  bottom: 90px;

  color: #151515;
  background: var(--accent);
  border-color: var(--accent);

  font-weight: 800;
}



/* =========================================================
   HERO – SPODNÍ STATISTIKY
   ========================================================= */

.driver-hero__stats {
  position: relative;
  z-index: 3;

  display: grid;
  grid-template-columns: repeat(4, 1fr);

  margin-top: 55px;

  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}


.driver-hero__stats article {
  padding: 25px 18px;

  border-right: 1px solid var(--line-dark);
}


.driver-hero__stats article:last-child {
  border-right: 0;
}


.driver-hero__stats strong {
  display: block;

  color: var(--accent);

  font-size: 13px;
  font-weight: 850;

  letter-spacing: .12em;
}


.driver-hero__stats span {
  display: block;

  margin-top: 7px;

  color: #8c8e93;

  font-size: 12px;
}



/* =========================================================
   HLAVNÍ FUNKCE
   ========================================================= */

.driver-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);

  gap: 14px;
}


.driver-feature-card {
  position: relative;

  min-height: 330px;

  overflow: hidden;

  padding: 30px;

  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);

  background: #fff;

  transition:
    transform .3s ease,
    box-shadow .3s ease,
    border-color .3s ease;
}


.driver-feature-card__number {
  color: #a3a4a8;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .15em;
}


.driver-feature-card__icon {
  display: grid;
  place-items: center;

  width: 72px;
  height: 72px;

  margin: 32px 0 34px;

  border-radius: 20px;

  color: #111215;
  

  font-size: 30px;
  font-weight: 500;
}


.driver-feature-card h3 {
  margin: 0;

  color: #17181a;

  font-size: 21px;

  letter-spacing: -.03em;
}


.driver-feature-card p {
  margin: 13px 0 0;

  color: #6d6e73;

  font-size: 14px;
  line-height: 1.65;
}


@media (hover:hover) {

  .driver-feature-card:hover {
    transform: translateY(-6px);

    border-color: rgba(17,18,21,.16);

    box-shadow:
      0 20px 50px rgba(0,0,0,.08);
  }

}



/* =========================================================
   VELKÁ PREZENTACE
   ========================================================= */

.driver-showcase {
  overflow: hidden;
}


.driver-showcase::before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  right: -220px;
  bottom: -220px;

  border-radius: 50%;

  background: rgba(255,212,0,.055);
}


.driver-showcase__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.15fr .85fr;

  gap: 75px;

  align-items: center;
}


.driver-app-window {
  overflow: hidden;

  padding: 8px;

  border: 1px solid rgba(255,255,255,.12);
  border-radius: 26px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.075),
      rgba(255,255,255,.018)
    );

  box-shadow:
    0 50px 100px rgba(0,0,0,.40);
}


.driver-app-window__bar {
  display: flex;
  align-items: center;

  gap: 7px;

  padding: 10px 12px 17px;
}


.driver-app-window__bar > span {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: rgba(255,255,255,.20);
}


.driver-app-window__bar strong {
  margin-left: auto;

  color: #77797e;

  font-size: 9px;

  letter-spacing: .12em;
}


.driver-app-window__content {
  overflow: hidden;

  min-height: 470px;

  border-radius: 18px;

  background: #111215;
}


.driver-big-placeholder {
  position: relative;
  overflow: hidden;

  min-height: 470px;

  background: #101113;
}

.driver-big-placeholderuser img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  filter: blur(2px) ;
  transform: scale(1.05);

  display: block;
}


.driver-big-placeholder span {
  color: var(--accent);

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .15em;
}


.driver-big-placeholder strong {
  margin-top: 12px;

  color: #fff;

  font-size: 25px;

  letter-spacing: -.03em;
}


.driver-showcase__copy h2 {
  margin: 0;

  font-size: clamp(17px, 4vw, 45px);
  line-height: .98;

  letter-spacing: -.055em;
}


.driver-showcase__copy h2 em {
  color: var(--accent);
  font-style: normal;
}


.driver-showcase__copy > p {
  max-width: 560px;

  margin: 25px 0 0;

  color: #a5a6aa;

  font-size: 16px;
  line-height: 1.7;
}


.driver-showcase__points {
  display: grid;

  gap: 0;

  margin-top: 35px;

  border-top: 1px solid rgba(255,255,255,.10);
}


.driver-showcase__points > div {
  display: grid;
  grid-template-columns: 46px 1fr;

  gap: 12px;

  padding: 18px 0;

  border-bottom: 1px solid rgba(255,255,255,.10);
}


.driver-showcase__points > div > span {
  color: var(--accent);

  font-size: 11px;
  font-weight: 850;
}


.driver-showcase__points strong {
  display: block;

  color: #fff;

  font-size: 14px;
}


.driver-showcase__points small {
  display: block;

  margin-top: 5px;

  color: #77797e;

  font-size: 12px;
}



/* =========================================================
   PRŮBĚH OBJEDNÁVKY
   ========================================================= */

.driver-process__line {
  position: relative;

  display: grid;
  grid-template-columns: repeat(5, 1fr);

  gap: 0;

  margin-top: 30px;
}


.driver-process__line::before {
  content: "";

  position: absolute;

  top: 54px;
  left: 10%;
  right: 10%;

  height: 1px;

  background: rgba(17,18,21,.14);
}


.driver-process-step {
  position: relative;
  z-index: 2;

  padding: 0 20px;

  text-align: center;
}


.driver-process-step__number {
  color: #a1a2a6;

  font-size: 14px;
  font-weight: 850;

  letter-spacing: .14em;
}


.driver-process-step__dot {
  width: 18px;
  height: 18px;

  margin: 28px auto;

  border: 5px solid var(--light);
  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 0 1px rgba(17,18,21,.12);
}


.driver-process-step h3 {
  margin: 0;

  color: #17181a;

  font-size: 15px;
}


.driver-process-step p {
  margin: 9px 0 0;

  color: #77787d;

  font-size: 13px;
}



/* =========================================================
   MANUÁL – HLAVNÍ PLOCHA
   ========================================================= */

.driver-manual {
  position: relative;

  padding: 120px 0;

  color: #fff;

  background:
    radial-gradient(
      circle at 85% 8%,
      rgba(255,212,0,.07),
      transparent 28%
    ),
    #0a0a0b;
}


.driver-manual__head {
  max-width: 900px;

  margin-bottom: 65px;
}


.driver-manual__head h2 {
  margin: 0;

  font-size: clamp(17px, 5vw, 47px);
  line-height: .98;

  letter-spacing: -.055em;
}


.driver-manual__head p {
  max-width: 760px;

  margin: 25px 0 0;

  color: #999b9f;

  font-size: 17px;
  line-height: 1.7;
}


.driver-manual__layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);

  gap: 45px;

  align-items: start;
}



/* =========================================================
   MANUÁL – LEVÉ MENU
   ========================================================= */

.driver-manual-nav {
  position: sticky;

  top: 105px;

  display: flex;
  flex-direction: column;

  overflow: hidden;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;

  background: #111215;
}


.driver-manual-nav__label {
  padding: 18px 20px;

  color: #67696e;

  font-size: 9px;
  font-weight: 850;

  letter-spacing: .15em;

  border-bottom: 1px solid rgba(255,255,255,.08);
}


.driver-manual-nav a {
  display: grid;
  grid-template-columns: 28px 1fr;

  gap: 10px;

  padding: 16px 20px;

  color: #a8a9ad;

  font-size: 13px;

  border-bottom: 1px solid rgba(255,255,255,.065);

  transition:
    color .2s ease,
    background .2s ease;
}


.driver-manual-nav a:last-child {
  border-bottom: 0;
}


.driver-manual-nav a span {
  color: #65676c;

  font-size: 10px;
  font-weight: 800;
}


.driver-manual-nav a:hover {
  color: #fff;

  background: rgba(255,255,255,.04);
}



/* =========================================================
   MANUÁL – JEDNOTLIVÉ KAPITOLY
   ========================================================= */

.driver-manual-content {
  min-width: 0;
}


.driver-manual-section {
  scroll-margin-top: 105px;

  margin-bottom: 26px;
  padding: 45px;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 22px;

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.055),
      rgba(255,255,255,.018)
    );
}


.driver-manual-section__top {
  display: flex;
  align-items: center;

  gap: 14px;
}


.driver-manual-section__top span {
  color: var(--accent);

  font-size: 12px;
  font-weight: 850;

  letter-spacing: .15em;
}


.driver-manual-section__top small {
  color: #77797e;

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .14em;
}


.driver-manual-section h3 {
  margin: 18px 0 0;

  color: #fff;

  font-size: clamp(28px, 3vw, 40px);

  letter-spacing: -.045em;
}


.driver-manual-section__intro {
  max-width: 760px;

  margin: 16px 0 0;

  color: #9b9ca0;

  font-size: 15px;
  line-height: 1.7;
}



/* =========================================================
   MANUÁL – SCREENSHOT + KROKY
   ========================================================= */

.driver-manual-detail {
  display: grid;
  grid-template-columns: .7fr 1.3fr;

  gap: 45px;

  align-items: center;

  margin-top: 42px;
  padding-top: 38px;

  border-top: 1px solid rgba(255,255,255,.08);
}


.driver-manual-detail--reverse {
  grid-template-columns: .7fr 1.3fr;
}


.driver-manual-detail__visual {
  display: flex;
  justify-content: center;
}


.driver-manual-phone-placeholder {
  display: grid;
  place-items: center;

  width: 210px;

  aspect-ratio: 9 / 19;

  border: 7px solid #25262a;
  border-radius: 34px;

  color: #66686d;
  background: #0d0e10;

  box-shadow:
    0 30px 70px rgba(0,0,0,.35);

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .14em;
}


.driver-manual-detail__steps {
  display: grid;

  gap: 15px;
}


.driver-manual-step {
  display: grid;
  grid-template-columns: 42px 1fr;

  gap: 15px;

  padding: 18px;

  border: 1px solid rgba(255,255,255,.075);
  border-radius: 15px;

  background: rgba(255,255,255,.025);
}


.driver-manual-step > span {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 12px;

  color: #111;
  background: var(--accent);

  font-size: 15px;
  font-weight: 850;
}


.driver-manual-step strong {
  color: #fff;

  font-size: 16px;
}


.driver-manual-step p {
  margin: 5px 0 10px ;

  color: #FFFFFF;

  font-size: 15px;
  line-height: 1.55;
}



/* =========================================================
   MANUÁL – INFORMAČNÍ BOX
   ========================================================= */

.driver-manual-info {
  display: flex;
  align-items: flex-start;

  gap: 16px;

  margin-top: 35px;
  padding: 21px;

  border: 1px solid rgba(255,212,0,.20);
  border-radius: 16px;

  background: rgba(255,212,0,.055);
}


.driver-manual-info__icon {
  flex: 0 0 auto;

  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  color: #111;
  background: var(--accent);

  font-size: 17px;
  font-weight: 850;
}


.driver-manual-info strong {
  color: #fff;

  font-size: 14px;
}


.driver-manual-info p {
  margin: 6px 0 0;

  color: #a1a2a5;

  font-size: 13px;
  line-height: 1.6;
}



/* =========================================================
   PLATFORMY ANDROID + iOS
   ========================================================= */

.driver-platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);

  gap: 18px;
}


.driver-platform-card {
  position: relative;

  min-height: 520px;

  overflow: hidden;

  padding: 38px;

  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);

  color: #17181a;
  background: #fff;
}


.driver-platform-card--dark {
  color: #fff;
  background: #111215;

  border-color: #111215;
}


.driver-platform-card__tag {
  display: inline-flex;

  padding: 7px 10px;

  border-radius: 999px;

  color: #111;
  background: var(--accent);

  font-size: 10px;
  font-weight: 850;

  letter-spacing: .12em;
}


.driver-platform-card h3 {
  margin: 25px 0 0;

  font-size: 35px;
  line-height: 1.05;

  letter-spacing: -.045em;
}


.driver-platform-card p {
  margin: 17px 0 0;

  color: #717278;

  font-size: 14px;
}


.driver-platform-card--dark p {
  color: #909195;
}


.driver-platform-card__phone {
  position: absolute;

  right: 45px;
  bottom: -120px;

  width: 250px;
}


.driver-platform-placeholder {
  display: grid;
  place-items: center;

  aspect-ratio: 9 / 19;

  border: 8px solid #25262a;
  border-radius: 42px;

  color: #77797e;
  background: #0d0e10;

  box-shadow:
    0 30px 60px rgba(0,0,0,.25);

  font-size: 11px;
  font-weight: 850;

  letter-spacing: .15em;
}



/* =========================================================
   ZÁVĚREČNÉ CTA
   ========================================================= */

.driver-cta {
  padding: 118px 0;

  background: var(--light);
}

.driver-cta__card {
  position: relative;

  overflow: hidden;

  display: grid;
  grid-template-columns: 1fr auto;

  gap: 70px;

  align-items: end;

  padding: 62px;

  border-radius: var(--radius-xl);

  background: #111215;
}


.driver-cta__glow {
  position: absolute;

  width: 500px;
  height: 500px;

  left: -150px;
  bottom: -270px;

  border-radius: 50%;

  background: rgba(255,212,0,.13);
}


.driver-cta__copy,
.driver-cta__actions {
  position: relative;
  z-index: 2;
}


.driver-cta h2 {
  margin: 0;

  font-size: clamp(35px, 4vw, 52px);
  line-height: 1;

  letter-spacing: -.052em;
}


.driver-cta p {
  max-width: 600px;

  margin: 20px 0 0;

  color: #999a9e;

  font-size: 15px;
  line-height: 1.65;
}



/* =========================================================
   RESPONSIVE – TABLET
   ========================================================= */

@media (max-width: 1100px) {

  .driver-hero {
    min-height: auto;
  }


  .driver-hero__grid {
    grid-template-columns: 1fr;

    gap: 20px;
  }


  .driver-hero__copy {
    max-width: 820px;
  }


  .driver-phone-stage {
    min-height: 560px;
  }


  .driver-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }


  .driver-showcase__grid {
    grid-template-columns: 1fr;

    gap: 55px;
  }


  .driver-showcase__copy {
    max-width: 760px;
  }


  .driver-manual__layout {
    grid-template-columns: 220px minmax(0,1fr);

    gap: 25px;
  }

}



/* =========================================================
   RESPONSIVE – MOBIL / MENŠÍ TABLET
   ========================================================= */

@media (max-width: 900px) {

  .driver-hero {
    padding-top: 125px;
  }


  .driver-hero h1 {
    font-size: clamp(42px, 8vw, 58px);
  }


  .driver-hero__stats {
    grid-template-columns: repeat(2, 1fr);
  }


  .driver-hero__stats article:nth-child(2) {
    border-right: 0;
  }


  .driver-hero__stats article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line-dark);
  }


  .driver-process__line {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .driver-process__line::before {
    display: none;
  }


  .driver-process-step {
    display: grid;
    grid-template-columns: 40px 22px 1fr;

    gap: 12px;

    align-items: center;

    padding: 15px 0;

    text-align: left;

    border-bottom: 1px solid var(--line-light);
  }


  .driver-process-step__dot {
    margin: 0;
  }


  .driver-process-step h3 {
    margin: 0;
  }


  .driver-process-step p {
    grid-column: 3;

    margin-top: -6px;
  }


  .driver-manual__layout {
    grid-template-columns: 1fr;
  }


  .driver-manual-nav {
    position: relative;
    top: auto;

    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }


  .driver-manual-nav__label {
    grid-column: 1 / -1;
  }


  .driver-manual-detail {
    grid-template-columns: 1fr;

    gap: 35px;
  }


  .driver-platform-card {
    min-height: 480px;
  }


  .driver-cta__card {
    grid-template-columns: 1fr;

    gap: 35px;
  }

}



/* =========================================================
   RESPONSIVE – TELEFON
   ========================================================= */

@media (max-width: 700px) {

  .driver-hero {
    padding:
      112px 0
      38px;
  }


  .driver-hero h1 {
    font-size: clamp(36px, 10vw, 46px);

    line-height: .98;
  }


  .driver-hero__lead {
    margin-top: 22px;

    font-size: 15px;
  }


  .driver-hero__actions {
    margin-top: 28px;
  }


  .driver-hero__actions .btn {
    width: 100%;
  }


  .driver-phone-stage {
    min-height: 500px;
  }


  .driver-phone {
    width: 235px;

    border-radius: 38px;

    transform: none;
  }


  .driver-phone__screen {
    border-radius: 30px;
  }


  .driver-floating-card--top {
    top: 70px;
    right: 0;
  }


  .driver-floating-card--bottom {
    left: 0;
    bottom: 70px;
  }


  .driver-hero__stats {
    margin-top: 20px;
  }


  .driver-hero__stats article {
    padding: 18px 10px;
  }


  .driver-feature-grid {
    grid-template-columns: 1fr;

    gap: 12px;
  }


  .driver-feature-card {
    min-height: auto;

    padding: 23px;

    border-radius: 20px;
  }


  .driver-feature-card__icon {
    width: 60px;
    height: 60px;

    margin:
      25px 0
      26px;

    border-radius: 17px;
  }


  .driver-app-window__content,
  .driver-big-placeholder {
    min-height: 280px;
  }


  .driver-showcase__copy h2 {
    font-size: 38px;
  }


  .driver-manual {
    padding: 70px 0;
  }


  .driver-manual__head {
    margin-bottom: 38px;
  }


  .driver-manual__head h2 {
    font-size: 38px;
  }


  .driver-manual-nav {
    grid-template-columns: 1fr;
  }


  .driver-manual-section {
    padding: 25px 21px;

    border-radius: 19px;
  }


  .driver-manual-section h3 {
    font-size: 29px;
  }


  .driver-manual-phone-placeholder {
    width: 180px;
  }


  .driver-manual-step {
    grid-template-columns: 38px 1fr;

    padding: 15px;
  }


  .driver-platform-grid {
    grid-template-columns: 1fr;
  }


  .driver-platform-card {
    min-height: 430px;

    padding: 26px;

    border-radius: 20px;
  }


  .driver-platform-card h3 {
    font-size: 29px;
  }


  .driver-platform-card__phone {
    width: 190px;

    right: 25px;
    bottom: -105px;
  }


.driver-cta {
  padding: 68px 0;
}


  .driver-cta__card {
    padding: 30px 23px;

    border-radius: 20px;
  }


  .driver-cta__actions .btn {
    width: 100%;
  }

}



/* =========================================================
   RESPONSIVE – MALÝ TELEFON
   ========================================================= */

@media (max-width: 430px) {

  .driver-hero h1 {
    font-size: 36px;
  }


  .driver-phone {
    width: 215px;
  }


  .driver-floating-card {
    padding: 8px 10px;

    font-size: 9px;
  }


  .driver-hero__stats span {
    font-size: 10px;
  }


  .driver-manual__head h2 {
    font-size: 33px;
  }


  .driver-manual-section {
    padding: 22px 18px;
  }


  .driver-manual-section h3 {
    font-size: 26px;
  }


  .driver-manual-phone-placeholder {
    width: 165px;
  }

}



/* =========================================================
   =========================================================
   DRIVER MANUÁL – ACCORDION
   Přidat NA ÚPLNÝ KONEC style.css
   =========================================================
   ========================================================= */


/* =========================================================
   KARTA KAPITOLY
   ========================================================= */

.driver-manual-section {
  padding: 0;
  margin-bottom: 14px;

  overflow: hidden;

  transition:
    border-color .25s ease,
    background .25s ease,
    box-shadow .25s ease;
}


/* otevřená kapitola */
.driver-manual-section.is-open {
  border-color: rgba(255,212,0,.20);

  background:
    linear-gradient(
      145deg,
      rgba(255,255,255,.065),
      rgba(255,212,0,.018)
    );

  box-shadow:
    0 22px 60px rgba(0,0,0,.20);
}



/* =========================================================
   KLIKACÍ HLAVIČKA
   ========================================================= */
.manualdriver{ border-radius: 25px;}
.driver-manual-trigger {
  width: 100%;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;

  gap: 30px;

  padding: 20px 20px;

  border: 0;

  color: inherit;
  background: transparent;

  text-align: left;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    background .2s ease;
}


.driver-manual-trigger:hover {
  background: rgba(255,255,255,.025);
}


.driver-manual-trigger__text {
  display: block;

  min-width: 0;
}


/* horní malý řádek: 01 ZAČÍNÁME */
.driver-manual-trigger .driver-manual-section__top {
  margin: 0;
}


/* velký název kapitoly */
.driver-manual-trigger__title {
  display: block;

  margin-top: 15px;

  color: #fff;

  font-size: clamp(17px, 2.5vw, 24px);
  line-height: 1.08;

  font-weight: 600;

  letter-spacing: -.04em;
}



/* =========================================================
   PLUS / MINUS VPRAVO
   ========================================================= */

.driver-manual-trigger__icon {
  position: relative;

  display: block;

  width: 44px;
  height: 44px;

  border: 1px solid rgba(255,255,255,.11);
  border-radius: 50%;

  background: rgba(255,255,255,.025);

  transition:
    border-color .25s ease,
    background .25s ease,
    transform .25s ease;
}


/* vodorovná čára */
.driver-manual-trigger__icon::before {

  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 14px;
  height: 2px;

  border-radius: 10px;

  background: var(--accent);

  transform:
    translate(-50%, -50%);
}


/* svislá čára = PLUS */
.driver-manual-trigger__icon::after {

  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  width: 2px;
  height: 14px;

  border-radius: 10px;

  background: var(--accent);

  transform:
    translate(-50%, -50%);

  transition:
    opacity .22s ease,
    transform .22s ease;
}


/* otevřený stav – zmizí svislá čára = MINUS */
.driver-manual-section.is-open
.driver-manual-trigger__icon::after {

  opacity: 0;

  transform:
    translate(-50%, -50%)
    rotate(90deg);
}


.driver-manual-section.is-open
.driver-manual-trigger__icon {

  border-color: rgba(255,212,0,.30);

  background: rgba(255,212,0,.06);
}



/* =========================================================
   ROZBALOVACÍ OBSAH

   grid-template-rows umožní plynulé otevření i když
   později bude uvnitř hodně textu a screenshotů.
   ========================================================= */

.driver-manual-panel {
  display: grid;

  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows .38s cubic-bezier(.2,.7,.2,1),
    opacity .25s ease;
}


.driver-manual-panel__inner {
  min-height: 0;

  overflow: hidden;
}


.driver-manual-section.is-open
.driver-manual-panel {

  grid-template-rows: 1fr;

  opacity: 1;
}



/* =========================================================
   VNITŘNÍ OBSAH OTEVŘENÉ KAPITOLY
   ========================================================= */

.driver-manual-panel__body {
  margin: 0 38px;

  padding: 0 0 38px;

  border-top: 1px solid rgba(255,255,255,.08);
}


.driver-manual-panel__body
.driver-manual-section__intro {

  margin-top: 30px;
}


/*
 * Původní .driver-manual-detail má vlastní horní čáru.
 * Protože nyní máme oddělovací čáru už nad celým obsahem,
 * druhou zde nepotřebujeme.
 */
.driver-manual-panel__body
.driver-manual-detail {

  margin-top: 32px;

  padding-top: 0;

  border-top: 0;
}



/* =========================================================
   AKTIVNÍ POLOŽKA V LEVÉM MENU
   ========================================================= */

.driver-manual-nav a.is-active {

  color: #fff;

  background:
    rgba(255,212,0,.055);
}


.driver-manual-nav a.is-active span {

  color: var(--accent);
}



/* =========================================================
   RESPONSIVE – TABLET / MOBIL
   ========================================================= */

@media (max-width: 900px) {

  .driver-manual-trigger {

    grid-template-columns:
      minmax(0, 1fr)
      42px;

    gap: 18px;

    padding: 25px 24px;
  }


  .driver-manual-trigger__title {

    margin-top: 12px;

    font-size: 27px;
  }


  .driver-manual-trigger__icon {

    width: 40px;
    height: 40px;
  }


  .driver-manual-panel__body {

    margin: 0 24px;

    padding-bottom: 28px;
  }

}



/* =========================================================
   RESPONSIVE – TELEFON
   ========================================================= */

@media (max-width: 700px) {

  .driver-manual-section {

    padding: 0;

    border-radius: 18px;
  }


  .driver-manual-trigger {

    grid-template-columns:
      minmax(0, 1fr)
      38px;

    gap: 14px;

    padding: 22px 19px;
  }


  .driver-manual-trigger__title {

    margin-top: 10px;

    font-size: 23px;
  }


  .driver-manual-trigger__icon {

    width: 36px;
    height: 36px;
  }


  .driver-manual-trigger__icon::before {

    width: 12px;
  }


  .driver-manual-trigger__icon::after {

    height: 12px;
  }


  .driver-manual-panel__body {

    margin: 0 19px;

    padding-bottom: 23px;
  }


  .driver-manual-panel__body
  .driver-manual-section__intro {

    margin-top: 23px;
  }

}


/* =========================================================
   DRIVER MANUÁL – STICKY SCREENSHOT
   ========================================================= */


/*
 * Otevřená kapitola nesmí ořezávat sticky obsah.
 */
.driver-manual-section.is-open {
  overflow: visible;
}


/*
 * Po otevření accordionu nesmí obsah zůstat
 * uvnitř overflow:hidden.
 */
.driver-manual-section.is-open .driver-manual-panel__inner {
  overflow: visible;
}


/*
 * Screenshot a pravý seznam začínají nahoře.
 */
.driver-manual-detail {
  align-items: start;
}


/*
 * Levý sloupec drží obrázek při scrollování.
 */
.driver-manual-detail__visual {
  position: sticky;

  top: 110px;

  align-self: start;
}


/*
 * Samotný telefon nesmí měnit svoji výšku.
 */
.driver-manual-phone-placeholder {
  position: relative;

  flex-shrink: 0;
}


/* =========================================================
   MOBIL – STICKY VYPNEME
   ========================================================= */

@media (max-width: 900px) {

  .driver-manual-detail__visual {
    position: relative;
    top: auto;
  }

}




/* =========================================================
   DRIVER MANUÁL – GALERIE SCREENSHOTŮ
   ========================================================= */

.driver-manual-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;

  margin-top: 32px;
  margin-bottom: 34px;
}

.driver-manual-gallery__item {
  margin: 0;
  padding: 16px;

  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;

  background: rgba(255,255,255,.02);
}

.driver-manual-gallery__item img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 18px;
}

.driver-manual-gallery__item figcaption {
  margin-top: 12px;

  color: #9fa1a6;

  font-size: 13px;
  line-height: 1.5;
}

.driver-manual-detail--single {
  display: block;
}

.manualdriver--wide {
  width: 100%;
  max-width: 100%;
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .driver-manual-gallery {
    grid-template-columns: 1fr;
  }

}





/* =========================================================
   OPERATOR – HERO MONITOR
   ========================================================= */

.operator-product-page .driver-hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}


.operator-product-page .driver-app-window {
  width: 100%;
  max-width: 620px;
}


.operator-product-page .driver-app-window__content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 430px;
}


.operator-product-page .driver-big-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
}


.operator-product-page .driver-big-placeholder img {
  display: block;
  width: 512px;
  height: 390px;
  max-width: 100%;
  object-fit: contain;
}




/* =========================================================
   TAXISOFT ADMINISTRATOR – PREZENTAČNÍ STRÁNKA
   ========================================================= */


/* =========================================================
   HERO SCREENSHOT
   ========================================================= */

.administrator-product-page .administrator-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;

  min-width: 0;
}


.administrator-product-page .administrator-hero__screen {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 470px;
}


.administrator-product-page .administrator-hero__glow {
  position: absolute;

  width: 620px;
  height: 400px;

  left: 50%;
  top: 50%;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(255,212,0,.11) 0%,
      rgba(255,212,0,.03) 48%,
      transparent 74%
    );

  filter: blur(35px);

  transform:
    translate(-50%, -50%);

  pointer-events: none;
}


.administrator-product-page .administrator-hero__screen img {
  position: relative;
  z-index: 2;

  display: block;

  width: 100%;
  max-width: 690px;
  height: auto;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 16px;

  box-shadow:
    0 35px 80px rgba(0,0,0,.38);
}


/* =========================================================
   6 HLAVNÍCH OBLASTÍ
   ========================================================= */

.administrator-feature-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-top: 46px;
}


/* =========================================================
   SCREENSHOT VE TMAVÉ SEKCI
   ========================================================= */

.administrator-showcase__screen {
  overflow: hidden;

  padding: 7px;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 20px;

  background:
    rgba(255,255,255,.025);

  box-shadow:
    0 35px 80px rgba(0,0,0,.35);
}


.administrator-showcase__screen img {
  display: block;

  width: 100%;
  height: auto;

  border-radius: 14px;
}


/* =========================================================
   JEDNODUCHÉ 3 BODY – SLUŽBY / OBLAST / CENY
   ========================================================= */

.administrator-simple-points {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 18px;

  margin-top: 45px;
}


.administrator-simple-points article {
  padding: 27px;

  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;

  background: #fff;
}


.administrator-simple-points strong {
  display: block;

  margin-bottom: 10px;

  color: #151515;

  font-size: 19px;
}


.administrator-simple-points p {
  margin: 0;

  color: #696b70;

  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .administrator-feature-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   MOBIL
   ========================================================= */

@media (max-width: 700px) {

  .administrator-feature-grid,
  .administrator-simple-points {
    grid-template-columns: 1fr;
  }


  .administrator-product-page
  .administrator-hero__screen {
    min-height: 320px;
  }


  .administrator-product-page
  .administrator-hero__screen img {
    max-width: 100%;
  }

}




/* =========================================================
   HLAVNÍ MENU – ROZBALOVACÍ SYSTÉM
   ========================================================= */

.site-nav-dropdown {
  position: relative;
  margin: 0;
  padding: 0;
}


/* odstranění výchozí šipky details */
.site-nav-dropdown > summary {
  list-style: none;
}

.site-nav-dropdown > summary::-webkit-details-marker {
  display: none;
}


/* hlavní položka SYSTÉM */
.site-nav-dropdown > summary {
  display: flex;
  align-items: center;
  gap: 8px;

  padding: 12px 0;

  color: inherit;

  font: inherit;
  font-weight: 700;

  cursor: pointer;
  user-select: none;

  transition:
    color .2s ease;
}


.site-nav-dropdown > summary:hover,
.site-nav-dropdown[open] > summary {
  color: var(--accent);
}


/* malá šipka */
.site-nav-dropdown__arrow {
  width: 7px;
  height: 7px;

  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;

  transform:
    translateY(-2px)
    rotate(45deg);

  transition:
    transform .22s ease;
}


.site-nav-dropdown[open]
.site-nav-dropdown__arrow {
  transform:
    translateY(2px)
    rotate(225deg);
}


/* =========================================================
   DROPDOWN
   ========================================================= */

.site-nav-dropdown__menu {
  position: absolute;
  z-index: 1000;

  top: calc(100% + 16px);
  left: 50%;

  width: 340px;

  padding: 10px;

  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;

  background:
    linear-gradient(
      145deg,
      rgba(20,20,21,.99),
      rgba(11,11,12,.99)
    );

  box-shadow:
    0 30px 70px rgba(0,0,0,.50);

  transform:
    translateX(-50%);
}


/* malý trojúhelník nahoře */
.site-nav-dropdown__menu::before {
  content: "";

  position: absolute;

  top: -6px;
  left: 50%;

  width: 11px;
  height: 11px;

  border-left:
    1px solid rgba(255,255,255,.10);

  border-top:
    1px solid rgba(255,255,255,.10);

  background: #131314;

  transform:
    translateX(-50%)
    rotate(45deg);
}


 
 /* jednotlivé produktové odkazy */
.site-nav-dropdown__menu > a {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 12px;

  padding: 14px 14px;

  border-radius: 12px;

  color: #fff;
  text-decoration: none;

  transition:
    background .2s ease,
    transform .2s ease;
}


.site-nav-dropdown__menu > a:hover {
  background: rgba(255,255,255,.045);
  transform: translateX(2px);
}


/* číslo bez žluté kostky */
.site-nav-dropdown__number {
  display: block;

  width: auto;
  height: auto;

  margin-top: 2px;

  color: var(--accent);

  background: transparent;
  border-radius: 0;

  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}


/* název */
.site-nav-dropdown__menu strong {
  display: block;

  color: #fff;

  font-size: 15px;
  line-height: 1.25;
}


/* podtext */
.site-nav-dropdown__menu small {
  display: block;

  margin-top: 4px;

  color: #8a8d93;

  font-size: 12px;
  font-weight: 500;
  line-height: 1.35;
}

 

 


/* =========================================================
   SPODNÍ ODKAZ
   ========================================================= */

.site-nav-dropdown__footer {
  margin-top: 7px;
  padding-top: 8px;

  border-top:
    1px solid rgba(255,255,255,.08);
}


.site-nav-dropdown__footer a {
  display: block;

  padding: 11px 14px;

  color: var(--accent);

  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}


.site-nav-dropdown__footer a:hover {
  color: #fff;
}


/* =========================================================
   MOBILNÍ MENU
   ========================================================= */

@media (max-width: 900px) {

  .site-nav-dropdown {
    width: 100%;
  }


  .site-nav-dropdown > summary {
    width: 100%;
  }


  .site-nav-dropdown__menu {
    position: relative;

    top: auto;
    left: auto;

    width: 100%;

    margin:
      4px 0 10px;

    box-sizing: border-box;

    border-radius: 14px;

    transform: none;

    box-shadow: none;
  }


  .site-nav-dropdown__menu::before {
    display: none;
  }


  .site-nav-dropdown__menu > a {
    padding: 12px;
  }

}



/* =========================================================
   TAXISOFT
   CO JE POTŘEBA PRO PROVOZ SYSTÉMU
   ========================================================= */


/* =========================================================
   HERO
   ========================================================= */

.requirements-hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  padding: 178px 0 110px;
  background:
    linear-gradient(
      180deg,
      #0a0a0b 0%,
      #0d0e10 100%
    );
}

.requirements-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(10px);
}

.requirements-hero__glow--one {
  width: 650px;
  height: 650px;
  top: -330px;
  right: -120px;
  background: rgba(255,212,0,.09);
}

.requirements-hero__glow--two {
  width: 500px;
  height: 500px;
  left: -280px;
  bottom: -270px;
  background: rgba(255,255,255,.035);
}

.requirements-hero__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns:
    minmax(0, 1.18fr)
    minmax(320px, .72fr);

  gap: 90px;
  align-items: center;
}

.requirements-hero__copy h1 {
  max-width: 850px;
  margin: 0;

  color: #fff;

  font-size:
    clamp(17px, 3.2vw, 45px);

  line-height: .97;

  letter-spacing: -.065em;

  font-weight: 600;
}

.requirements-hero__copy h1 em {
  color: var(--accent);
  font-style: normal;
}

.requirements-hero__lead {
  max-width: 760px;
  margin: 32px 0 0;

  color: #c2c3bf;

  font-size: 18px;
  line-height: 1.7;
}

.requirements-hero__sub {
  max-width: 700px;
  margin: 17px 0 0;

  color: #FFFFFF;

  font-size: 15px;
  line-height: 1.7;
}

.requirements-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 34px;
}

.requirements-hero__chips span {
  padding: 8px 11px;

  border:
    1px solid rgba(255,255,255,.11);

  border-radius: 999px;

  color: #8f9094;

  background:
    rgba(255,255,255,.035);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .08em;
}


/* =========================================================
   HERO PRAVÁ KARTA
   ========================================================= */

.requirements-start-card {
  position: relative;
  overflow: hidden;

  padding: 38px;

  border:
    1px solid rgba(255,255,255,.11);

  border-radius: var(--radius-xl);

  background:
    rgba(255,255,255,.045);

  box-shadow:
    0 35px 90px rgba(0,0,0,.35);

  backdrop-filter: blur(16px);
}

.requirements-start-card::after {
  content: "";

  position: absolute;

  width: 220px;
  height: 220px;

  right: -90px;
  top: -110px;

  border-radius: 50%;

  background:
    rgba(255,212,0,.13);

  filter: blur(10px);
}

.requirements-start-card__top {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 9px;

  color: #7c7d81;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .13em;
}

.requirements-start-card__dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow:
    0 0 18px rgba(255,212,0,.65);
}

.requirements-start-card > strong {
  position: relative;
  z-index: 2;

  display: block;

  margin-top: 30px;

  color: #fff;

  font-size:
    clamp(28px, 3vw, 40px);

  line-height: 1.08;

  letter-spacing: -.045em;
}

.requirements-start-card > p {
  position: relative;
  z-index: 2;

  margin: 22px 0 0;

  color:  var(--accent);

  font-size: 16px;
  line-height: 1.7;
}

.requirements-start-card__line {
  height: 1px;

  margin: 29px 0 23px;

  background:
    rgba(255,255,255,.09);
}

.requirements-start-card__time {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.requirements-start-card__time span {
  max-width: 140px;

  color: #FFFFFF;

  font-size: 13px;
  line-height: 1.4;
}

.requirements-start-card__time strong {
  color: var(--accent);

  font-size: 24px;
  letter-spacing: -.035em;
}


/* =========================================================
   SPOLEČNÝ ÚVOD
   ========================================================= */

.requirements-intro {
  padding: 115px 0;
  color: var(--ink);
  background: var(--light);
}

.requirements-section-head {
  max-width: 780px;
}

.requirements-section-head h2 {
  margin: 0;

  color: var(--ink);

  font-size:
    clamp(38px, 4.6vw, 62px);

  line-height: 1;

  letter-spacing: -.055em;

  font-weight: 600;
}

.requirements-section-head > p {
  max-width: 690px;

  margin: 23px 0 0;

  color: var(--ink-soft);

  font-size: 16px;
  line-height: 1.7;
}


/* =========================================================
   KDO CO ZAJIŠŤUJE
   ========================================================= */

.requirements-responsibility-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;

  margin-top: 55px;
}

.requirements-responsibility-card {
  padding: 38px;

  border:
    1px solid var(--line-light);

  border-radius: var(--radius-xl);

  background: #fff;
}

.requirements-responsibility-card__label {
  color: #98999c;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .13em;
}

.requirements-responsibility-card h3 {
  margin: 19px 0 0;

  color: var(--ink);

  font-size: 28px;

  letter-spacing: -.025em;
}

.requirements-responsibility-card ul {
  display: grid;
  gap: 12px;

  margin: 27px 0 0;
  padding: 0;

  list-style: none;
}

.requirements-responsibility-card li {
  display: flex;
  align-items: center;
  gap: 11px;

  color: #5e6065;

  font-size: 16px;
}

.requirements-responsibility-card li span {
  display: inline-grid;
  place-items: center;

  width: 22px;
  height: 22px;

  flex: 0 0 auto;

  border-radius: 50%;

  color: #111;

  background: var(--accent);

  font-size: 11px;
  font-weight: 900;
}

.requirements-responsibility-card--dark {
  color: #fff;
  border-color: rgba(255,255,255,.07);
  background: #111215;
}

.requirements-responsibility-card--dark h3 {
  color: #fff;
}

.requirements-responsibility-card--dark p {
  max-width: 560px;

  margin: 25px 0 0;

  color: #FFFFFF;

  font-size: 15px;
  line-height: 1.7;
}

.requirements-responsibility-card__note {
  margin-top: 28px;
  padding: 17px 18px;

  border:
    1px solid rgba(255,212,0,.17);

  border-radius: 13px;

  color: #FFFF00;

  background:
    rgba(255,212,0,.06);

  font-size: 13px;
  line-height: 1.6;
}


/* =========================================================
   SEZNAM POŽADAVKŮ
   ========================================================= */

.requirements-list-section {
  padding: 115px 0 125px;
  color: var(--ink);
  background: #fff;
}

.requirements-list {
  display: grid;
  gap: 14px;

  margin-top: 60px;
}

.requirement-item {
  display: grid;

  grid-template-columns:
    90px
    minmax(0, 1fr)
    210px;

  gap: 35px;

  align-items: start;

  padding: 42px;

  border:
    1px solid var(--line-light);

  border-radius: var(--radius-xl);

  background: #f7f7f4;

  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease;
}

.requirement-item:hover {
  transform: translateY(-3px);

  border-color:
    rgba(17,18,21,.17);

  box-shadow:
    0 22px 50px rgba(0,0,0,.06);
}

.requirement-item__number {
  color: #d1d1cd;

  font-size: 31px;
  font-weight: 800;

  letter-spacing: -.05em;
}

.requirement-item__type {
  margin-bottom: 10px;

  color: #a0a1a4;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .13em;
}

.requirement-item__content h3 {
  margin: 0;

  color: #111215;

  font-size:
    clamp(25px, 2.4vw, 34px);

  letter-spacing: -.04em;
}

.requirement-item__content > p {
  max-width: 770px;

  margin: 18px 0 0;

  color: #000000;

  font-size: 16px;
  line-height: 1.75;
}

.requirement-item__muted {
  color: #252525 !important;
  font-size: 13px !important;
}

.requirement-item__status {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  gap: 8px;
}

.requirement-item__status span {
  padding: 8px 10px;

  border-radius: 999px;

  color: #17181a;

  background: var(--accent);

  font-size: 9px;
  font-weight: 850;

  letter-spacing: .06em;
}

.requirement-item__status small {
  color: #96979b;

  font-size: 10px;
  line-height: 1.45;
}


/* =========================================================
   TECHNICKÁ TABULKA
   ========================================================= */

.requirement-tech {
  max-width: 560px;

  margin-top: 28px;

  overflow: hidden;

  border:
    1px solid #dededa;

  border-radius: 14px;

  background: #fff;
}

.requirement-tech__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;

  padding: 16px 19px;
}

.requirement-tech__row + .requirement-tech__row {
  border-top:
    1px solid #e7e7e3;
}

.requirement-tech__row span {
  color: #77787c;

  font-size: 12px;
}

.requirement-tech__row strong {
  color: #17181a;

  font-size: 13px;
}


/* =========================================================
   HELP BOX
   ========================================================= */

.requirement-help-box {
  display: flex;
  flex-direction: column;
  gap: 7px;

  max-width: 760px;

  margin-top: 28px;
  padding: 20px 21px;

  border-left:
    4px solid var(--accent);

  border-radius: 0 13px 13px 0;

  background:
    rgba(255,212,0,.09);
}

.requirement-help-box strong {
  color: #000000;

  font-size: 14px;
}

.requirement-help-box span {
  color: #000000;

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================================
   SMS
   ========================================================= */

.requirement-sms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;

  max-width: 780px;

  margin-top: 27px;
}

.requirement-mini-card {
  padding: 21px;

  border:
    1px solid #dededa;

  border-radius: 15px;

  background: #fff;
}

.requirement-mini-card__number {
  display: inline-grid;
  place-items: center;

  width: 27px;
  height: 27px;

  margin-bottom: 15px;

  border-radius: 8px;

  color: #111;

  background: var(--accent);

  font-size: 11px;
  font-weight: 900;
}

.requirement-mini-card > strong {
  display: block;

  color: #26272a;

  font-size: 15px;
}

.requirement-mini-card p {
  margin: 10px 0 0;

  color: #000000;

  font-size: 13px;
  line-height: 1.65;
}

.requirement-message-preview {
  display: flex;
  flex-direction: column;
  gap: 7px;

  max-width: 780px;

  margin-top: 12px;
  padding: 17px 20px;

  border-radius: 13px;

  color: #fff;

  background: #111215;
}

.requirement-message-preview span {
  color: #F9FF00;

  font-size: 13px;
  font-weight: 800;

  letter-spacing: .11em;
}

.requirement-message-preview strong {
  color: #d5d5d0;

  font-size: 13px;
  line-height: 1.5;
}


/* =========================================================
   PLATEBNÍ BRÁNA
   ========================================================= */

.requirement-payment {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 25px;

  align-items: center;

  max-width: 720px;

  margin-top: 27px;
  padding: 22px;

  border:
    1px solid #dededa;

  border-radius: 15px;

  background: #fff;
}

.requirement-payment > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.requirement-payment span {
  color: #000000;

  font-size: 9px;
  font-weight: 800;

  letter-spacing: .1em;
}

.requirement-payment strong {
  color: #111215;

  font-size: 27px;
}

.requirement-payment p {
  margin: 0;

  color: #000000;

  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   NASAZENÍ
   ========================================================= */

.requirement-item--deployment {
  border-color:
    rgba(255,212,0,.23);

  background:
    linear-gradient(
      135deg,
      #f8f7f1,
      #fffdf3
    );
}

.requirement-deployment-time {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;

  margin-top: 27px;
  padding: 18px 21px;

  border-radius: 14px;

  background: var(--accent);
}

.requirement-deployment-time span {
  color: rgba(17,18,21,.58);

  font-size: 9px;
  font-weight: 850;

  letter-spacing: .08em;
}

.requirement-deployment-time strong {
  color: #111215;

  font-size: 23px;

  letter-spacing: -.035em;
}

.requirement-store-warning {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 17px;

  max-width: 790px;

  margin-top: 28px;
  padding: 22px;

  border-radius: 15px;

  color: #fff;

  background: #111215;
}

.requirement-store-warning__icon {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  border-radius: 50%;

  color: #111215;

  background: var(--accent);

  font-weight: 900;
}

.requirement-store-warning strong {
  color: #fff;

  font-size: 16px;
}

.requirement-store-warning p {
  margin: 9px 0 0;

  color: #FFFFFF;

  font-size: 14px;
  line-height: 1.65;
}


/* =========================================================
   SPOLEČNÝ POSTUP
   ========================================================= */

.requirements-process {
  padding: 0 0 115px;
  color: #fff;
  background: var(--light);
}

.requirements-process__card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;

  padding: 60px;

  border-radius: var(--radius-xl);

  background: #111215;
}

.requirements-process__glow {
  position: absolute;

  width: 500px;
  height: 500px;

  left: -180px;
  bottom: -330px;

  border-radius: 50%;

  background:
    rgba(255,212,0,.12);

  filter: blur(10px);
}

.requirements-process__copy,
.requirements-process__steps {
  position: relative;
  z-index: 2;
}

.requirements-process__copy h2 {
  margin: 0;

  font-size:
    clamp(17px, 3.6vw, 40px);

  line-height: 1;

  letter-spacing: -.052em;
}

.requirements-process__copy p {
  max-width: 520px;

  margin: 22px 0 0;

  color: #FFFFFF;

  font-size: 14px;
  line-height: 1.7;
}

.requirements-process__steps {
  display: grid;
}

.requirements-process__steps > div {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 18px;

  align-items: center;

  padding: 20px 0;

  border-bottom:
    1px solid rgba(255,255,255,.08);
}

.requirements-process__steps > div:first-child {
  border-top:
    1px solid rgba(255,255,255,.08);
}

.requirements-process__steps span {
  color: var(--accent);

  font-size: 14px;
  font-weight: 800;
}

.requirements-process__steps strong {
  color: #d8d8d4;

  font-size: 16px;
}


/* =========================================================
   CTA
   ========================================================= */

.requirements-cta {
  padding: 0 0 118px;
  background: var(--light);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1050px) {

  .requirements-hero__grid {
    gap: 45px;
  }

  .requirement-item {
    grid-template-columns:
      70px
      minmax(0,1fr);
  }

  .requirement-item__status {
    grid-column: 2;
  }

}


@media (max-width: 900px) {

  .requirements-hero {
    min-height: auto;
    padding-top: 150px;
  }

  .requirements-hero__grid {
    grid-template-columns: 1fr;
  }

  .requirements-hero__side {
    max-width: 650px;
  }

  .requirements-responsibility-grid {
    grid-template-columns: 1fr;
  }

  .requirements-process__card {
    grid-template-columns: 1fr;
    gap: 45px;
  }

}


@media (max-width: 700px) {

  .requirements-hero {
    padding:
      125px 0
      72px;
  }

  .requirements-hero__copy h1 {
    font-size:
      clamp(42px, 13vw, 58px);
  }

  .requirements-hero__lead {
    font-size: 16px;
  }

  .requirements-start-card {
    padding: 28px 24px;
  }

  .requirements-intro,
  .requirements-list-section {
    padding:
      75px 0;
  }

  .requirements-section-head h2 {
    font-size:
      clamp(35px, 10vw, 45px);
  }

  .requirements-responsibility-card {
    padding: 28px 23px;
  }

  .requirement-item {
    grid-template-columns: 1fr;

    gap: 20px;

    padding: 28px 22px;
  }

  .requirement-item__number {
    font-size: 24px;
  }

  .requirement-item__status {
    grid-column: 1;
  }

  .requirement-sms-grid {
    grid-template-columns: 1fr;
  }

  .requirement-payment {
    grid-template-columns: 1fr;
  }

  .requirement-store-warning {
    grid-template-columns: 1fr;
  }

  .requirements-process__card {
    padding: 34px 24px;
  }

  .requirements-process {
    padding-bottom: 72px;
  }

  .requirements-cta {
    padding-bottom: 72px;
  }

}





/* =========================================================
   TAXISOFT DEMO
   ========================================================= */

.demo-hero {
  position: relative;
  overflow: hidden;
  padding: 178px 0 110px;
  background: #0a0a0b;
}

.demo-hero__glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.demo-hero__glow--one {
  width: 650px;
  height: 650px;
  right: -180px;
  top: -350px;
  background: rgba(255,212,0,.10);
  filter: blur(15px);
}

.demo-hero__glow--two {
  width: 500px;
  height: 500px;
  left: -250px;
  bottom: -300px;
  background: rgba(255,255,255,.035);
}

.demo-hero__grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.2fr .7fr;
  gap: 90px;
  align-items: center;
}

.demo-hero__copy h1 {
  margin: 0;

  font-size: clamp(17px, 3vw, 40px);
  line-height: .97;
  letter-spacing: -.065em;
  font-weight: 600;
}

.demo-hero__copy h1 em {
  color: var(--accent);
  font-style: normal;
}

.demo-hero__lead {
  max-width: 730px;
  margin: 31px 0 0;

  color: #c3c4c0;

  font-size: 18px;
  line-height: 1.7;
}

.demo-hero__sub {
  max-width: 650px;

  margin: 15px 0 0;

  color: #BBBBBB;

  font-size: 14px;
  line-height: 1.7;
}

.demo-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;

  margin-top: 32px;
}

.demo-hero__chips span {
  padding: 8px 11px;

  border: 1px solid rgba(255,255,255,.11);
  border-radius: 999px;

  color: #898a8e;
  background: rgba(255,255,255,.035);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
}


/* =========================================================
   HERO STATUS
   ========================================================= */

.demo-status-card {
  padding: 38px;

  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--radius-xl);

  background: rgba(255,255,255,.045);

  box-shadow: 0 35px 90px rgba(0,0,0,.35);

  backdrop-filter: blur(16px);
}

.demo-status-card__top {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #77787c;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
}

.demo-status-card__dot {
  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--accent);

  box-shadow: 0 0 18px rgba(255,212,0,.6);
}

.demo-status-card > strong {
  display: block;

  margin-top: 28px;

  color: #fff;

  font-size: clamp(29px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -.045em;
}

.demo-status-card > p {
  margin: 20px 0 0;

  color: #c3c4c0;

  font-size: 14px;
  line-height: 1.7;
}

.demo-status-card__line {
  height: 1px;

  margin: 29px 0 22px;

  background: rgba(255,255,255,.09);
}

.demo-status-card__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
}

.demo-status-card__info span {
  color: #DBDBDB;
  font-size: 14px;
}

.demo-status-card__info strong {
  color: var(--accent);

  font-size: 23px;
}


/* =========================================================
   INFO
   ========================================================= */

.demo-info-section {
  padding: 55px 0;
  color: var(--ink);
  background: var(--light);
}

.demo-info-box {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;

  max-width: 900px;

  padding: 23px 25px;

  border: 1px solid rgba(17,18,21,.09);
  border-radius: 16px;

  background: #fff;
}

.demo-info-box__icon {
  display: grid;
  place-items: center;

  width: 40px;
  height: 40px;

  border-radius: 50%;

  color: #111;
  background: var(--accent);

  font-weight: 900;
}

.demo-info-box strong {
  color: #111215;

  font-size: 15px;
}

.demo-info-box p {
  margin: 8px 0 0;

  color: #333333;

  font-size: 14px;
  line-height: 1.7;
}


/* =========================================================
   MODULY
   ========================================================= */

.demo-modules {
  padding: 70px 0 120px;
  color: var(--ink);
  background: var(--light);
}

.demo-section-head {
  max-width: 800px;
}

.demo-section-head h2 {
  margin: 0;

  color: var(--ink);

  font-size: clamp(17px, 3vw, 40px);
  line-height: 1;
  letter-spacing: -.055em;

  font-weight: 600;
}

.demo-section-head > p {
  max-width: 680px;

  margin: 22px 0 0;

  color: var(--ink);

  font-size: 16px;
  line-height: 1.7;
}

.demo-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;

  margin-top: 58px;
}

.demo-module-card {
  display: flex;
  flex-direction: column;

  min-height: 530px;

  padding: 37px;

  border: 1px solid var(--line-light);
  border-radius: var(--radius-xl);

  background: #fff;

  transition:
    transform .25s ease,
    box-shadow .25s ease;
}

.demo-module-card:hover {
  transform: translateY(-3px);

  box-shadow:
    0 25px 60px rgba(0,0,0,.07);
}

.demo-module-card__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.demo-module-card__number {
  color: #c5c6c3;

  font-size: 12px;
  font-weight: 850;
}

.demo-module-card__badge {
  padding: 7px 9px;

  border-radius: 999px;

  color: #111215;
  background: var(--accent);

  font-size: 9px;
  font-weight: 850;
  letter-spacing: .07em;
}

.demo-module-card__badge--web {
  color: #fff;
  background: #111215;
}

.demo-module-card__icon {
  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;

  margin-top: 32px;

  border-radius: 15px;

  background: #f3f2ed;

  font-size: 25px;
}

.demo-module-card h3 {
  margin: 23px 0 0;

  color: #111215;

  font-size: 28px;
  letter-spacing: -.04em;
}

.demo-module-card > p {
  margin: 16px 0 0;

  color: #000000;

  font-size: 14px;
  line-height: 1.7;
}

.demo-module-card ul {
  display: grid;
  gap: 9px;

  margin: 25px 0 0;
  padding: 0;

  list-style: none;
}

.demo-module-card li {
  display: flex;
  align-items: center;
  gap: 9px;

  color: #000000;

  font-size: 14px;
}

.demo-module-card li span {
  color: #111215;
  font-weight: 900;
}

.demo-module-card__footer {
  margin-top: auto;
  padding-top: 32px;
}


/* =========================================================
   TMAVÉ KARTY
   ========================================================= */

.demo-module-card--dark {
  border-color: rgba(255,255,255,.07);

  background: #111215;
}

.demo-module-card--dark h3 {
  color: #fff;
}

.demo-module-card--dark > p,
.demo-module-card--dark li {
  color: #949599;
}

.demo-module-card--dark .demo-module-card__icon {
  background: #1d1e21;
}

.demo-module-card--dark li span {
  color: var(--accent);
}


/* =========================================================
   LOGIN BOX
   ========================================================= */

.demo-login-box {
  margin-top: 24px;
  padding: 16px 18px;

  border: 1px solid rgba(255,212,0,.15);
  border-radius: 13px;

  background: rgba(255,212,0,.055);
}

.demo-login-box span {
  color: var(--accent);

  font-size: 9px;
  font-weight: 850;
  letter-spacing: .09em;
}

.demo-login-box p {
  margin: 7px 0 0;

  color: #8d8e92;

  font-size: 11px;
}


/* =========================================================
   PROPOJENÍ
   ========================================================= */

.demo-module-card--summary {
  background:
    linear-gradient(
      135deg,
      #fff,
      #fffbea
    );
}

.demo-system-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 26px;
}

.demo-system-flow + .demo-system-flow {
  margin-top: 10px;
}

.demo-system-flow span {
  padding: 10px 12px;

  border-radius: 10px;

  color: #111215;
  background: #f0efe9;

  font-size: 10px;
  font-weight: 850;
}

.demo-system-flow b {
  color: #9c9d9f;
}


/* =========================================================
   ANDROID
   ========================================================= */

.demo-android-section {
  padding: 0 0 115px;

  color: #fff;
  background: var(--light);
}

.demo-android-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 70px;
  align-items: center;

  padding: 55px 60px;

  border-radius: var(--radius-xl);

  background: #111215;
}

.demo-android-card h2 {
  margin: 0;

  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1;
  letter-spacing: -.052em;
}

.demo-android-card p {
  max-width: 680px;

  margin: 22px 0 0;

  color: #96979b;

  font-size: 14px;
  line-height: 1.7;
}

.demo-android-card__logo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.demo-android-card__logo span {
  color: #77787c;

  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
}

.demo-android-card__logo strong {
  color: var(--accent);

  font-size: 48px;
  letter-spacing: -.06em;
}


/* =========================================================
   CTA
   ========================================================= */

.demo-cta {
  padding: 0 0 118px;

  background: var(--light);
}


/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 900px) {

  .demo-hero__grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .demo-hero__side {
    max-width: 650px;
  }

  .demo-modules-grid {
    grid-template-columns: 1fr;
  }

}


@media (max-width: 700px) {

  .demo-hero {
    padding: 125px 0 75px;
  }

  .demo-hero__copy h1 {
    font-size: clamp(41px, 13vw, 58px);
  }

  .demo-hero__lead {
    font-size: 16px;
  }

  .demo-status-card {
    padding: 27px 23px;
  }

  .demo-info-section {
    padding: 40px 0;
  }

  .demo-info-box {
    grid-template-columns: 1fr;
  }

  .demo-modules {
    padding: 55px 0 75px;
  }

  .demo-section-head h2 {
    font-size: clamp(35px, 10vw, 45px);
  }

  .demo-module-card {
    min-height: auto;

    padding: 28px 22px;
  }

  .demo-module-card__footer {
    margin-top: 28px;
  }

  .demo-android-section {
    padding-bottom: 72px;
  }

  .demo-android-card {
    grid-template-columns: 1fr;

    gap: 35px;

    padding: 34px 24px;
  }

  .demo-android-card__logo {
    align-items: flex-start;
  }

  .demo-cta {
    padding-bottom: 72px;
  }

}





.demoimgm{width: 40; height: auto;
}






















