@charset "UTF-8";
/* ===========================================================
   INFLU:ON — clean rebuild
   Brand tokens převzaté z původního webu (Poity theme)
   =========================================================== */

:root {
  /* Brand palette */
  --primary: #C2F15E;        /* lime green – hero, accent */
  --secondary: #E98363;      /* coral – secondary accent */
  --tertiary: #FFFFFF;       /* white */
  --quaternary: #8340EE;     /* purple – hover states */
  --button-bg: #232323;      /* near-black – default button */
  --button-color: #FFFFFF;   /* button text */
  --content-color: #484848;  /* body text */
  --header-color: #232323;   /* heading text */
  --bg: #EBEBEB;             /* page background */
  --card-bg: #f4f4f4;        /* creator/feature card bg */
  --form-bg: #FFFFFF;
  --auth-bg: #163677;        /* dark navy used on /prihlaseni a /registrace */

  /* Layout */
  --container-xl: 1400px;
  --container-lg: 1200px;
  --container-md: 960px;
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 40px;

  /* Type scale */
  --font: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ----- Reset / base ----- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: var(--content-color);
  background: var(--bg);
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--header-color);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(40px, 6vw, 90px); }
h2 { font-size: clamp(32px, 4.5vw, 56px); }
h3 { font-size: clamp(26px, 3.4vw, 44px); }
h4 { font-size: clamp(22px, 2.6vw, 32px); }
h5 { font-size: clamp(20px, 2.2vw, 28px); }
h6 { font-size: clamp(18px, 1.6vw, 22px); }

p { margin: 0 0 1em; }
.lead { font-size: 1.125rem; line-height: 1.7; }
.text-center { text-align: center; }

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 24px;
}
.container--md { max-width: var(--container-md); }
.container--lg { max-width: var(--container-lg); }

section { padding: 80px 0; }
@media (max-width: 768px) {
  section { padding: 56px 0; }
}

.section-tag {
  display: inline-block;
  background: var(--primary);
  color: var(--header-color);
  font-weight: 700;
  font-size: 14px;
  padding: 4px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  border: 0;
  border-radius: 999px;
  background: var(--button-bg);
  color: var(--button-color);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--quaternary); transform: translateY(-2px); }
.btn--xl { padding: 22px 40px; font-size: 18px; }
.btn--white { background: #fff; color: var(--header-color); }
.btn--white:hover { background: var(--quaternary); color: #fff; }
.btn--outline {
  background: transparent;
  color: var(--header-color);
  border: 2px solid var(--header-color);
}
.btn--outline:hover { background: var(--header-color); color: #fff; }
.btn--disabled { opacity: 0.4; pointer-events: none; }
.btn .arrow { width: 18px; height: 18px; }

/* ----- Header (fixed + sticky scroll-state) ----- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, padding 0.25s ease;
}
.site-header .logo img {
  height: 32px;
  transition: height 0.25s ease;
}
.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  padding: 12px 40px;
}
.site-header.is-scrolled .logo img { height: 26px; }

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav a {
  position: relative;
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--header-color);
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav a:hover {
  background: rgba(35,35,35,0.07);
}
/* Top-level nav active — full black pill */
.nav > li > a.is-active,
.nav > li > .submenu-trigger.is-active {
  background: var(--header-color);
  color: #fff;
}
/* Submenu active — subtle highlight, ne celý černý blok */
.nav .submenu a.is-active {
  background: rgba(194, 241, 94, 0.35);
  color: var(--quaternary);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-ctas .btn { padding: 12px 22px; font-size: 14px; }

.burger {
  display: none;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.7);
  border: 0;
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.burger span {
  width: 22px; height: 2px;
  background: var(--header-color);
  border-radius: 1px;
  transition: transform 0.25s, opacity 0.25s;
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1024px) {
  .nav { display: none; }
  .header-ctas { display: none; }
  .burger { display: flex; }
}

@media (max-width: 768px) {
  .site-header { padding: 14px 20px; }
  .site-header.is-scrolled { padding: 10px 20px; }
  .site-header .logo img { height: 26px; }
}

/* Mobile drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(35, 35, 35, 0.55);
  backdrop-filter: blur(8px);
  display: none;
  align-items: stretch;
  justify-content: flex-end;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav__panel {
  width: min(360px, 90vw);
  background: #fff;
  padding: 24px 24px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  animation: slideIn 0.25s ease;
}
@keyframes slideIn {
  from { transform: translateX(100%); }
  to   { transform: translateX(0); }
}
.mobile-nav__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.mobile-nav__close {
  width: 40px; height: 40px;
  border: 0; background: rgba(0,0,0,0.05); border-radius: 50%;
  font-size: 22px; line-height: 1;
}
.mobile-nav a {
  display: block;
  padding: 14px 16px;
  font-size: 17px;
  font-weight: 600;
  color: var(--header-color);
  border-radius: 12px;
  transition: background 0.2s;
}
.mobile-nav a:hover { background: rgba(35,35,35,0.05); }
.mobile-nav a:not(.mobile-nav__sub).is-active { background: var(--primary); }
.mobile-nav .mobile-nav__sub.is-active { background: rgba(194, 241, 94, 0.35); color: var(--quaternary); }
.mobile-nav .ctas-row {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav .ctas-row .btn { justify-content: center; }
body.no-scroll { overflow: hidden; }

/* ----- Hero ----- */
.hero {
  background: var(--primary);
  padding: 180px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}
.hero h1 { color: var(--header-color); margin-bottom: 24px; }
.hero p { font-size: clamp(16px, 1.6vw, 22px); color: var(--header-color); max-width: 800px; margin: 0 auto 32px; }
.hero__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  margin-bottom: 32px;
}
.hero__check::before {
  content: '\2713 ';
  display: inline-flex;
  width: 24px; height: 24px;
  background: #232323;
  color: var(--primary);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.hero--small { padding: 160px 0 60px; }
.hero--small h1 { font-size: clamp(36px, 5vw, 72px); }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: var(--header-color);
  margin-bottom: 16px;
  opacity: 0.75;
}
.breadcrumb a { text-decoration: underline; }

/* ----- Logos carousel ----- */
.logos {
  background: var(--bg);
  padding: 50px 0;
  overflow: hidden;
}
.logos__track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll 30s linear infinite;
  width: max-content;
}
.logos__track img {
  height: 60px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: 0.3s;
}
.logos__track img:hover { filter: none; opacity: 1; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ----- Numbered info-boxes ----- */
.infobox {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 100px;
}
.infobox--reverse { direction: rtl; }
.infobox--reverse > * { direction: ltr; }
.infobox__number {
  font-size: clamp(80px, 10vw, 160px);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.06em;
}
.infobox__tag {
  display: inline-block;
  background: rgba(194, 241, 94, 0.4);
  color: var(--header-color);
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 14px;
  margin-bottom: 16px;
}
.infobox__tag .accent { color: var(--quaternary); font-weight: 700; }
.infobox__image img {
  border-radius: var(--radius-md);
  box-shadow: 0 30px 80px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {
  .infobox { grid-template-columns: 1fr; gap: 32px; margin-bottom: 60px; }
  .infobox--reverse { direction: ltr; }
  .infobox__image { order: -1; }
}

/* ----- Pill tag rows ----- */
.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 24px 0 32px;
}
.tag {
  background: #fff;
  border-radius: 14px;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--header-color);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ----- Feature grid (Section 03 of homepage) ----- */
.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 768px) { .features { grid-template-columns: 1fr; } }
.feature {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.feature h4 { margin: 0; }
.feature p { margin: 0; }
.feature__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--quaternary);
}

/* ----- Creator cards ----- */
.creators {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
}
@media (max-width: 600px) { .creators { grid-template-columns: 1fr; } }
.creator {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 26px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.creator img {
  width: 140px; height: 140px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.creator__info h5 { margin: 0 0 4px; font-size: 20px; }
.creator__info .role {
  display: block;
  color: var(--quaternary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 6px;
}
.creator__info p { margin: 0; font-size: 14px; line-height: 1.5; }
.creators.is-collapsed > .creator:nth-child(n+13) { display: none; }
.load-more-wrap { text-align: center; margin-top: 40px; }

/* ----- Partner block ----- */
.partner-block {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius-md);
  padding: 50px 40px;
  text-align: center;
}
.partner-block h2 { margin-bottom: 32px; }
.partner-block__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
.partner-block__logos img { max-height: 80px; width: auto; }

/* ----- Footer ----- */
.site-footer {
  background: #fff;
  padding: 80px 0 40px;
  margin-top: 60px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) { .footer__grid { grid-template-columns: 1fr; gap: 40px; } }
.footer__contact p { font-size: 18px; margin-bottom: 16px; }
.footer__email-btn { font-size: 18px; word-break: break-all; }
.footer__socials { display: flex; gap: 12px; margin-top: 20px; }
.footer__socials a {
  width: 44px; height: 44px;
  background: transparent;
  color: var(--header-color);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: color 0.2s, transform 0.2s;
}
.footer__socials a:hover { color: var(--quaternary); transform: translateY(-2px); }

/* Email link v patičce — plain text místo button */
.footer__email-link {
  font-size: 22px;
  font-weight: 700;
  color: var(--header-color);
  word-break: break-all;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.footer__email-link:hover {
  color: var(--quaternary);
  border-bottom-color: var(--quaternary);
}
.footer__payment img { max-width: 360px; margin-top: 28px; }
.footer__links h2 { font-size: clamp(24px, 2.2vw, 32px); margin-bottom: 24px; }
.footer__links ul { list-style: none; padding: 0; margin: 0; }
.footer__links li { margin-bottom: 10px; font-weight: 500; }
.footer__links a:hover { color: var(--quaternary); }
.footer__divider {
  width: 50px; height: 5px;
  background: var(--primary);
  margin: 16px 0;
}
.copyright {
  text-align: center;
  font-size: 14px;
  padding-top: 24px;
  border-top: 1px solid #eee;
}

/* ----- FAQ accordion ----- */
.faq-section { margin-bottom: 56px; }
.faq-section h2 { text-align: center; margin-bottom: 8px; }
.faq-section .subtitle { text-align: center; color: var(--quaternary); font-weight: 600; margin-bottom: 32px; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
.faq-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 0;
  overflow: hidden;
  border: 1px solid #eee;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-weight: 700;
  font-size: 17px;
  color: var(--header-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--quaternary);
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: '\2212 '; transform: rotate(0); }
.faq-item .answer { padding: 0 28px 22px; line-height: 1.7; }
.faq-item .answer ul { padding-left: 18px; }
.faq-item .answer ul li { margin-bottom: 6px; }

/* ----- Tabs ----- */
.tabs__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 32px;
}
.tabs__nav button {
  background: #fff;
  border: 2px solid transparent;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  font-size: 14px;
  color: var(--header-color);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.tabs__nav button.is-active {
  background: var(--button-bg);
  color: #fff;
}
.tabs__panel { display: none; }
.tabs__panel.is-active { display: block; animation: fadeIn 0.25s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ----- Benefit list (cenik) ----- */
.benefits {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  max-width: 900px;
  margin-left: auto; margin-right: auto;
}
.benefits li {
  position: relative;
  padding-left: 44px;
  margin-bottom: 14px;
  line-height: 1.6;
  font-size: 17px;
}
.benefits li::before {
  content: '';
  position: absolute; left: 0; top: 4px;
  width: 28px; height: 28px;
  background: var(--primary);
  border-radius: 50%;
}
.benefits li::after {
  content: '\2713 ';
  position: absolute; left: 7px; top: 4px;
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: var(--header-color);
  font-size: 16px;
}

/* ----- Tariffs ----- */
.tariffs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 48px 0;
}
.tariff {
  background: #fff;
  padding: 36px;
  border-radius: var(--radius-md);
  text-align: center;
  border: 2px solid transparent;
  transition: 0.2s;
}
.tariff:hover { border-color: var(--primary); transform: translateY(-4px); }
.tariff h4 { font-size: 24px; }
.tariff .price {
  font-size: 36px;
  font-weight: 800;
  color: var(--header-color);
  margin: 16px 0;
  letter-spacing: -0.03em;
}
.tariff .price small { font-size: 14px; font-weight: 500; color: var(--content-color); }

/* ----- Calculator ----- */
.calc {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 900px;
  margin: 0 auto;
}
.calc__row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .calc__row { grid-template-columns: 1fr; } }
.calc input, .calc select {
  width: 100%;
  padding: 14px 18px;
  border-radius: 12px;
  border: 2px solid #eee;
  font-family: inherit;
  font-size: 16px;
  background: #fafafa;
  transition: border-color 0.2s;
}
.calc input:focus, .calc select:focus {
  outline: none;
  border-color: var(--primary);
}
.calc__result {
  margin-top: 28px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
}
.calc__result .number {
  font-size: 36px; font-weight: 800;
  color: var(--header-color);
  letter-spacing: -0.03em;
}

/* ----- Tickets ----- */
.tickets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.ticket {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: left;
}
.ticket h3 { font-size: 28px; margin-bottom: 16px; }
.ticket ul { list-style: none; padding: 0; margin: 0 0 24px; }
.ticket ul li {
  padding-left: 24px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.ticket ul li::before {
  content: '\2713 ';
  position: absolute; left: 0; top: 2px;
  font-weight: 800;
  color: var(--header-color);
}

/* ----- Auth pages (login / registration) ----- */
.auth-wrap {
  min-height: 100vh;
  background: var(--auth-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #fff;
  font-family: 'Open Sans', var(--font);
}
.auth-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 500px;
  width: 100%;
  backdrop-filter: blur(10px);
}
.auth-card .logo-wrap { text-align: center; margin-bottom: 32px; }
.auth-card .logo-wrap img { height: 36px; margin: 0 auto; }
.auth-card h5 { color: #fff; text-align: center; margin-bottom: 12px; }
.auth-card p { text-align: center; opacity: 0.85; margin-bottom: 24px; }
.auth-card label { display: block; font-size: 13px; margin-bottom: 6px; opacity: 0.85; }
.auth-card input {
  width: 100%;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  margin-bottom: 16px;
}
.auth-card input::placeholder { color: rgba(255,255,255,0.5); }
.auth-card .auth-btn {
  width: 100%;
  background: var(--primary);
  color: var(--header-color);
  border: 0;
  padding: 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  margin-top: 8px;
  letter-spacing: 0.02em;
}
.auth-card .auth-btn:hover { background: var(--quaternary); color: #fff; }
.auth-card .social-row { display: flex; gap: 12px; margin-bottom: 24px; }
.auth-card .social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: #333;
  border: 0;
  padding: 12px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}
.auth-card .social-btn img { width: 18px; height: 18px; }
.auth-card .auth-links {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 14px;
}
.auth-card .auth-links a { color: var(--primary); }

/* ----- Misc utilities ----- */
.intro {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px;
  max-width: 1100px;
  margin: 0 auto 60px;
}
.intro h3 { margin-bottom: 16px; }
.intro p {
  font-size: 18px;
  background: linear-gradient(90deg, #00c853, #2962ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.divider-lime {
  width: 60px; height: 5px;
  background: var(--primary);
  margin: 24px 0;
  border: 0;
}
.legal h2 { margin-top: 40px; font-size: 28px; }
.legal h3 { margin-top: 32px; font-size: 22px; }
.legal p, .legal li { font-size: 16px; line-height: 1.7; }

/* Hide elements helper */
.is-hidden { display: none !important; }

/* Mobile-only helper */
.mobile-only { display: none; }
@media (max-width: 768px) { .mobile-only { display: block; } }

/* ----- Reveal-on-scroll animace ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

/* ----- Hero — varianty ----- */
.hero {
  padding-top: 200px;
}
.hero__pretitle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(35, 35, 35, 0.08);
  color: var(--header-color);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.hero__pretitle .dot {
  width: 8px; height: 8px;
  background: var(--quaternary);
  border-radius: 50%;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.hero__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero__trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  opacity: 0.8;
}
.hero__trust-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero__trust-row .stars { color: #f6b833; letter-spacing: 2px; }

/* ----- Stats counters ----- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  background: var(--header-color);
  border-radius: var(--radius-md);
  padding: 48px 36px;
  color: #fff;
  margin: 56px 0;
}
.stats__item { text-align: center; }
.stats__num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
  display: block;
  line-height: 1;
}
.stats__label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  margin-top: 8px;
  display: block;
}

/* ----- Steps section ("Jak začít") ----- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.step__num {
  width: 56px; height: 56px;
  background: var(--primary);
  color: var(--header-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}
.step h4 { margin: 0; font-size: 22px; }
.step p { margin: 0; font-size: 15px; line-height: 1.6; }

/* ----- Testimonials ----- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.testimonial {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}
.testimonial::before {
  content: '"';
  position: absolute;
  top: 12px; right: 24px;
  font-size: 80px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  opacity: 0.6;
}
.testimonial__text {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
  color: var(--header-color);
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}
.testimonial__author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial__author .name {
  font-weight: 700;
  font-size: 15px;
  color: var(--header-color);
}
.testimonial__author .role {
  font-size: 13px;
  color: var(--quaternary);
  font-weight: 600;
}

/* ----- Pricing comparison table ----- */
.compare {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}
.compare__head {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  background: var(--header-color);
  color: #fff;
}
.compare__head > div {
  padding: 40px 20px 28px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}
.compare__head > div:last-child { border-right: 0; }
.compare__head > div:first-child {
  text-align: left;
  font-weight: 600;
  display: flex;
  align-items: center;
}
.compare__head .plan-name {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff;
}
.compare__head .plan-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--primary);
  margin-top: 8px;
  letter-spacing: -0.03em;
}
.compare__head .plan-price small {
  display: block;
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
  color: #fff;
  margin-top: 4px;
}
.compare__head .badge {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--header-color);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 2;
}
.compare__group {
  background: #f8f8f8;
  padding: 14px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quaternary);
  grid-column: 1 / -1;
}
.compare__row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-top: 1px solid #f0f0f0;
}
.compare__row > div {
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid #f6f6f6;
}
.compare__row > div:last-child { border-right: 0; }
.compare__row .feat {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  font-weight: 500;
  font-size: 15px;
  color: var(--header-color);
  text-align: left;
}
.compare__row .feat .hint {
  display: block;
  width: 100%;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.65;
  margin-top: 4px;
}
.compare__row:hover { background: rgba(194, 241, 94, 0.08); }
.compare__cta-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-top: 1px solid #f0f0f0;
  background: #f9f9f9;
}
.compare__cta-row > div {
  padding: 24px 16px;
  display: flex;
  justify-content: center;
}
.compare__cta-row > div:first-child { visibility: hidden; }
.check-yes {
  width: 28px; height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--header-color);
  font-weight: 800;
  font-size: 14px;
}
.check-no {
  width: 28px; height: 28px;
  background: #f0f0f0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-weight: 600;
  font-size: 14px;
}
.feat-text {
  font-weight: 600;
  color: var(--header-color);
  font-size: 14px;
  text-align: center;
}
.feat-text--unlimited {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: rgba(194, 241, 94, 0.18);
  color: #4a6608;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.col-popular { background: rgba(194, 241, 94, 0.08); }

/* Mobile compare → karty */
@media (max-width: 900px) {
  .compare__head { display: none; }
  .compare__group { display: block; padding: 14px 20px; }
  .compare__row,
  .compare__cta-row {
    display: block;
    padding: 20px;
  }
  .compare__row > div,
  .compare__cta-row > div {
    display: flex;
    justify-content: space-between;
    border: 0;
    padding: 6px 0;
  }
  .compare__row .feat { width: 100%; padding: 0 0 6px; font-weight: 700; border-bottom: 1px solid #f0f0f0; margin-bottom: 6px; }
  .compare__row > div:not(.feat)::before {
    content: attr(data-plan);
    font-weight: 600;
    color: var(--quaternary);
  }
  .compare__cta-row > div:first-child { display: none; }
  .compare__cta-row > div { padding: 8px 0; }
}

/* ----- Mini-FAQ on homepage ----- */
.mini-faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 768px) { .mini-faq { grid-template-columns: 1fr; } }

/* ----- CTA banner ----- */
.cta-banner {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 56px 40px;
  text-align: center;
  margin: 60px 0;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; }
.cta-banner p { font-size: 18px; max-width: 700px; margin: 0 auto 24px; }
.cta-banner .ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ----- Section labels ----- */
.eyebrow {
  display: inline-block;
  background: var(--primary);
  color: var(--header-color);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

/* ----- Floating "back to top" ----- */
.back-to-top {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 48px; height: 48px;
  background: var(--primary);
  color: var(--header-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  cursor: pointer;
  font-size: 20px;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 90;
  box-shadow: 0 8px 24px rgba(0,0,0,0.18);
}
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--quaternary);
  color: #fff;
  transform: translateY(-3px);
}

/* ----- Pricing FAQ ----- */
.pricing-faq h3 { font-size: 24px; margin-top: 32px; }

/* ----- Trust bar (nad fold) ----- */
.trust-bar {
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-bar__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  font-size: 14px;
}
.trust-bar__count {
  font-weight: 700;
  color: var(--header-color);
}
.trust-bar__count strong {
  color: var(--quaternary);
  font-size: 18px;
  letter-spacing: -0.02em;
}
.trust-bar__sep {
  width: 1px; height: 22px;
  background: rgba(0,0,0,0.1);
}
.trust-bar__partners {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.trust-bar__partners img {
  height: 28px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.trust-bar__partners img:hover { opacity: 1; }
.partner-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: var(--header-color);
  font-weight: 700;
  font-size: 14px;
  opacity: 0.85;
  transition: opacity 0.2s;
}
.partner-logo:hover { opacity: 1; }
.partner-logo__icon {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
}
.partner-logo__text {
  letter-spacing: -0.01em;
}
.trust-bar__badges {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--content-color);
}
.trust-bar__badges span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(194, 241, 94, 0.2);
  border-radius: 999px;
}
@media (max-width: 768px) {
  .trust-bar__inner { gap: 16px; }
  .trust-bar__sep { display: none; }
}

/* ----- Hero with mockup (split layout) ----- */
.hero--split {
  padding-top: 160px;
  padding-bottom: 60px;
}
.hero--split .hero__inner {
  max-width: var(--container-xl);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  text-align: left;
  align-items: center;
}
.hero--split .hero__copy h1 { text-align: left; }
.hero--split .hero__copy p { text-align: left; max-width: none; margin: 0 0 24px; }
.hero--split .hero__pretitle { margin-bottom: 16px; }
.hero--split .hero__ctas { justify-content: flex-start; }
.hero--split .hero__trust { align-items: flex-start; }
.hero--split .hero__mockup {
  position: relative;
  perspective: 1200px;
}
.hero--split .hero__mockup-frame {
  background: var(--header-color);
  border-radius: 16px 16px 8px 8px;
  padding: 8px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.18);
  transform: rotate(-2deg);
  transition: transform 0.5s cubic-bezier(.2,.8,.2,1);
}
.hero--split .hero__mockup-frame:hover { transform: rotate(0deg) translateY(-4px); }
.hero--split .hero__mockup-bar {
  display: flex; gap: 6px; padding: 6px 4px 8px;
}
.hero--split .hero__mockup-bar i {
  width: 10px; height: 10px; border-radius: 50%;
  display: block;
}
.hero--split .hero__mockup-bar i:nth-child(1) { background: #ff5f57; }
.hero--split .hero__mockup-bar i:nth-child(2) { background: #febc2e; }
.hero--split .hero__mockup-bar i:nth-child(3) { background: #28c840; }
.hero--split .hero__mockup-screen {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  min-height: 380px;
  display: flex;
  flex-direction: column;
}
.hero--split .hero__mockup-head {
  background: var(--primary);
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero--split .hero__mockup-head .title {
  font-weight: 800;
  font-size: 18px;
  color: var(--header-color);
}
.hero--split .hero__mockup-head .pill {
  background: var(--header-color);
  color: var(--primary);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}
.hero--split .hero__mockup-body {
  padding: 22px;
  display: grid;
  gap: 16px;
  flex: 1;
}
.hero--split .mockup-stat {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.hero--split .mockup-card {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 14px;
}
.hero--split .mockup-card .lbl {
  font-size: 11px; font-weight: 600;
  color: var(--quaternary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.hero--split .mockup-card .val {
  font-size: 22px; font-weight: 800;
  color: var(--header-color);
  letter-spacing: -0.02em;
  margin-top: 4px;
}
.hero--split .mockup-card .delta {
  font-size: 11px; font-weight: 600;
  color: #1abc4d;
  margin-top: 2px;
}
.hero--split .mockup-chart {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 14px;
  height: 110px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.hero--split .mockup-chart .bar {
  flex: 1;
  background: linear-gradient(to top, var(--primary), #a4d839);
  border-radius: 3px;
  min-height: 12px;
}
.hero--split .mockup-list {
  display: grid;
  gap: 6px;
}
.hero--split .mockup-list .row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #fafafa;
  border-radius: 8px;
  font-size: 13px;
}
.hero--split .mockup-list .row::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
}
.hero--split .mockup-list .row span:last-child {
  margin-left: auto;
  font-weight: 700;
  color: var(--header-color);
}

@media (max-width: 1024px) {
  .hero--split .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero--split .hero__copy h1,
  .hero--split .hero__copy p { text-align: center; }
  .hero--split .hero__copy p { margin-left: auto; margin-right: auto; max-width: 720px; }
  .hero--split .hero__ctas { justify-content: center; }
  .hero--split .hero__trust { align-items: center; }
  .hero--split .hero__mockup { max-width: 520px; margin: 24px auto 0; }
}

/* ----- Persona kartičky ----- */
.personas {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .personas { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .personas { grid-template-columns: 1fr; } }
.persona {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 2px solid transparent;
  transition: 0.25s;
}
.persona:hover { transform: translateY(-3px); border-color: var(--primary); }
.persona__icon {
  width: 56px; height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 4px;
}
.persona h4 { margin: 0; font-size: 20px; }
.persona__problem {
  font-size: 14px;
  color: var(--quaternary);
  font-weight: 600;
  font-style: italic;
}
.persona__solution {
  font-size: 14px;
  margin: 0;
}
.persona__link {
  margin-top: auto;
  font-weight: 600;
  color: var(--header-color);
  font-size: 13px;
  padding-top: 8px;
}
.persona--feature {
  background: var(--primary);
}

/* ----- Problem grid (compact persona cards + modal) ----- */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 900px) { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  appearance: none;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 22px 22px 18px;
  text-align: left;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  font-family: inherit;
}
.problem-card:hover,
.problem-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--primary);
  box-shadow: 0 20px 44px rgba(0,0,0,0.06);
  outline: none;
}
.problem-card:active { transform: translateY(-1px) scale(0.99); }
.problem-card__icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(194,241,94,0.18);
  color: var(--header-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: background 0.25s ease, transform 0.25s ease;
}
.problem-card__icon svg { width: 22px; height: 22px; }
.problem-card:hover .problem-card__icon { background: var(--primary); transform: rotate(-4deg) scale(1.05); }
.problem-card h4 {
  margin: 0;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--header-color);
}
.problem-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--content-color);
  font-style: italic;
  flex: 1;
}
.problem-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f0f0f0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--header-color);
  transition: color 0.2s ease, gap 0.2s ease;
}
.problem-card:hover .problem-card__cta { color: var(--quaternary); gap: 10px; }
.problem-card__cta svg { transition: transform 0.2s ease; }
.problem-card:hover .problem-card__cta svg { transform: translateX(3px); }

/* ----- Problem modal ----- */
.problem-modal[hidden] { display: none !important; }
.problem-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.problem-modal.is-open { opacity: 1; }
.problem-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 16, 0.55);
  backdrop-filter: blur(10px) saturate(120%);
  -webkit-backdrop-filter: blur(10px) saturate(120%);
  cursor: pointer;
}
.problem-modal__dialog {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 22px;
  max-width: 560px;
  width: 100%;
  padding: 36px 36px 32px;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.problem-modal.is-open .problem-modal__dialog { transform: translateY(0) scale(1); }
@media (max-width: 600px) {
  .problem-modal__dialog { padding: 28px 22px 24px; border-radius: 18px; }
}
.problem-modal__close {
  position: absolute;
  top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: #f4f4f4;
  color: #444;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.problem-modal__close:hover { background: #e8e8e8; color: #000; }
.problem-modal__icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--primary);
  color: var(--header-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.problem-modal__icon svg { width: 26px; height: 26px; }
.problem-modal__title {
  margin: 0 0 22px;
  font-size: 26px;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.problem-modal__block { margin-bottom: 18px; }
.problem-modal__block:last-of-type { margin-bottom: 24px; }
.problem-modal__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  background: rgba(220, 70, 70, 0.12);
  color: #b13434;
}
.problem-modal__label--solution {
  background: rgba(194, 241, 94, 0.32);
  color: #4a6608;
}
.problem-modal__block p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--content-color);
}
.problem-modal__block--problem p { color: var(--header-color); font-weight: 500; }
.problem-modal__cta {
  width: 100%;
  justify-content: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* ----- AI & MCP sekce ----- */
.ai-mcp {
  background: var(--header-color);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.ai-mcp::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194,241,94,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.ai-mcp h2, .ai-mcp h3, .ai-mcp h4 { color: #fff; }
.ai-mcp .eyebrow { background: var(--primary); color: var(--header-color); }
.ai-mcp .container { position: relative; z-index: 1; }
.ai-mcp__usecases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .ai-mcp__usecases { grid-template-columns: 1fr; } }
.usecase {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 28px;
  backdrop-filter: blur(12px);
  transition: 0.2s;
}
.usecase:hover {
  background: rgba(255,255,255,0.07);
  border-color: var(--primary);
  transform: translateY(-3px);
}
.usecase__icon {
  width: 48px; height: 48px;
  background: transparent;
  color: #fff;
  border: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0 0 18px;
  line-height: 1;
}
.usecase__icon svg {
  width: 44px;
  height: 44px;
  display: block;
  stroke-width: 1.6;
}
.usecase h4 { font-size: 20px; margin-bottom: 8px; }
.usecase p { color: rgba(255,255,255,0.78); font-size: 15px; line-height: 1.55; margin: 0; }

.mcp-flow {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1fr 80px 1fr 80px 1fr;
  gap: 16px;
  align-items: center;
}
@media (max-width: 900px) {
  .mcp-flow {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
.mcp-flow__node {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  font-size: 14px;
}
.mcp-flow__node strong {
  display: block;
  font-size: 15px;
  color: var(--primary);
  margin-bottom: 6px;
}
.mcp-flow__node--core {
  background: var(--primary);
  color: var(--header-color);
  border: none;
}
.mcp-flow__node--core strong { color: var(--header-color); }
.mcp-flow__arrow {
  text-align: center;
  font-size: 28px;
  color: var(--primary);
  font-weight: 800;
}
@media (max-width: 900px) {
  .mcp-flow__arrow { transform: rotate(90deg); padding: 4px 0; }
}
.mcp-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: var(--header-color);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.mcp-badge::before {
  content: '\26A1 ';
  font-size: 16px;
}

/* ----- AI loga rada (Claude/ChatGPT/Gemini/Grok/Copilot) ----- */
.ai-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding: 16px 24px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px;
  margin: 24px auto 0;
  max-width: max-content;
}
.ai-logos__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.ai-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  white-space: nowrap;
  transition: color 0.2s, transform 0.2s;
}
.ai-logo:hover {
  color: var(--primary);
  transform: translateY(-2px);
}
.ai-logo__dot {
  width: 24px; height: 24px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}
.ai-logo--claude .ai-logo__dot { background: #cc785c; color: #fff; }
.ai-logo__dot--svg svg {
  width: 14px;
  height: 14px;
  display: block;
  fill: currentColor;
}
.ai-logo--chatgpt .ai-logo__dot { background: #10a37f; color: #fff; }
.ai-logo--gemini .ai-logo__dot { background: linear-gradient(135deg, #4285f4, #9b72cb, #d96570); color: #fff; }
.ai-logo--grok .ai-logo__dot { background: #000; color: #fff; }
.ai-logo--copilot .ai-logo__dot { background: linear-gradient(135deg, #0078d4, #00bcf2); color: #fff; }
.ai-logos__caption {
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 12px;
  font-style: italic;
}
@media (max-width: 700px) {
  .ai-logos { gap: 16px; padding: 14px 18px; }
  .ai-logo { font-size: 13px; }
}

/* ----- MCP flow updated layout ----- */
.mcp-flow__col-list {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.9;
  text-align: center;
}
.mcp-flow__col-list li { padding: 0; position: static; }
.mcp-flow__col-list li::before { content: none; }
.mcp-flow__caption {
  text-align: center;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  font-style: italic;
  margin-top: 24px;
  grid-column: 1 / -1;
}

/* ----- Reference profile link ----- */
.testimonial__profile {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: var(--quaternary);
  font-weight: 600;
  margin-top: 4px;
}
.testimonial__profile:hover { text-decoration: underline; }

/* ----- Klikatelný klient context ----- */
a.client-context__item {
  display: block;
  border-radius: 12px;
  transition: background 0.2s, transform 0.2s;
}
a.client-context__item:hover {
  background: rgba(194, 241, 94, 0.08);
  transform: translateY(-2px);
}
a.client-context__item:hover .name {
  text-decoration: underline;
  color: var(--quaternary);
}

/* ----- Logos w/ context ----- */
.client-context {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 40px;
}
.client-context__item {
  text-align: center;
  padding: 20px 16px;
}
.client-context__item img {
  height: 40px;
  width: auto;
  margin: 0 auto 12px;
  filter: grayscale(50%);
  opacity: 0.85;
  transition: 0.2s;
}
.client-context__item:hover img { filter: none; opacity: 1; }
.client-context__item .name {
  font-weight: 700;
  font-size: 14px;
  color: var(--header-color);
}
.client-context__item .role {
  font-size: 12px;
  color: var(--quaternary);
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.client-context__item .quote {
  font-size: 12px;
  color: var(--content-color);
  font-style: italic;
  display: block;
  margin-top: 6px;
  line-height: 1.4;
}

/* ----- 3-plan pricing cards (alternativa ke comparison table) ----- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
@media (max-width: 900px) { .plans { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; } }
.plan {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  border: 2px solid transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: 0.25s;
}
.plan:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.08); }
.plan__name {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quaternary);
}
.plan__tag {
  font-size: 14px;
  font-style: italic;
  color: var(--content-color);
}
.plan__price {
  font-size: 44px;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--header-color);
  line-height: 1;
}
.plan__price small {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--content-color);
  margin-top: 6px;
  letter-spacing: 0;
}
.plan__features {
  list-style: none;
  padding: 0;
  margin: 16px 0;
  text-align: left;
  font-size: 14px;
  display: grid;
  gap: 8px;
  flex: 1;
}
.plan__features li {
  padding-left: 26px;
  position: relative;
}
.plan__features li::before {
  content: '\2713 ';
  position: absolute;
  left: 0; top: 0;
  width: 20px; height: 20px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  color: var(--header-color);
}
.plan--featured {
  background: var(--header-color);
  color: #fff;
  transform: scale(1.04);
}
.plan--featured .plan__price { color: var(--primary); }
.plan--featured .plan__price small { color: rgba(255,255,255,0.7); }
.plan--featured .plan__name { color: var(--primary); }
.plan--featured .plan__tag { color: rgba(255,255,255,0.85); }
.plan--featured .plan__features { color: rgba(255,255,255,0.92); }
.plan__badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--header-color);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.plan--ai .plan__badge { background: var(--quaternary); color: #fff; }

/* ----- Provize kontext ----- */
.fee-context {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 32px;
  margin: 40px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 700px) { .fee-context { grid-template-columns: 1fr; } }
.fee-context__col {
  text-align: center;
  padding: 16px;
  border-radius: 12px;
}
.fee-context__col--us { background: rgba(194, 241, 94, 0.2); }
.fee-context__col--them { background: #f5f5f5; }
.fee-context__col h5 { font-size: 14px; margin-bottom: 10px; color: var(--quaternary); text-transform: uppercase; letter-spacing: 0.08em; }
.fee-context__amount {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--header-color);
  display: block;
}
.fee-context__col--them .fee-context__amount { text-decoration: line-through; opacity: 0.6; }
.fee-context__breakdown {
  font-size: 12px;
  color: var(--content-color);
  margin-top: 8px;
  line-height: 1.5;
}

/* ----- Enterprise sekce ----- */
.enterprise {
  background: linear-gradient(135deg, #1a1f3a 0%, #163677 100%);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 60px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
}
@media (max-width: 900px) {
  .enterprise { grid-template-columns: 1fr; padding: 40px 28px; }
}
.enterprise h2, .enterprise h3 { color: #fff; }
.enterprise__features {
  list-style: none;
  padding: 0;
  margin: 20px 0 24px;
}
.enterprise__features li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.92);
}
.enterprise__features li::before {
  content: '\2726 ';
  position: absolute; left: 0; top: 0;
  color: var(--primary);
  font-size: 18px;
  font-weight: 800;
}
.enterprise__price {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 28px;
  text-align: center;
}
.enterprise__price .price-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.03em;
  display: block;
}
.enterprise__price small {
  font-size: 13px;
  display: block;
  margin: 4px 0 16px;
  opacity: 0.85;
}
.enterprise .btn--white {
  background: #fff;
  color: var(--header-color);
}
.enterprise .btn--white:hover { background: var(--primary); color: var(--header-color); }

/* ----- B2B Influencer marketing (INFLULAND) sekce ----- */
.b2b-influland {
  --influland-1: #2DBED0;       /* deep teal — z loga (spodní oblouk) */
  --influland-2: #1AA2BC;       /* hloubka pro stíny / CTA text */
  --influland-3: #6FDBE5;       /* light cyan — z loga (horní tečka) */
  --influland-bg: linear-gradient(135deg, #1AA2BC 0%, #2DBED0 45%, #6FDBE5 100%);

  background: var(--influland-bg);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 64px 48px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 40px 0;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(14, 140, 136, 0.25);
}
.b2b-influland::before {
  content: '';
  position: absolute;
  inset: -40% -10% auto auto;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(255,255,255,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.b2b-influland::after {
  content: '';
  position: absolute;
  inset: auto auto -30% -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(91, 227, 221, 0.25) 0%, transparent 65%);
  pointer-events: none;
}
@media (max-width: 900px) {
  .b2b-influland { grid-template-columns: 1fr; padding: 40px 24px; gap: 32px; }
}
.b2b-influland__copy-wrap { position: relative; z-index: 2; }
.b2b-influland__copy { position: relative; z-index: 2; }

/* ---- B2B tabs (Firma / UGC tvůrce) ---- */
.b2b-tabs {
  display: inline-flex;
  background: rgba(0, 0, 0, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 4px;
  margin: 18px 0 24px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.b2b-tab {
  background: transparent;
  border: 0;
  padding: 10px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
  letter-spacing: 0.01em;
}
.b2b-tab:hover { color: #fff; }
.b2b-tab.is-active {
  background: #fff;
  color: var(--influland-2);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}

/* ---- Tab content panels (animated swap) ---- */
.b2b-influland__copy[data-tab-content] {
  display: none;
  opacity: 0;
  transform: translateY(8px);
}
.b2b-influland__copy[data-tab-content].is-active {
  display: block;
  animation: b2bTabIn 0.45s ease-out forwards;
}
@keyframes b2bTabIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .b2b-influland__copy[data-tab-content].is-active { animation: none; opacity: 1; transform: none; }
}
.b2b-influland__eyebrow {
  background: rgba(255,255,255,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(8px);
}
.b2b-influland__h2 {
  color: #fff;
  margin-top: 16px;
  letter-spacing: -0.02em;
}
.b2b-influland__lead {
  font-size: 17px;
  color: rgba(255,255,255,0.94);
  margin: 12px 0 18px;
}
.b2b-influland__features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.b2b-influland__features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.94);
}
.b2b-influland__features li::before {
  content: '\2726 ';
  position: absolute; left: 0; top: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(91, 227, 221, 0.8);
}
.b2b-influland__cta {
  background: #fff;
  color: #111;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.b2b-influland__cta:hover {
  background: #fff;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.24);
}
.b2b-influland__cta-logo {
  height: 24px;
  width: auto;
  display: block;
}

/* ---- Phone mockup + bubbles stage ---- */
.b2b-influland__stage {
  position: relative;
  z-index: 2;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .b2b-influland__stage { height: 480px; }
}

/* Phone */
.b2b-phone {
  position: relative;
  width: 240px;
  height: 480px;
  background: #111;
  border-radius: 38px;
  padding: 14px;
  box-shadow:
    0 0 0 4px #1f2a2a,
    0 30px 60px rgba(0,0,0,0.4),
    0 0 80px rgba(91, 227, 221, 0.5);
  z-index: 3;
  animation: b2bPhoneFloat 6s ease-in-out infinite;
}
.b2b-phone__notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #000;
  border-radius: 0 0 14px 14px;
  z-index: 4;
}
.b2b-phone__screen {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(160deg, #1AA2BC 0%, #2DBED0 50%, #6FDBE5 100%);
}
.b2b-phone__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.b2b-phone__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 36px 16px 22px;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0) 35%, rgba(0,0,0,0) 65%, rgba(0,0,0,0.45) 100%);
}
.b2b-phone__logo {
  height: 32px;
  width: auto;
  opacity: 0.98;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.35));
}
.b2b-phone__hashtag {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: rgba(0,0,0,0.35);
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(6px);
}

@keyframes b2bPhoneFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-10px) rotate(1deg); }
}

/* Floating bubbles */
.b2b-bubble {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.96);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  z-index: 4;
  white-space: nowrap;
  animation-name: b2bBubbleFloat;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}
.b2b-bubble img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}
.b2b-bubble__info {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.b2b-bubble__info strong {
  font-size: 13px;
  color: var(--header-color, #111);
  font-weight: 700;
}
.b2b-bubble__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
  margin-top: 3px;
  width: fit-content;
}
.b2b-bubble__badge--ig {
  background: linear-gradient(135deg, #F58529 0%, #DD2A7B 50%, #8134AF 100%);
  color: #fff;
}
.b2b-bubble__badge--tk {
  background: #000;
  color: #fff;
}
.b2b-bubble__badge--li {
  background: #0A66C2;
  color: #fff;
}

/* Per-bubble positioning + animation timing */
.b2b-bubble--1 { top:  4%; left:  4%; animation-duration: 7s; animation-delay: 0s; }
.b2b-bubble--2 { top: 10%; right: 0%; animation-duration: 8s; animation-delay: 1s; }
.b2b-bubble--3 { top: 38%; left: -6%; animation-duration: 6.5s; animation-delay: 0.6s; }
.b2b-bubble--4 { top: 50%; right: -4%; animation-duration: 7.5s; animation-delay: 1.4s; }
.b2b-bubble--5 { bottom: 22%; left: -2%; animation-duration: 8.5s; animation-delay: 0.3s; }
.b2b-bubble--6 { bottom:  6%; right:  2%; animation-duration: 9s; animation-delay: 1.8s; }
.b2b-bubble--7 { bottom:  0%; left: 26%; animation-duration: 7.2s; animation-delay: 2.4s; }

@keyframes b2bBubbleFloat {
  0%   { transform: translate(0, 0) rotate(0deg); }
  25%  { transform: translate(8px, -10px) rotate(1.5deg); }
  50%  { transform: translate(-6px, -16px) rotate(-1.5deg); }
  75%  { transform: translate(10px, -6px) rotate(0.8deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@media (max-width: 900px) {
  .b2b-bubble { padding: 4px 10px 4px 4px; }
  .b2b-bubble img { width: 30px; height: 30px; }
  .b2b-bubble__info strong { font-size: 11px; }
  .b2b-bubble__badge { font-size: 10px; padding: 1px 6px; }
  .b2b-bubble--3 { left: 0%; }
  .b2b-bubble--4 { right: 0%; }
  .b2b-bubble--5 { left: 0%; }
}
@media (max-width: 600px) {
  .b2b-phone { width: 200px; height: 400px; }
  .b2b-bubble--7 { display: none; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .b2b-phone, .b2b-bubble, .b2b-play__pulse { animation: none !important; }
}

/* ----- Play button (centered on phone, between mockup and bubbles z-stack) ----- */
.b2b-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #111;
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.45),
    0 0 0 4px rgba(255, 255, 255, 0.22);
  z-index: 3; /* uvnitř .b2b-phone (z-index:3) → bubliny (z-index:4) jsou nad ním */
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  -webkit-tap-highlight-color: transparent;
}
.b2b-play:hover,
.b2b-play:focus-visible {
  background: #fff;
  color: #000;
  transform: translate(-50%, -50%) scale(1.08);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.5),
    0 0 0 8px rgba(255, 255, 255, 0.28);
  outline: none;
}
.b2b-play:active {
  transform: translate(-50%, -50%) scale(0.96);
}
.b2b-play__icon {
  margin-left: 4px; /* optical balance for play triangle */
  display: block;
}
.b2b-play__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.65);
  animation: b2bPlayPulse 2.4s ease-out infinite;
  pointer-events: none;
}
@keyframes b2bPlayPulse {
  0%   { transform: scale(0.96); opacity: 0.85; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { transform: scale(1.45); opacity: 0; }
}

/* ----- Reel modal ----- */
.b2b-modal[hidden] { display: none !important; }
.b2b-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: b2bModalIn 0.25s ease-out;
}
.b2b-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 22, 22, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: pointer;
}
.b2b-modal__dialog {
  position: relative;
  width: min(420px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  background: #000;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.b2b-modal__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(0, 0, 0, 0.55);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.b2b-modal__close:hover { background: rgba(0, 0, 0, 0.8); }
.b2b-modal__frame {
  position: relative;
  width: 100%;
  /* Instagram reel embed has its own header/caption — give it room */
  aspect-ratio: 9 / 16;
  max-height: calc(100vh - 40px);
}
.b2b-modal__iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  background: #000;
}
@keyframes b2bModalIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ===== Investujeme — premium dark theme (scoped to body.invest-page) ===== */
body.invest-page {
  background: #0a0a0a;
  color: #ededed;
}
body.invest-page header,
body.invest-page header.site-header,
body.invest-page header.site-header.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: none;
}
body.invest-page header.site-header.is-scrolled {
  background: rgba(10,10,10,0.96);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
body.invest-page header .logo img,
body.invest-page header img[alt*="INFLU"i] {
  filter: brightness(0) invert(1);
}
body.invest-page header a,
body.invest-page header .submenu-trigger { color: #fff; }
body.invest-page header nav a { opacity: 0.85; }
body.invest-page header nav a:hover,
body.invest-page header nav a.is-active,
body.invest-page header .submenu-trigger.is-active { opacity: 1; color: var(--primary); }
body.invest-page .submenu {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}
body.invest-page .submenu a { color: #ededed; opacity: 0.9; }
body.invest-page .submenu a:hover,
body.invest-page .submenu a.is-active { background: rgba(194, 241, 94, 0.08); color: var(--primary); opacity: 1; }
body.invest-page .header-ctas .btn--outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
}
body.invest-page .header-ctas .btn--outline:hover { background: #fff; color: #0a0a0a; }
body.invest-page footer {
  background: #050505;
  color: #c4c4c4;
  border-top: 1px solid rgba(255,255,255,0.06);
}
body.invest-page footer h2,
body.invest-page footer h3,
body.invest-page footer h4,
body.invest-page footer h5,
body.invest-page footer h6,
body.invest-page footer strong { color: #fff; }
body.invest-page footer .footer__links h2 {
  color: #fff;
  margin: 0 0 24px;
  padding: 0;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
}
body.invest-page footer .footer__links ul,
body.invest-page footer .footer__links li { padding: 0; margin-left: 0; }
body.invest-page footer a { color: #c4c4c4; }
body.invest-page footer a:hover { color: var(--primary); }
body.invest-page footer hr,
body.invest-page footer .footer__divider,
body.invest-page footer .footer-divider,
body.invest-page footer [class*="divider"],
body.invest-page footer [class*="separator"] {
  border-color: rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.08);
  height: 1px;
  margin: 6px 0;
}
body.invest-page footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.08);
  color: #888;
  padding-top: 24px;
  margin-top: 32px;
  font-size: 13px;
}
body.invest-page footer .footer__email-link {
  color: #fff;
  border-bottom-color: rgba(194,241,94,0.4);
}
body.invest-page footer .footer__email-link:hover { color: var(--primary); border-bottom-color: var(--primary); }
body.invest-page footer .footer__socials a { color: #c4c4c4; }
body.invest-page footer .footer__socials a:hover { color: var(--primary); }
body.invest-page footer .footer__payment { display: none; }
body.invest-page .sticky-mobile-cta { background: var(--primary); color: #0a0a0a; }
body.invest-page .back-to-top {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
}
body.invest-page .back-to-top:hover { background: var(--primary); color: #0a0a0a; border-color: var(--primary); }

/* ----- Common atoms ----- */
.invest-eyebrow {
  display: inline-block;
  background: rgba(194, 241, 94, 0.12);
  color: var(--primary);
  border: 1px solid rgba(194, 241, 94, 0.28);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.invest-accent {
  color: var(--primary);
  font-style: italic;
  font-weight: 800;
  display: inline-block;
  padding: 0 0.05em 0.08em;
}
.invest-h2 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 14px;
  padding-bottom: 0.05em;
}
.invest-section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 56px;
}
.invest-section-lead {
  font-size: 17px;
  line-height: 1.6;
  color: #c8c8c8;
  margin: 0;
}
.invest-section {
  padding: 100px 0;
  background: #0a0a0a;
  position: relative;
}
.invest-section--alt {
  background: #0f0f0f;
}
@media (max-width: 800px) {
  .invest-section { padding: 70px 0; }
  .invest-section-head { margin-bottom: 40px; }
}

/* ----- Buttons ----- */
.invest-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  border: 0;
  cursor: pointer;
}
.invest-btn svg { width: 18px; height: 18px; }
.invest-btn--primary {
  background: var(--primary);
  color: #0a0a0a;
  box-shadow: 0 14px 40px rgba(194, 241, 94, 0.25);
}
.invest-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 52px rgba(194, 241, 94, 0.35);
}
.invest-btn--ghost {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.invest-btn--ghost:hover { border-color: var(--primary); color: var(--primary); }
.invest-btn--ghost-light {
  background: rgba(255,255,255,0.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}
.invest-btn--ghost-light:hover {
  background: var(--primary);
  color: #0a0a0a;
  border-color: var(--primary);
}
.invest-btn--xl { padding: 20px 36px; font-size: 17px; }

/* ----- Hero ----- */
.invest-hero {
  position: relative;
  padding: 140px 0 100px;
  background: #0a0a0a;
  overflow: hidden;
  isolation: isolate;
}
.invest-hero__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 800px 600px at 70% 30%, rgba(194, 241, 94, 0.10) 0%, transparent 60%),
    radial-gradient(ellipse 600px 400px at 20% 80%, rgba(150, 200, 255, 0.07) 0%, transparent 60%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}
.invest-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.invest-hero__inner {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.invest-hero__h1 {
  font-size: clamp(42px, 6.4vw, 84px);
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: #fff;
  margin: 0 0 22px;
  padding-bottom: 0.05em;
}
.invest-hero__lead {
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.6;
  color: #d4d4d4;
  max-width: 720px;
  margin: 0 auto 32px;
}
.invest-hero__ctas {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
@media (max-width: 700px) {
  .invest-hero { padding: 100px 0 70px; }
}

/* ----- Compare (problems vs investment) ----- */
.invest-compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 800px) { .invest-compare { grid-template-columns: 1fr; gap: 16px; } }
.invest-compare__col {
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 36px 32px;
}
.invest-compare__col--pros {
  background: #131313;
  border-color: rgba(194, 241, 94, 0.28);
}
.invest-compare__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.invest-compare__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(220, 70, 70, 0.14);
  color: #ff7a7a;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}
.invest-compare__icon--ok {
  background: var(--primary);
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 900;
}
.invest-compare__head h3 {
  margin: 0;
  font-size: 19px;
  font-weight: 700;
  color: #fff;
}
.invest-compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.invest-compare__list li {
  position: relative;
  padding: 12px 0 12px 28px;
  font-size: 15px;
  line-height: 1.5;
  color: #d4d4d4;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.invest-compare__list li:last-child { border-bottom: 0; }
.invest-compare__list li::before {
  content: '';
  position: absolute;
  left: 6px; top: 20px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
}
.invest-compare__col--pros .invest-compare__list li::before { background: var(--primary); }

/* ----- Pillars (3 directions) ----- */
.invest-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .invest-pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .invest-pillars { grid-template-columns: 1fr; } }
.invest-pillar {
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 40px 32px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.invest-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(194, 241, 94, 0.3);
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.invest-pillar__icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
}
.invest-pillar h3 {
  margin: 0 0 10px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.invest-pillar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #c8c8c8;
}

/* ----- Benefits (6 boxů) ----- */
.invest-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .invest-benefits { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .invest-benefits { grid-template-columns: 1fr; } }
.invest-benefit {
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.invest-benefit:hover {
  border-color: rgba(194,241,94,0.28);
  transform: translateY(-3px);
}
.invest-benefit__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: #0a0a0a;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 14px;
  line-height: 1;
}
.invest-benefit h4 {
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.invest-benefit p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: #c8c8c8;
}

/* ----- Paths (3 cesty) ----- */
.invest-paths-dark {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) { .invest-paths-dark { grid-template-columns: 1fr; } }
.invest-path-dark {
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 40px 32px 36px;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.invest-path-dark:hover {
  transform: translateY(-4px);
  border-color: rgba(194,241,94,0.3);
}
.invest-path-dark__num {
  position: absolute;
  top: -22px; left: 32px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #0a0a0a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 18px;
  box-shadow: 0 10px 24px rgba(194,241,94,0.3);
}
.invest-path-dark h3 {
  margin: 14px 0 12px;
  font-size: 22px;
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.invest-path-dark p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: #c8c8c8;
}

/* ----- Garant ----- */
.invest-garant {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
  background: #131313;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 48px;
  align-items: center;
}
@media (max-width: 800px) {
  .invest-garant { grid-template-columns: 1fr; padding: 32px 24px; gap: 28px; align-items: start; }
}
.invest-garant__photo {
  position: relative;
  width: 240px;
  height: 240px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .invest-garant__photo { width: 200px; height: 200px; }
}
.invest-garant__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  border: 3px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.invest-garant__monogram {
  position: absolute;
  bottom: 6px; right: 6px;
  width: 50px; height: 50px;
  background: var(--primary);
  color: #0a0a0a;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.04em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  border: 3px solid #131313;
}
.invest-garant__body {}
.invest-garant__name {
  margin: 0 0 14px;
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.25;
  display: inline-block;
}
.invest-garant__name a {
  color: #fff;
  text-decoration: none;
  border-bottom: 3px solid var(--primary);
  padding-bottom: 8px;
  transition: color 0.2s ease, border-bottom-color 0.2s ease;
}
.invest-garant__name a:hover { border-bottom-color: #fff; color: var(--primary); }
.invest-garant__role {
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin: 0 0 18px;
  letter-spacing: 0.02em;
}
.invest-garant__about {
  font-size: 15px;
  line-height: 1.7;
  color: #d4d4d4;
  margin: 0;
}
.invest-garant__about strong { color: #fff; }
.invest-garant__inline-link {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(194,241,94,0.5);
  padding-bottom: 1px;
  transition: border-bottom-color 0.2s ease;
}
.invest-garant__inline-link:hover { border-bottom-color: var(--primary); border-bottom-style: solid; }
.invest-garant__about strong .invest-garant__inline-link,
.invest-garant__about strong > a { color: var(--primary); }
.invest-btn__brand-icon {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}
.invest-garant__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 700px) {
  .invest-garant__stats { grid-template-columns: 1fr; gap: 16px; padding: 20px 0; }
}
.invest-stat strong {
  display: block;
  color: var(--primary);
  font-size: 26px;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.2;
}
.invest-stat span {
  font-size: 12px;
  line-height: 1.45;
  color: #b8b8b8;
}

/* ----- Final CTA ----- */
.invest-section--cta {
  background: #0a0a0a;
  padding-bottom: 120px;
  position: relative;
}
.invest-section--cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 280px at 50% 30%, rgba(194,241,94,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.invest-section--cta > .container { position: relative; z-index: 1; }
.invest-cta {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.invest-cta .invest-section-lead { margin-bottom: 32px; }
.invest-cta__note {
  margin-top: 22px;
  font-size: 13px;
  color: rgba(237,237,237,0.55);
}
.invest-cta__note a {
  color: var(--primary);
  text-decoration: none;
  border-bottom: 1px dashed rgba(194,241,94,0.4);
}
.invest-cta__note a:hover { border-bottom-color: var(--primary); }

/* ===== Kdo jsme (About) page ===== */
.about-hero {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 920px;
  min-height: 800px;
  overflow: hidden;
  isolation: isolate;
  background: #f3f3f3;
}
@media (max-width: 800px) {
  .about-hero { aspect-ratio: 4 / 5; max-height: 92vh; min-height: 520px; }
}
.about-hero__media,
.about-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-hero__media img {
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
@media (min-width: 1400px) {
  .about-hero__media img { object-position: center 8%; }
}
@media (max-width: 800px) {
  .about-hero__media img { object-position: center 35%; }
}
/* Intro pod fotkou — full-width black band, premium */
.about-intro {
  background: var(--header-color);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.about-intro::before {
  content: '';
  position: absolute;
  inset: -30% -20% auto auto;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(194,241,94,0.12) 0%, transparent 60%);
  pointer-events: none;
}
@media (max-width: 800px) {
  .about-intro { padding: 56px 0; }
}
.about-intro__card {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
}
.about-intro__eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  background: rgba(255,255,255,0.12);
  color: var(--primary);
  border: 1px solid rgba(194,241,94,0.32);
}
.about-intro__h1 {
  color: #fff;
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 20px;
  font-weight: 800;
}
.about-intro__lead {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin: 0;
  max-width: 720px;
}
.about-intro__lead strong { color: #fff; }
.about-intro__story {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
  max-width: 760px;
}
@media (max-width: 800px) {
  .about-intro__story { margin-top: 36px; padding-top: 28px; }
}
.about-intro__sub {
  display: inline-block;
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba(194,241,94,0.4);
}
.about-intro__story p {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255,255,255,0.82);
  margin: 0 0 16px;
}
.about-intro__story p:last-child { margin-bottom: 0; }
.about-intro__story p strong { color: #fff; font-weight: 700; }

/* Náš příběh */
.about-story p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--content-color);
  margin: 0 0 18px;
}
.about-story p:last-child { margin-bottom: 0; }
.about-story strong { color: var(--header-color); }

/* Tým grid */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 800px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: var(--radius-md);
  padding: 28px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  align-items: start;
  transition: box-shadow 0.25s, transform 0.25s;
}
@media (max-width: 600px) {
  .team-card { grid-template-columns: 1fr; text-align: center; }
}
.team-card:hover { transform: translateY(-3px); box-shadow: 0 24px 50px rgba(0,0,0,0.06); }
.team-card__photo img {
  width: 100%;
  max-width: 160px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto;
  border: 3px solid #f3f3f3;
}
.team-card__body h3 {
  margin: 0 0 4px;
  font-size: 22px;
  letter-spacing: -0.01em;
}
.team-card__role {
  font-size: 13px;
  font-weight: 600;
  color: var(--quaternary);
  margin: 0 0 12px;
  letter-spacing: 0.02em;
}
.team-card__body > p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--content-color);
  margin: 0 0 16px;
}
.team-card__links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.team-card__links a {
  font-size: 13px;
  font-weight: 700;
  color: var(--header-color);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
  text-decoration: none;
}
.team-card__links a:hover { color: var(--quaternary); }

/* Vize & Mise */
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media (max-width: 800px) { .vm-grid { grid-template-columns: 1fr; } }
.vm-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid #ececec;
  position: relative;
}
.vm-card--vision { background: #fff; }
.vm-card--mission {
  background: var(--header-color);
  color: #fff;
  border-color: var(--header-color);
}
.vm-card__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--header-color);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.vm-card h3 {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1.25;
  margin: 0 0 14px;
  letter-spacing: -0.015em;
}
.vm-card--mission h3 { color: #fff; }
.vm-card p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--content-color);
  margin: 0;
}
.vm-card--mission p { color: rgba(255,255,255,0.92); }

/* Stats nad galerií */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  background: var(--header-color);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 36px 40px;
}
@media (max-width: 800px) {
  .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; padding: 28px 24px; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
}
.about-stat {
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
  padding: 0 12px;
}
.about-stat:last-child { border-right: 0; }
@media (max-width: 800px) { .about-stat { border-right: 0; } }
.about-stat strong {
  display: block;
  color: var(--primary);
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 4px;
  line-height: 1.1;
}
.about-stat span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}

/* Hero slider */
.about-slider {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 40px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: #0a0a0a;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}
@media (max-width: 600px) { .about-slider { aspect-ratio: 4 / 3; border-radius: 14px; } }
.about-slider__track {
  position: relative;
  width: 100%;
  height: 100%;
}
.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
}
.about-slide.is-active { opacity: 1; pointer-events: auto; z-index: 1; }
.about-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-slide__caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 28px 28px;
  color: #fff;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.75) 100%);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.about-slide__caption strong {
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: -0.015em;
  font-weight: 700;
}
.about-slide__caption span { font-size: 13px; opacity: 0.85; }
.about-slide__year {
  display: inline-block;
  width: fit-content;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--header-color);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.about-slider__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.92);
  color: #111;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.about-slider__btn:hover { background: #fff; transform: translateY(-50%) scale(1.05); }
.about-slider__btn svg { width: 22px; height: 22px; }
.about-slider__btn--prev { left: 16px; }
.about-slider__btn--next { right: 16px; }
.about-slider__dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 3;
}
.about-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, width 0.2s ease;
}
.about-slider__dot.is-active { background: #fff; width: 24px; border-radius: 999px; }

/* Photo gallery (masonry-ish) */
.photo-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  grid-auto-flow: dense;
  gap: 12px;
}
@media (max-width: 900px) {
  .photo-gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 160px; }
}
@media (max-width: 600px) {
  .photo-gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
}
.photo-gallery__item {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f3f3;
}
.photo-gallery__item img,
.photo-gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.photo-gallery__item:hover img,
.photo-gallery__item:hover video { transform: scale(1.06); }
.photo-gallery__item--wide { grid-column: span 2; }
.photo-gallery__item--tall { grid-row: span 2; }
.photo-gallery__item { cursor: pointer; }
.photo-gallery__item--video {
  background: #000;
  position: relative;
}
.photo-gallery__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.95);
  color: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.photo-gallery__play svg { margin-left: 3px; } /* optical balance */
.photo-gallery__item--video:hover .photo-gallery__play { transform: translate(-50%, -50%) scale(1.1); opacity: 0.92; }
@media (max-width: 600px) {
  .photo-gallery__item--wide { grid-column: span 2; }
  .photo-gallery__item--tall { grid-row: span 2; }
  .photo-gallery__play { width: 48px; height: 48px; }
}

/* ----- Lightbox ----- */
.lb[hidden] { display: none !important; }
.lb {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  animation: lbIn 0.25s ease-out;
}
.lb__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  cursor: zoom-out;
}
.lb__stage {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.lb__content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  max-height: calc(90vh - 60px);
}
.lb__content img,
.lb__content video {
  max-width: 100%;
  max-height: calc(90vh - 60px);
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
  display: block;
  background: #000;
}
.lb__content video { max-height: calc(90vh - 60px); }
.lb__caption {
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  text-align: center;
  font-weight: 500;
}
.lb__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease;
}
.lb__close:hover { background: rgba(255,255,255,0.22); }
.lb__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: background 0.2s ease, transform 0.2s ease;
}
.lb__nav:hover { background: rgba(255,255,255,0.22); transform: translateY(-50%) scale(1.05); }
.lb__nav--prev { left: 24px; }
.lb__nav--next { right: 24px; }
@media (max-width: 700px) {
  .lb__nav { width: 44px; height: 44px; }
  .lb__nav--prev { left: 8px; }
  .lb__nav--next { right: 8px; }
  .lb__close { top: 8px; right: 8px; }
}
@keyframes lbIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* ===== Ke stažení (Downloads) page ===== */
.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) { .downloads-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .downloads-grid { grid-template-columns: 1fr; } }
.download-card {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 18px;
  padding: 28px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.download-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 24px 50px rgba(0,0,0,0.07);
}
.download-card__badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(194, 241, 94, 0.22);
  color: #4a6608;
  padding: 5px 12px;
  border-radius: 999px;
  width: fit-content;
}
.download-card h3 {
  margin: 4px 0 0;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.015em;
  color: var(--header-color);
}
.download-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--content-color);
  flex: 1;
}
.download-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  margin-top: 4px;
  background: var(--header-color);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.2s ease;
  align-self: flex-start;
}
.download-card__btn svg { width: 16px; height: 16px; }
.download-card__btn:hover {
  background: var(--primary);
  color: var(--header-color);
  transform: translateY(-2px);
}
.download-card--feature {
  background: linear-gradient(135deg, var(--header-color) 0%, #1a1f3a 100%);
  border-color: var(--header-color);
  color: #fff;
}
.download-card--feature h3 { color: #fff; }
.download-card--feature p { color: rgba(255,255,255,0.85); }
.download-card--feature p strong { color: var(--primary); }
.download-card--feature .download-card__badge {
  background: var(--primary);
  color: var(--header-color);
}
.download-card--feature .download-card__btn {
  background: var(--primary);
  color: var(--header-color);
}
.download-card--feature .download-card__btn:hover {
  background: #fff;
  color: var(--header-color);
}
.download-card__price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 6px 0 4px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.download-card__amount {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--primary);
  line-height: 1;
}
.download-card__amount-note {
  font-size: 12px;
  opacity: 0.72;
  letter-spacing: 0.01em;
}

/* ----- Sticky mobile CTA ----- */
.sticky-mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 95;
  background: var(--button-bg);
  color: #fff;
  border-radius: 999px;
  padding: 16px 22px;
  text-align: center;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.25);
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.sticky-mobile-cta:hover { background: var(--quaternary); }
@media (max-width: 768px) {
  .sticky-mobile-cta { display: flex; }
}

/* ----- Reference vylepšené ----- */
.testimonial__rating {
  color: #f6b833;
  letter-spacing: 3px;
  font-size: 16px;
}
.testimonial__result {
  background: var(--primary);
  color: var(--header-color);
  font-weight: 700;
  font-size: 13px;
  padding: 4px 12px;
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
}

/* ----- Star rating u referencí ----- */
.creator__rating {
  color: #f6b833;
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 4px;
}

/* ----- Section secondary CTA mikro ----- */
.section-cta {
  text-align: center;
  margin-top: 40px;
}
.section-cta a { font-weight: 600; }

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

/* ----- Newsletter signup ve footeru ----- */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, #a4d839 100%);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: center;
}
@media (max-width: 800px) {
  .newsletter { grid-template-columns: 1fr; padding: 28px 24px; }
}
.newsletter h3 {
  margin: 0 0 8px;
  font-size: clamp(22px, 2.4vw, 30px);
}
.newsletter p {
  margin: 0;
  font-size: 15px;
  color: var(--header-color);
  opacity: 0.85;
}
.newsletter__lead {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--header-color);
  color: var(--primary);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.newsletter__form {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.newsletter__form input[type="email"] {
  flex: 1 1 200px;
  padding: 14px 18px;
  border-radius: 999px;
  border: 0;
  font-family: inherit;
  font-size: 15px;
  background: #fff;
}
.newsletter__form input[type="email"]:focus {
  outline: 2px solid var(--header-color);
}
.newsletter__form button {
  background: var(--header-color);
  color: #fff;
  border: 0;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.newsletter__form button:hover {
  background: var(--quaternary);
  transform: translateY(-2px);
}
.newsletter__success {
  background: var(--header-color);
  color: var(--primary);
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  display: none;
  text-align: center;
}
.newsletter.is-submitted .newsletter__form { display: none; }
.newsletter.is-submitted .newsletter__success { display: block; }
.newsletter__privacy {
  font-size: 11px;
  margin-top: 10px;
  opacity: 0.75;
  color: var(--header-color);
}

/* ----- Sekce "Jak chráníme vaše data" mini box ----- */
.security-mini {
  background: rgba(35, 35, 35, 0.04);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--content-color);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}
.security-mini::before {
  content: '\1F512 ';
  font-size: 16px;
}

/* ----- Submenu / dropdown (Program) ----- */
.nav .has-submenu { position: relative; }
.nav .submenu-trigger {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.nav .submenu-arrow {
  font-size: 12px;
  transition: transform 0.2s;
  display: inline-block;
}
.nav .has-submenu.is-open .submenu-arrow { transform: rotate(180deg); }

/* Invisible hover-bridge mezi triggerem a submenu, aby cursor mohl projet */
.nav .has-submenu::after {
  content: '';
  position: absolute;
  top: 100%; left: 0;
  width: 100%; height: 14px;
  display: none;
}
.nav .has-submenu.is-open::after,
.nav .has-submenu:hover::after { display: block; }

.nav .submenu {
  position: absolute;
  top: calc(100% + 14px); left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 8px;
  list-style: none;
  margin: 0;
  display: none;
  z-index: 110;
  border: 1px solid rgba(0,0,0,0.05);
}
.nav .has-submenu.is-open .submenu,
.nav .has-submenu:hover .submenu,
.nav .has-submenu .submenu:hover { display: block; animation: submenuFade 0.18s ease; }
@keyframes submenuFade {
  from { opacity: 0; transform: translateX(-50%) translateY(-4px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.nav .submenu li { display: block; }
.nav .submenu a {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 14px;
  color: var(--header-color);
  border-radius: 8px;
  white-space: nowrap;
  text-align: left;
}
.nav .submenu a:hover {
  background: rgba(194, 241, 94, 0.25);
  color: var(--quaternary);
}

/* Mobile submenu */
.mobile-nav .mobile-nav__group-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--quaternary);
  padding: 16px 16px 4px;
  margin-top: 8px;
}
.mobile-nav .mobile-nav__sub {
  padding-left: 28px;
  font-size: 16px;
}

/* External link ikona */
.ext-icon {
  display: inline-block;
  vertical-align: -1px;
  margin-left: 4px;
  opacity: 0.55;
  transition: opacity 0.2s, transform 0.2s;
}
a:hover > .ext-icon {
  opacity: 1;
  transform: translate(1px, -1px);
}

/* Partner text loga (Claude, OpenAI) */
.partner-text {
  font-weight: 700;
  font-size: 14px;
  color: var(--header-color);
  opacity: 0.7;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
  display: inline-block;
  padding: 2px 4px;
}
.partner-text:hover { opacity: 1; color: var(--quaternary); }

/* AI MCP usecases — auto-fit pro 4 položky */
.ai-mcp__usecases {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

/* MCP h2 reformat — větší vizuální hierarchie */
.ai-mcp__h2 {
  font-size: clamp(32px, 4.5vw, 56px) !important;
  margin-bottom: 4px !important;
  line-height: 1.1;
}
.ai-mcp__h2 .accent {
  color: var(--primary);
  display: inline-block;
}
.ai-mcp__h2-sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: rgba(255,255,255,0.65);
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: 0.02em;
}

/* Footer Downloads sekce */
.footer-downloads {
  margin: 48px 0 32px;
  padding-top: 40px;
  border-top: 1px solid #eee;
}
.footer-downloads__head {
  text-align: center;
  margin-bottom: 24px;
}
.footer-downloads__head h3 {
  margin: 12px 0 8px;
  font-size: clamp(24px, 2.4vw, 32px);
}
.footer-downloads__head p {
  color: var(--content-color);
  margin: 0;
  font-size: 15px;
}
.downloads-table-wrap { overflow-x: auto; }
.downloads-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.downloads-table thead th {
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--quaternary);
  padding: 10px 16px;
  border-bottom: 2px solid #eee;
}
.downloads-table tbody td {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f1f1;
  vertical-align: middle;
}
.downloads-table tbody tr:hover { background: rgba(194, 241, 94, 0.08); }
.downloads-table small { color: var(--content-color); opacity: 0.75; font-weight: 400; }
.dl-type {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.dl-type--skill { background: rgba(131, 64, 238, 0.12); color: var(--quaternary); }
.dl-type--video { background: rgba(233, 131, 99, 0.18); color: #b54a2a; }
.dl-type--pdf { background: rgba(194, 241, 94, 0.4); color: var(--header-color); }
.dl-btn {
  display: inline-block;
  padding: 8px 16px;
  background: var(--header-color);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}
.dl-btn:hover { background: var(--quaternary); transform: translateY(-2px); }
@media (max-width: 700px) {
  .downloads-table thead { display: none; }
  .downloads-table tbody td { display: block; padding: 8px 0; border: 0; }
  .downloads-table tbody tr {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
  }
  .downloads-table tbody tr:hover { background: transparent; }
}
