/* ─── SELF-HOSTED NUNITO SANS ────────────────────── */
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/NunitoSans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito Sans';
  font-style: normal;
  font-weight: 400 700;
  font-stretch: 100%;
  font-display: swap;
  src: url('../fonts/NunitoSans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Queering';
  src: url('../fonts/Queering-Medium.woff2') format('woff2'),
       url('../fonts/Queering-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Queering';
  src: url('../fonts/Queering-Bold.woff2') format('woff2'),
       url('../fonts/Queering-Bold.woff') format('woff');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Queering';
  src: url('../fonts/Queering-Heavy.woff2') format('woff2'),
       url('../fonts/Queering-Heavy.woff') format('woff');
  font-weight: 800 900;
  font-style: normal;
  font-display: swap;
}
/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── TOKENS ─────────────────────────────────────── */
:root {
  --black:  #010E27;
  --white:  #FDFDF8;
  --yellow: #FFE00D;
  --pink:   #ED1D85;
  --border: #E2E8F0;
  --muted:  #6B7280;
  --body-color: #010E27;
  --surface: #F8F8F3;
  --surface-warm: #F5F4EF;
  --black-a55: rgba(1,14,39,0.55);
  --black-a65: rgba(0,0,0,0.65);
}

/* ─── BASE ───────────────────────────────────────── */
body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-color);
  background: #010E27;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* ─── INTRO OVERLAY ─────────────────────────────── */
#intro-overlay {
  position: fixed;
  inset: 0;
  background: #FFE00D;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  will-change: clip-path, opacity;
  clip-path: inset(0px 0px 0px 0px round 0px);
}

#intro-overlay.is-shrinking {
  transition: clip-path 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

#intro-overlay.is-fading {
  transition: opacity 0.4s ease;
  opacity: 0;
  pointer-events: none;
}

/* Letter-by-letter intro text */
.intro-text {
  font-family: 'Queering', sans-serif;
  font-size: clamp(72px, 14vw, 180px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #010E27;
  line-height: 1;
  user-select: none;
}

.intro-letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
  transition-delay: calc(var(--i) * 65ms + 80ms);
}

.intro-text.is-visible .intro-letter {
  opacity: 1;
  transform: translateY(0);
}

/* Intro logo jako SVG — přesné cesty z logo.svg */
.intro-logo-svg {
  height: clamp(52px, 11vw, 136px);
  width: auto;
  display: block;
  margin: 0 auto;
}

.intro-svg-l {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.5s cubic-bezier(0.34, 1.4, 0.64, 1);
  transition-delay: calc(var(--i) * 65ms + 80ms);
}

.intro-text.is-visible .intro-svg-l {
  opacity: 1;
  transform: translateY(0);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── CUSTOM CURSOR ──────────────────────────────── */
a, button, [role="button"], label, .for-whom-tag {
  cursor: pointer;
}

p, li, td {
  font-size: 16px;
}

.container {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 clamp(20px, 3.39vw, 60px);
}

/* ─── TYPOGRAPHY ─────────────────────────────────── */
h1, h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  color: var(--black);
}

h2 {
  font-family: 'Queering', sans-serif;
  font-size: clamp(48px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1px;
  text-transform: uppercase;
  color: #010E27;
}

h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

/* ─── BUTTONS ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 16px 36px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 150ms ease-out, color 150ms ease-out, border-color 150ms ease-out, transform 150ms ease-out;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--yellow);
  color: #010E27;
  border: none;
  font-weight: 700;
  border-radius: 14px;
  padding: 16px 32px;
  font-size: 16px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 6px 20px rgba(255, 214, 0, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.08),
    inset 0 2px 6px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(180, 140, 0, 0.3);
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 36px rgba(255, 214, 0, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.1),
    inset 0 2px 6px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(180, 140, 0, 0.3);
}

.btn-primary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    0 3px 10px rgba(255, 214, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 2px 8px rgba(180, 140, 0, 0.35),
    inset 0 -2px 5px rgba(255, 255, 255, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #010E27;
  border: 2px solid #010E27;
  font-weight: 600;
  border-radius: 14px;
  padding: 16px 32px;
  font-size: 16px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.08),
    0 2px 5px rgba(0, 0, 0, 0.05);
}

.btn-secondary:hover {
  background: #010E27;
  color: #fff;
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.15),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

.btn-secondary:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    0 3px 10px rgba(0, 0, 0, 0.1),
    0 1px 3px rgba(0, 0, 0, 0.06);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--white);
}

.btn-white:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-lg {
  padding: 16px 32px;
}

/* ─── BADGES ─────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}

.badge-pink   { background: var(--pink);   color: var(--white); }
.badge-dark   { background: var(--black);  color: var(--white); }
/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Varianta pro nadpisy — přijíždí zleva */
.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 2.0s cubic-bezier(0.22, 1, 0.36, 1),
              transform 2.0s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Varianta pro ikony — přijíždí zdola plynule */
.reveal-up {
  opacity: 0;
  transform: translateY(50px) scale(0.94);
  transition: opacity 1.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── BASE BLOCK ELEMENTS ────────────────────────── */
main {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  background: transparent;
}
footer {
  display: block;
  margin: 0 !important;
}

/* ─── SECTION SPACING ────────────────────────────── */
section {
  padding-top: 140px !important;
  padding-bottom: 140px !important;
}

/* CTA is last section — connects directly to footer */
.cta-section {
  padding-bottom: 80px !important;
}

.section-header {
  max-width: 680px;
  margin-bottom: 64px;
}

.section-header h2,
section h2 {
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 500;
  margin-bottom: 60px;
}

.section-header p {
  color: var(--body-color);
  font-size: 18px;
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   [1] NAVBAR
═══════════════════════════════════════════════════ */
.navbar {
  display: flex;
  align-items: center;
  padding: 0 32px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  width: 100%;
  box-sizing: border-box;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.09);
}

.navbar.scrolled {
  background: rgba(253, 253, 248, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(0,0,0,0.09);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 58px;
  position: relative;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.logo {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.02em;
  color: var(--black);
  display: inline-flex;
  align-items: baseline;
  gap: 1px;
}

.logo-ai {
  font-family: 'Queering', 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--yellow);
  color: var(--black);
  padding: 0px 5px 1px;
  border-radius: 5px;
  line-height: 1.2;
}

.logo span {
  color: var(--pink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
  margin-right: 32px;
}

.nav-links a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  transition: color 150ms ease-out;
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--black);
  transition: width 200ms ease-out;
}

.nav-links a:hover { color: var(--black); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.is-active { color: var(--black); }
.nav-links a.is-active::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-cta .btn {
  padding: 8px 20px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 8px;
}

.nav-cta .btn-primary:hover {
  transform: none;
  box-shadow:
    0 4px 12px rgba(255, 214, 0, 0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 11px;
  background: none;
  border: none;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--black);
  transition: transform 150ms ease-out, opacity 150ms ease-out;
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--white);
  border-top: 0.5px solid var(--border);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100vw;
  padding-bottom: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--body-color);
  padding: 14px 32px;
  border-bottom: 0.5px solid var(--border);
  transition: color 150ms ease-out, background 150ms ease-out;
}

.mobile-menu a:hover {
  color: var(--black);
  background: var(--surface);
}

.mobile-menu .btn {
  margin: 16px 32px 24px;
  justify-content: center;
}

/* Close button — bottom-right corner of menu */
.mobile-menu-close {
  position: absolute;
  bottom: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  background: var(--black);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu-close span {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: #fff;
  display: block;
}

.mobile-menu-close span:first-child { transform: rotate(45deg); }
.mobile-menu-close span:last-child  { transform: rotate(-45deg); }


/* ═══════════════════════════════════════════════════
   [2] HERO
═══════════════════════════════════════════════════ */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  background: var(--white);
  padding-top: 0 !important;
  padding-bottom: 120px !important;
  margin-bottom: 0 !important;
}

/* ── Animated blob background ─────────────────── */
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  animation: fadeIn 1.2s ease 2.0s both;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  will-change: transform;
}

.hero-blob--pink {
  width: 38vw;
  height: 38vw;
  top: -5%;
  left: -5%;
  background: rgba(237, 29, 133, 0.28);
  animation: blobPink 8s ease-in-out infinite alternate;
}

.hero-blob--pink2 {
  width: 30vw;
  height: 30vw;
  top: 30%;
  right: 5%;
  background: rgba(237, 29, 133, 0.22);
  animation: blobPink2 11s ease-in-out infinite alternate;
}

@keyframes blobPink2 {
  0%   { transform: translate(0, 0);        }
  33%  { transform: translate(-8vw, 12vh);  }
  66%  { transform: translate(5vw, -8vh);   }
  100% { transform: translate(-4vw, 18vh);  }
}

.hero-blob--yellow {
  width: 50vw;
  height: 50vw;
  bottom: -10%;
  right: -5%;
  background: rgba(255, 218, 0, 1.0);
  animation: blobYellow 6s ease-in-out infinite alternate;
}

.hero-blob--accent {
  width: 40vw;
  height: 40vw;
  bottom: 0%;
  left: 5%;
  background: rgba(255, 210, 0, 0.80);
  animation: blobAccent 10s ease-in-out infinite alternate;
}

.hero-blob--center {
  display: none;
}

@keyframes blobPink {
  0%   { transform: translate(0,    0);    }
  50%  { transform: translate(20vw, 25vh); }
  100% { transform: translate(10vw, -8vh); }
}

@keyframes blobYellow {
  0%   { transform: translate(0,     0);     }
  50%  { transform: translate(-22vw, -20vh); }
  100% { transform: translate(-12vw,  8vh);  }
}

@keyframes blobAccent {
  0%   { transform: translate(0,    0);     }
  50%  { transform: translate(18vw, -22vh); }
  100% { transform: translate(-8vw, -15vh); }
}

/* ── Spawned blob (cell division) ─────────────────── */
.hero-blob--spawned {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  pointer-events: auto !important;
  cursor: pointer;
  will-change: transform;
  animation: blobSpawnPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  z-index: 0;
}
@keyframes blobSpawnPop {
  0%   { transform: translate(-50%, -50%) scale(0);    opacity: 0; }
  60%  { transform: translate(-50%, -50%) scale(1.18); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(1);    opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 40px 24px !important;
}

.hero-glass {
  position: relative;
  z-index: 5;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-radius: 0;
  padding: 40px 80px;
  max-width: 860px;
  margin: 0 auto !important;
  margin-bottom: 0 !important;
}

.hero-content::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(
    ellipse 60% 70% at 50% 45%,
    rgba(255, 255, 255, 0.55)  0%,
    rgba(255, 255, 255, 0.30)  40%,
    rgba(255, 255, 255, 0.00)  75%
  );
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 300px 300px;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0)    0%,
    rgba(255, 255, 255, 0.15) 30%,
    rgba(255, 255, 255, 0.65) 60%,
    rgba(255, 255, 255, 1)    100%
  );
  z-index: 3;
  pointer-events: none;
}

.hero-h1-wrap {
  background: transparent;
  backdrop-filter: none;
  border-radius: 0;
  padding: 0;
  text-align: center;
  margin-bottom: 32px;
}

.hero-h1 {
  font-family: 'Queering', sans-serif;
  font-size: clamp(64px, 10vw, 128px);
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: -3px;
  text-transform: uppercase;
  text-align: center;
  color: #010E27;
  margin: 0;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 2.3s both;
}

/* ── Credibility pills (pre-headline) ────────────── */
.hero-creds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 2.1s both;
}

.hero-cred-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 999px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.01em;
  box-shadow:
    0 6px 20px rgba(1, 14, 39, 0.08),
    0 2px 5px rgba(1, 14, 39, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-cred-pill:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(1, 14, 39, 0.12),
    0 3px 8px rgba(1, 14, 39, 0.07);
}

.hero-cred-pill-icon {
  flex-shrink: 0;
  color: #ED1D85;
}

.hero-cred-pill-icon--cognito {
  display: inline-block;
  width: 32px;
  height: 14px;
  background-color: #ED1D85;
  -webkit-mask: url('../img/logos/cognito-mark.svg') no-repeat center / contain;
          mask: url('../img/logos/cognito-mark.svg') no-repeat center / contain;
}

.hero-cred-pill[aria-disabled="true"] {
  cursor: default;
  pointer-events: none;
}

.hero-cred-pill[aria-disabled="true"]:hover {
  transform: none;
  box-shadow:
    0 6px 20px rgba(1, 14, 39, 0.08),
    0 2px 5px rgba(1, 14, 39, 0.05);
}

.hero-dot {
  color: #ED1D85;
}


.hero-body {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.5;
  color: var(--black);
  max-width: 560px;
  margin: 32px auto 24px;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 2.65s both;
}

/* ── CTA row ─────────────────────────────────────── */
.hero-cta-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 2.85s both;
}

.hero-cta-row .btn-primary {
  background: #ED1D85;
  color: #fff;
  box-shadow:
    0 8px 24px rgba(237, 29, 133, 0.38),
    0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-cta-row .btn-primary:hover {
  background: #d4187a;
  box-shadow:
    0 16px 36px rgba(237, 29, 133, 0.50),
    0 4px 10px rgba(0, 0, 0, 0.1);
}

/* ── Hero trust bar ──────────────────────────────── */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: center;
  flex-wrap: nowrap;
  opacity: 0;
  animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 3.05s both;
}

.hero-trust-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(13, 13, 11, 0.65);
  white-space: nowrap;
}

.hero-trust-logos {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: nowrap;
  justify-content: center;
}

.hero-trust-logos a {
  display: inline-flex;
  align-items: center;
  transition: transform 0.2s ease;
}

.hero-trust-logos a:hover {
  transform: translateY(-1px);
}

.hero-trust-logos img {
  height: 26px;
  width: auto;
  max-width: 90px;
  object-fit: contain;
  opacity: 0.35;
  filter: brightness(0);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.hero-trust-logos a:hover img,
.hero-trust-logos img:hover {
  opacity: 0.7;
  filter: brightness(0);
}

@media (prefers-reduced-motion: reduce) {
  .hero-trust { animation: none !important; opacity: 1 !important; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}


/* ── Logos ───────────────────────────────────────── */
.hero-logos {
  margin-top: 28px;
  margin-bottom: 24px;
  text-align: center;
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
  animation-delay: 0.7s;
}

.hero-logos-label {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}

.hero-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.client-logo {
  height: 32px;
  width: auto;
  filter: grayscale(1) opacity(0.55);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg-video  { animation: none !important; opacity: 0.6 !important; }
  .hero-blobs     { animation: none !important; opacity: 1 !important; }
  .hero-h1        { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-body      { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-cta-row   { animation: none !important; opacity: 1 !important; transform: none !important; }
  .hero-creds     { animation: none !important; opacity: 1 !important; transform: none !important; }
}

/* ═══════════════════════════════════════════════════
   [4] BENEFITS
═══════════════════════════════════════════════════ */
.benefits {
  margin-top: 0 !important;
  padding-top: 80px !important;
  padding-bottom: 240px;
  background: #ffffff;
  position: relative;
  z-index: 4;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 16px;
}

.benefit-card {
  background: var(--white);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: none;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.07),
              0 1px 4px rgba(0, 0, 0, 0.04);
  /* box-shadow hover only — transform nechá řídit reveal animaci */
  transition: box-shadow 0.25s ease;
}

/* Reveal animace benefit karet — pomalá a plynulá */
.benefit-card.reveal {
  transition: opacity 2.2s cubic-bezier(0.22, 1, 0.36, 1),
              transform 2.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.25s ease;
}

.benefit-card:hover {
  box-shadow: 0 4px 24px rgba(0,0,0,0.07),
              0 1px 4px rgba(0,0,0,0.04);
  transform: none;
}

.benefit-visual {
  width: 100%;
  height: 200px;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: #f5f5f0;
}

.benefit-card:nth-child(1) .benefit-visual { background: #fff8e1; }
.benefit-card:nth-child(2) .benefit-visual { background: #e8f5e9; }
.benefit-card:nth-child(3) .benefit-visual { background: #fce4ec; }
.benefit-card:nth-child(4) .benefit-visual { background: #e3f2fd; }

.benefit-visual video,
.benefit-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.benefit-icon {
  display: block;
  width: 192px;
  height: 192px;
  object-fit: contain;
  background: none;
  border-radius: 0;
  margin: 0 auto 20px;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.12));
}

.benefit-icon-img {
  display: block;
  width: 120px;
  height: auto;
  margin-bottom: 20px;
  border-radius: 12px;
}

.benefit-card-top {
  display: flex;
  justify-content: center;
  margin-bottom: 4px;
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 0;
}

.benefit-card p {
  font-size: 18px;
  line-height: 1.75;
  color: var(--body-color);
}

.benefit-highlight {
  display: inline;
  background: var(--yellow);
  color: var(--black);
  padding: 0 4px;
  border-radius: 3px;
}

/* ═══════════════════════════════════════════════════
   [5] PROCESS
═══════════════════════════════════════════════════ */
.process {
  padding: 140px 0;
  background: #ffffff;
}

.process-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Levý sloupec */
.process-left {
  position: sticky;
  top: 120px;
}

.process-title {
  font-family: 'Queering', sans-serif;
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.0;
  letter-spacing: -2px;
  text-transform: uppercase;
  color: #010E27;
  margin-bottom: 28px;
}

.process-intro {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 40px;
  max-width: 380px;
}

/* Pravý sloupec — kroky */
.process-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.process-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid #f0f0e8;
  position: relative;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.process-item:last-child {
  border-bottom: none;
}

.process-number {
  font-family: 'Queering', sans-serif;
  font-size: 56px;
  font-weight: 500;
  color: #010E27;
  line-height: 1;
  letter-spacing: -2px;
  background: var(--yellow);
  border-radius: 14px;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 6px 20px rgba(255, 214, 0, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.08),
    inset 0 2px 6px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(180, 140, 0, 0.3);
}

.process-item:hover .process-number {
  transform: translateY(-4px) scale(1.04);
  box-shadow:
    0 16px 36px rgba(255, 214, 0, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.1),
    inset 0 2px 6px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(180, 140, 0, 0.3);
}

.process-content h3 {
  font-size: 20px;
  font-weight: 700;
  color: #010E27;
  margin-bottom: 8px;
  line-height: 1.3;
}

.process-content p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .process-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .process-left {
    position: static;
  }

  .process-title {
    font-size: clamp(40px, 10vw, 72px);
    letter-spacing: -0.5px;
    line-height: 1.1;
  }
}

/* ═══════════════════════════════════════════════════
   [6] TESTIMONIAL
═══════════════════════════════════════════════════ */
.testimonial {
  padding: 20px 0;
  background: var(--yellow);
}

.testimonial-inner {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-inner::before {
  content: '\201C';
  font-family: 'Nunito Sans', sans-serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--pink);
  display: block;
  margin-bottom: 16px;
}

.testimonial-text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 300;
  line-height: 1.6;
  color: #010E27;
  margin-bottom: 20px;
}

.testimonial-text em {
  font-style: italic;
  font-weight: 600;
  color: var(--pink);
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.testimonial-name {
  font-family: 'Queering', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #010E27;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-company {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #010E27;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .testimonial {
    padding: 20px 0;
  }
  .testimonial-text {
    font-size: clamp(18px, 5vw, 22px);
  }
}

/* ═══════════════════════════════════════════════════
   [7] RESULTS — sticky scroll
═══════════════════════════════════════════════════ */
.results {
  position: relative;
  z-index: 1;
  height: 500vh;
  padding-top: 80px !important;
  padding-bottom: 100px !important;
  margin-top: 0;
  margin-bottom: 0;
  background: var(--white);
}

/* Results h2 always visible — sticky scroll means IntersectionObserver may not fire */
.results-header h2,
.results-header h2.reveal-left {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.results-sticky {
  position: sticky;
  top: 58px;
  height: calc(100vh - 58px);
  z-index: 5;
  display: flex;
  flex-direction: column;
  overflow: visible;
}

.results-slides {
  position: relative;
  flex: 1;
  overflow: visible;
}

.results-top {
  position: relative;
  z-index: 20;
  background: var(--white);
  padding: 40px max(60px, calc((100% - 1600px) / 2 + 60px)) 0;
  flex-shrink: 0;
}

.results-header {
  position: relative;
  z-index: 20;
  margin-bottom: 10px;
  text-align: center;
}

.results-header h2 {
  margin-bottom: 0 !important;
}

.results-nav {
  position: relative;
  z-index: 15;
  display: flex;
  justify-content: center;
  gap: 0;
  padding-bottom: 0;
  margin-bottom: 24px;
}

.results-nav-item {
  padding: 8px 20px;
  border-radius: 0;
  border: none;
  border-bottom: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  font-size: 18px;
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-family: 'Nunito Sans', sans-serif;
}

.results-nav-item.active {
  border-bottom-color: var(--yellow);
  color: #010E27;
}

.result-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  padding: 24px max(60px, calc((100% - 1600px) / 2 + 60px));
  gap: 0;
  background: var(--white);
  transition: opacity 0.5s ease;
}

.result-slide.active {
  opacity: 1;
  pointer-events: all;
  z-index: 2;
}

/* ── Left column ── */
.result-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 48px;
  gap: 0;
}

.result-logo {
  height: 32px;
  display: block;
  flex-shrink: 0;
  align-self: flex-start;
  margin-bottom: 20px;
}

.result-logo--f1 {
  height: 52px;
  margin-bottom: 28px;
}

.result-headline {
  font-family: 'Queering', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  line-height: 1.1;
  color: #010E27;
  margin: 0 0 16px 0;
  letter-spacing: -0.5px;
}

.result-metrics {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}

.result-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 0;
}

/* ── Right column — float scene ── */
.result-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

/* Scene wraps tightly around the video */
.result-float-scene {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Video */
.result-float-video {
  position: relative;
  height: min(460px, calc(100vh - 250px));
  width: auto;
  aspect-ratio: 9 / 16;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.2);
  will-change: auto;
}

.result-float-video--landscape {
  aspect-ratio: 16 / 9;
  height: auto;
  width: min(480px, 90%);
}

.result-float-video .result-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Floating category badge — vpravo nahoře, mírně přes horní okraj */
.result-float-tag {
  position: absolute;
  top: -14px;
  right: -24px;
  left: auto;
  background: #010E27;
  color: var(--yellow);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: 'Nunito Sans', sans-serif;
  white-space: nowrap;
  z-index: 20;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Floating quote bubble — vlevo, výrazně přes levý okraj videa */
.result-float-quote {
  position: absolute;
  top: 40%;
  left: -140px;
  right: auto;
  transform: translateY(-50%);
  background: var(--white);
  border: 1.5px solid #f0f0f0;
  border-radius: 16px;
  padding: 14px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black);
  max-width: 170px;
  line-height: 1.4;
  font-family: 'Nunito Sans', sans-serif;
  z-index: 20;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

/* Badge — přes levý okraj videa */
.result-float-badge {
  position: absolute;
  left: 20px;
  top: 55%;
  transform: translateY(-50%);
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
  z-index: 25;
}
.result-float-badge::before { display: none; }
.result-badge-img {
  width: 120px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.30)) drop-shadow(0 2px 6px rgba(0,0,0,0.18));
}

.result-float-quote::before {
  content: '"';
  color: #ED1D85;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}

/* Tlačítko — dominantní, vpravo dole, mírně přes spodní okraj */
.result-float-scene .result-expand-btn {
  position: absolute;
  bottom: -18px;
  right: -24px;
  left: auto;
  top: auto;
  margin-top: 0;
  white-space: nowrap;
  padding: 16px 32px;
  font-size: 16px;
  z-index: 20;
}

.result-float-scene .result-expand-btn:hover {
  transform: translateY(-4px) scale(1.02);
}

@keyframes resultFloat {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0px); }
}

/* Landscape — 16:9 */
.result-video-wrap--landscape {
  width: 100%;
  max-width: 560px;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
}

.result-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.result-metrics {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}

.result-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.result-metric + .result-metric {
  padding-left: 0;
  border-left: none;
}

.result-metric-value {
  font-family: 'Queering', sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  display: block;
  letter-spacing: 0px;
  color: #ED1D85;
}

.result-metric-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.result-expand-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 0;
  padding: 12px 22px;
  background: var(--yellow);
  border: none;
  border-radius: 14px;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  color: #010E27;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 6px 20px rgba(255, 214, 0, 0.55),
    0 2px 6px rgba(0, 0, 0, 0.08),
    inset 0 2px 6px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(180, 140, 0, 0.3);
}


.result-expand-btn:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 36px rgba(255, 214, 0, 0.55),
    0 4px 10px rgba(0, 0, 0, 0.1),
    inset 0 2px 6px rgba(255, 255, 255, 0.55),
    inset 0 -3px 8px rgba(180, 140, 0, 0.3);
}

.result-expand-btn:active {
  transform: translateY(1px) scale(0.99);
  box-shadow:
    0 3px 10px rgba(255, 214, 0, 0.4),
    0 1px 3px rgba(0, 0, 0, 0.08),
    inset 0 2px 8px rgba(180, 140, 0, 0.35),
    inset 0 -1px 4px rgba(255, 255, 255, 0.4);
}

/* ═══════════════════════════════════════════════════
   [7b] AVATAR SHOWCASE — phone + video mosaic
═══════════════════════════════════════════════════ */
.av-showcase {
  background: #010E27;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  display: block;
  position: relative;
  z-index: 2;
}

.av-showcase-header {
  text-align: center;
  padding: 0 20px 32px;
}

.av-showcase-header h2,
.av-showcase-header h2.reveal-left {
  color: #FDFDF8 !important;
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

.av-showcase-sub {
  color: rgba(255,255,255,0.65);
  font-size: 18px;
  margin-top: 12px;
}

/* 8-col mosaic + phone absolutely on top */
.av-mosaic {
  position: relative;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  padding: 0 10px;
  overflow: hidden;
  height: 80vh;
  min-height: 500px;
  max-height: 860px;
}

/* Dark overlay — phone stays dominant above */
.av-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 11, 0.58);
  z-index: 10;
  pointer-events: none;
}

.av-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow: hidden;
}

.av-tile {
  flex: 0 0 auto;
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  background: var(--black);
}

.av-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 1;
  transition: opacity 220ms ease;
}

/* Phone — absolutely centered on top of the grid */
.av-phone-col {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.av-phone {
  height: 88%;
  max-height: 740px;
  aspect-ratio: 9 / 19.5;
  background: #111;
  border-radius: 46px;
  border: 7px solid #2e2e2c;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.07),
    0 50px 140px rgba(0,0,0,0.9),
    0 0 0 12px rgba(0,0,0,0.4),
    0 0 80px rgba(255,224,13,0.06);
  z-index: 20;
  pointer-events: all;
}

.av-phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 26px;
  background: #111;
  border-radius: 0 0 18px 18px;
  z-index: 10;
}

.av-phone-screen {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 39px;
}

.av-phone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Avatar Showcase responsive ── */
@media (max-width: 768px) {
  .av-showcase { padding: 0 !important; }

  .av-mosaic {
    grid-template-columns: 1fr 1fr;
    height: 70vh;
    min-height: 380px;
    gap: 6px;
    padding: 0 6px;
  }

  /* Hide 2 cols on mobile — keep 2 visible */
  .av-col:nth-child(3),
  .av-col:nth-child(4) { display: none; }

  .av-phone {
    height: 82%;
    border-width: 5px;
    border-radius: 36px;
  }
  .av-phone-screen { border-radius: 31px; }
  .av-phone-notch { width: 60px; height: 20px; }
}

/* ── Video modal ────────────────────────────────── */
.video-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  max-width: 90vw;
  max-height: 90vh;
}

.video-modal-content video {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 16px;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: -48px;
  right: 0;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-modal-close:hover {
  background: rgba(255,255,255,0.25);
}

/* Video placeholder */
.video-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--black);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  position: relative;
  overflow: hidden;
  cursor: default;
}

.video-placeholder-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.video-play-btn {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-play-btn svg {
  width: 22px;
  height: 22px;
  fill: rgba(255,255,255,0.5);
  margin-left: 3px;
}

.video-placeholder-label {
  position: relative;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.70);
}

.video-placeholder-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 20px;
}

.result-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.result-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.result-metrics {
  display: flex;
  gap: 48px;
  margin-bottom: 32px;
}

.result-metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
}

.result-metric + .result-metric {
  padding-left: 0;
  border-left: none;
}

.result-metric-value {
  font-family: 'Queering', sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 1;
  display: block;
  letter-spacing: 0px;
  color: #ED1D85;
}

.result-metric-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

/* Single long metric value (e.g. "1 306 700 Kč") — scale down */
.result-metrics:has(.result-metric:only-child) .result-metric-value {
  font-size: clamp(44px, 5.5vw, 76px);
}

.result-card p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--body-color);
}

/* ═══════════════════════════════════════════════════
   TRUSTED-BY STRIP — žlutý pruh s logy
═══════════════════════════════════════════════════ */
.trusted-strip {
  background: var(--yellow);
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.trusted-strip-inner {
  display: flex;
  align-items: center;
  height: 88px;
  gap: 0;
}

.trusted-label {
  flex-shrink: 0;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #010E27;
  padding: 0 28px 0 32px;
  white-space: nowrap;
  border-right: 1.5px solid rgba(0,0,0,0.15);
}

.trusted-marquee {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, #010E27 4%, #010E27 96%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #010E27 4%, #010E27 96%, transparent 100%);
}

.trusted-track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: trustedScroll 22s linear infinite;
  padding: 0 28px;
}

.trusted-track img {
  flex-shrink: 0;
  height: 58px !important;
  width: auto !important;
  filter: grayscale(1) contrast(0.75);
  opacity: 0.70;
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.trusted-track img:hover {
  filter: none;
  opacity: 1;
}

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

/* ═══════════════════════════════════════════════════
   [8] USE CASES
═══════════════════════════════════════════════════ */
/* Sdílené pozadí pro use-cases + why */
.gradient-zone {
  background:
    radial-gradient(ellipse 60% 40% at 5% 15%,  rgba(255, 150, 200, 0.45) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 95% 10%,  rgba(255, 214, 0, 0.60)  0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 75%,  rgba(255, 200, 0, 0.45)  0%, transparent 50%),
    radial-gradient(ellipse 45% 40% at 15% 85%,  rgba(255, 150, 200, 0.35) 0%, transparent 50%),
    #FDFDF8;
  position: relative;
}

.use-cases {
  padding: 90px 0;
  background: var(--white);
  position: relative;
}

/* Counter na karty */
.use-cases-grid {
  counter-reset: uc;
}

/* gradient je nyní na .gradient-zone wrapperu */

.use-cases .container {
  position: relative;
  z-index: 1;
}

.use-cases .section-header h2 {
  max-width: 700px;
  margin-bottom: 80px;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px 40px;
}

/* Karta — ikona nahoře, text dole */
.use-case-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  background: transparent;
  border: none !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  /* Don't override reveal transition */
}

.use-case-card:hover {
  background: transparent;
  border-color: transparent;
}

/* Ikona — velká, floating animace */
.use-case-icon {
  width: 160px;
  height: 160px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.use-case-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Každá ikona trochu jiný timing */
.use-case-card:nth-child(2) .use-case-icon { animation-delay: 0.6s; }
.use-case-card:nth-child(3) .use-case-icon { animation-delay: 1.2s; }
.use-case-card:nth-child(4) .use-case-icon { animation-delay: 0.3s; }
.use-case-card:nth-child(5) .use-case-icon { animation-delay: 0.9s; }
.use-case-card:nth-child(6) .use-case-icon { animation-delay: 1.5s; }

/* Placeholder pokud ikona chybí */
.use-case-icon:not(:has(img[src])) {
  background: #f5f0e8;
  border-radius: 20px;
}

/* Text wrapper */
.use-case-text {
  display: flex;
  flex-direction: column;
}

.use-case-card {
  counter-increment: uc;
}

.use-case-card h3 {
  font-family: 'Queering', sans-serif;
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  color: #010E27;
  margin-bottom: 12px;
}

.use-case-card h3::before {
  display: none;
}

.use-case-card p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
}

/* CTA karta — růžová */
.use-case-card--cta {
  background: var(--pink) !important;
  border-radius: 24px !important;
  padding: 40px !important;
  counter-increment: none !important;
}

.use-case-card--cta::before { display: none !important; }

.use-case-card--cta h3 {
  color: #fff !important;
  font-size: clamp(36px, 4vw, 56px) !important;
}
.use-case-card--cta h3::before { display: none !important; }
.use-case-card--cta p {
  color: rgba(255,255,255,0.85) !important;
  font-size: 18px !important;
}
.use-case-card--cta .btn-primary {
  background: var(--yellow) !important;
  color: #010E27 !important;
  border-color: var(--yellow) !important;
  justify-content: center !important;
  text-align: center !important;
  width: 100% !important;
}

/* ═══════════════════════════════════════════════════
   [9] WHY COGNITO
═══════════════════════════════════════════════════ */
.why {
  padding: 0 0 90px;
  background: transparent;
  color: #010E27;
}

.why-header {
  margin-bottom: 80px;
}

.why-eyebrow {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  display: inline-block;
}

.why-header h2 {
  color: #010E27 !important;
  font-weight: 500 !important;
  text-align: center;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Why-grid reveal: fade in as unit (cross borders appear together) */
.why-grid.reveal {
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Why-item children start hidden, stagger in after grid */
.why-item .why-num,
.why-item h3,
.why-item p {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.why-item .why-num.visible,
.why-item h3.visible,
.why-item p.visible {
  opacity: 1;
  transform: none;
}

.why-item {
  padding: 32px 48px 32px 0;
  border-bottom: 2px solid var(--yellow);
  position: relative;
  display: block;
}

.why-item:nth-child(odd) {
  border-right: 2px solid var(--yellow);
}

.why-item:nth-child(even) {
  padding-left: 60px;
  padding-right: 0;
}

.why-item:nth-child(3),
.why-item:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
}

.why-item::before { display: none !important; }

.why-num {
  font-family: 'Queering', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 500;
  color: var(--yellow);
  letter-spacing: -0.01em;
  display: block;
  line-height: 1;
  margin-bottom: 16px;
}

.why-item h3 {
  font-family: 'Queering', sans-serif;
  font-size: clamp(32px, 2.8vw, 44px);
  font-weight: 500;
  text-transform: uppercase;
  color: #010E27;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  line-height: 1.1;
}

.why-item p {
  font-size: 18px;
  color: rgba(13,13,11,0.60);
  line-height: 1.65;
  max-width: 420px;
}

.why-header-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.why-header-top h2 {
  max-width: 100%;
}

.why-cognito-card {
  width: 100%;
  background: var(--yellow);
  border: none;
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  gap: 32px;
  box-shadow: 0 8px 32px rgba(255, 214, 0, 0.35), 0 2px 8px rgba(0,0,0,0.08);
}

.why-cognito-card-logo {
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.why-cognito-card p {
  font-size: 18px;
  color: #010E27;
  line-height: 1.6;
  margin: 0;
}

.why-cognito-card a {
  color: #010E27;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(13,13,11,0.4);
}

@media (max-width: 768px) {
  .why-cognito-card { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ═══════════════════════════════════════════════════
   [10] FOR WHOM
═══════════════════════════════════════════════════ */
.for-whom-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.for-whom-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--body-color);
}

.for-whom-body strong {
  color: var(--black);
  font-weight: 700;
}

.for-whom-tags {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.for-whom-tag {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  min-height: 44px;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  transition: border-color 200ms ease-out, background 200ms ease-out, transform 200ms ease-out;
}

.for-whom-tag:hover {
  border-color: var(--black);
  transform: translateX(4px);
}

.for-whom-tag[data-segment="eshopy"]:hover,
.for-whom-tag[data-segment="eshopy"].is-active {
  background: #FFE00D;
  border-color: #d4bb00;
}

.for-whom-tag[data-segment="b2b"]:hover,
.for-whom-tag[data-segment="b2b"].is-active {
  background: #010E27;
  border-color: #7acfee;
}

.for-whom-tag[data-segment="marketing"]:hover,
.for-whom-tag[data-segment="marketing"].is-active {
  background: #C8F7E2;
  border-color: #72e0aa;
}

.for-whom-tag-content h3 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--black);
  margin-bottom: 4px;
}

.for-whom-tag-content p {
  font-size: 16px;
  line-height: 1.65;
  color: var(--body-color);
}

/* ─── FOR-WHOM VISUAL ─────────────────────────────── */
.for-whom-left {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.for-whom-visual {
  background: #FFE00D;
  border-radius: 16px;
  padding: 32px;
  min-height: 164px;
  display: grid;
  align-items: stretch;
  overflow: hidden;
  position: relative;
  transition: background 320ms cubic-bezier(0.4, 0, 0.2, 1);
}

.for-whom-visual[data-active="eshopy"]   { background: #FFE00D; }
.for-whom-visual[data-active="b2b"]      { background: #010E27; }
.for-whom-visual[data-active="marketing"]{ background: #C8F7E2; }

/* All cards stack on same grid cell */
.fwv-card {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition: opacity 320ms cubic-bezier(0.4, 0, 0.2, 1),
              transform 320ms cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.fwv-card.is-active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.fwv-card.is-leaving {
  opacity: 0;
  transform: translateY(-6px) scale(1.01);
}

.fwv-stat {
  font-family: 'Queering', 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1;
  color: var(--black);
  letter-spacing: -0.02em;
}

.fwv-label {
  font-family: 'Queering', 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(18px, 2vw, 24px);
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 2px;
}

.fwv-sub {
  font-size: 16px;
  color: var(--black-a55);
  line-height: 1.5;
  margin-top: 16px;
}

/* Active tag styling — per-segment colours above handle background */
.for-whom-tag.is-active {
  border-color: var(--black);
}

@media (max-width: 768px) {
  .for-whom-visual { min-height: 140px; padding: 24px; }
  .fwv-stat { font-size: 48px; }
}


/* ─── QUALIFICATION ──────────────────────────────── */
.qualification-section {
  padding: 80px 0;
  background: var(--surface-warm);
}

.qualification {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 48px;
  align-items: center;
}

.qualification-heading {
  font-family: 'Queering', 'Nunito Sans', sans-serif;
  font-weight: 500;
  font-size: clamp(36px, 4vw, 60px);
  line-height: 1.0;
  text-transform: uppercase;
  color: var(--black);
  letter-spacing: -0.01em;
  margin: 0;
}

.qualification-sub {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 10px;
}

.qualification-body p {
  font-size: 18px;
  line-height: 1.65;
  color: var(--body-color);
}

.qualification-body p strong {
  color: var(--black);
  font-weight: 700;
}

.qualification-link {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ═══════════════════════════════════════════════════
   [11] CTA SECTION
═══════════════════════════════════════════════════ */
.cta-section {
  background: var(--yellow);
  padding: 100px 0 80px !important;
  margin-bottom: 0 !important;
  position: relative;
  overflow: hidden;
}

/* 2-column layout */
.cta-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: flex-start;
}

.cta-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}

.cta-section h2 {
  color: #010E27;
  margin-bottom: 0;
}

.cta-section p {
  color: rgba(13,13,11,0.75);
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

/* Tlačítka na žlutém pozadí */
.cta-btn-outline {
  background: transparent;
  color: #010E27;
  border: 2px solid rgba(13,13,11,0.30);
  border-radius: 100px;
  padding: 14px 28px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-btn-outline:hover {
  border-color: #010E27;
  background: rgba(13,13,11,0.06);
}

.cta-btn-submit {
  background: #010E27;
  color: var(--yellow);
  border: none;
  border-radius: 14px;
  padding: 16px 32px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.15),
    inset 0 2px 6px rgba(255, 255, 255, 0.08),
    inset 0 -3px 8px rgba(0, 0, 0, 0.25);
}
.cta-btn-submit:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 16px 36px rgba(0, 0, 0, 0.40),
    0 4px 12px rgba(0, 0, 0, 0.20),
    inset 0 2px 6px rgba(255, 255, 255, 0.08),
    inset 0 -3px 8px rgba(0, 0, 0, 0.25);
}

/* Formulář */
.cta-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cta-form-row--3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.cta-input {
  background: rgba(255,255,255,0.70);
  border: 1.5px solid rgba(13,13,11,0.12);
  border-radius: 14px;
  padding: 14px 18px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  color: #010E27;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
  box-sizing: border-box;
}
.cta-input::placeholder {
  color: rgba(13,13,11,0.40);
}
.cta-input:focus {
  border-color: #010E27;
  background: rgba(255,255,255,0.90);
}

.cta-textarea {
  resize: vertical;
  min-height: 110px;
}

.cta-input.is-invalid {
  border-color: #ED1D85;
  background: rgba(237,29,133,0.06);
}

.cta-form-disclaimer {
  margin: 2px 0 0;
  font-size: 11px;
  line-height: 1.55;
  color: rgba(1,14,39,0.50);
}

.cta-form-disclaimer a {
  color: rgba(1,14,39,0.65);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-form-disclaimer a:hover {
  color: #010E27;
}

/* Feedback banner pod formulářem — success / error */
.cta-form-feedback {
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  border-radius: 12px;
  font-family: 'Nunito Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  animation: cta-feedback-in 0.3s ease-out;
}

.cta-form-feedback[hidden] {
  display: none !important;
}

.cta-form-feedback--success {
  background-color: var(--yellow);
  color: var(--black);
  border: 2px solid var(--black);
  font-weight: 600;
}

.cta-form-feedback--error {
  background-color: #FDE8F2;
  color: var(--pink);
  border: 2px solid var(--pink);
  font-weight: 500;
}

@keyframes cta-feedback-in {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Legacy — ponech pro případ staré verze */
.cta-inner { display: none; }
.cta-buttons { display: none; }

@media (max-width: 768px) {
  .cta-layout { grid-template-columns: 1fr; gap: 32px; }
  .cta-form-row { grid-template-columns: 1fr; }
  .cta-form-row--3 { grid-template-columns: 1fr; }
  .cta-btn-submit { width: 100%; }
}

/* ═══════════════════════════════════════════════════
   [12] FOOTER
═══════════════════════════════════════════════════ */
.footer {
  padding: 100px 0 40px;
  margin-top: 0 !important;
  background: #010E27;
  border-top: none;
  color: #FDFDF8;
  display: block;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 64px;
  align-items: start;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 300px;
}

.footer-logo {
  filter: brightness(0) invert(1);
}

.footer-tagline {
  font-size: 16px;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

.footer-nav-col h4 {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-nav-col a {
  display: block;
  padding: 8px 0;
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: rgba(255,255,255,0.70);
  transition: color 150ms ease-out;
}

.footer-nav-col a:hover { color: #FDFDF8; }

/* Powered by Cognito */
.footer-powered {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 0;
  margin-bottom: 28px;
}

.footer-powered-label {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-powered-logo img {
  display: block;
  opacity: 0.85;
  transition: opacity 150ms ease;
}

/* ─── KONTAKT — billing info ─────────────────────── */
.footer-billing-info {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-billing-info p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

.footer-powered-logo:hover img { opacity: 1; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255,255,255,0.55);
}

.footer-legal span {
  color: rgba(255,255,255,0.25);
}

.footer-legal a {
  color: rgba(255,255,255,0.70);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 150ms ease;
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.80);
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 150ms ease-out, background 150ms ease-out;
}

.social-link svg {
  width: 16px;
  height: 16px;
  fill: rgba(255,255,255,0.50);
  transition: fill 150ms ease-out;
}

.social-link:hover {
  border-color: rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.08);
}

.social-link:hover svg { fill: #FDFDF8; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE — TABLET (1024px)
═══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .container { padding: 0 2.5vw; }

  section { padding: 80px 0 !important; }

  .process-flow { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-arrow { display: none; }

  .for-whom-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — MOBILE (768px)
═══════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .navbar .container { height: 64px; }

  section { padding: 56px 0 !important; }

  /* ── Logo mobile ─────────────────────────────── */
  .logo-img {
    height: 24px !important;
  }

  /* ── Hero mobile ──────────────────────────────── */
  .hero {
    position: relative;
    min-height: auto;
    overflow: hidden;
  }

  /* Credibility pills na mobilu */
  .hero-cred-pill {
    font-size: 12px;
    padding: 7px 12px;
  }

  .hero-cred-pill-icon {
    width: 14px;
    height: 14px;
  }

  /* Větší blobs na mobilu pro výraznější gradient */
  .hero-blob--pink {
    width: 90vw;
    height: 90vw;
    top: -15%;
    left: -20%;
    background: rgba(237, 29, 133, 0.38);
    filter: blur(60px);
  }
  .hero-blob--yellow {
    width: 100vw;
    height: 100vw;
    bottom: -20%;
    right: -20%;
    filter: blur(60px);
  }
  .hero-blob--accent {
    width: 80vw;
    height: 80vw;
    bottom: 10%;
    left: -10%;
    filter: blur(55px);
  }

  .hero-content {
    position: relative;
    z-index: 10;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 104px 20px 56px !important;
    text-align: center;
    background: radial-gradient(
      ellipse 90% 75% at 50% 40%,
      rgba(255,255,255,0.88) 0%,
      rgba(255,255,255,0.72) 30%,
      rgba(255,255,255,0.25) 60%,
      rgba(255,255,255,0.00) 100%
    );
  }

  .hero-glass {
    padding: 0 8px;
    max-width: 100%;
    width: 100%;
    text-align: center;
  }

  .hero-h1-wrap {
    padding: 0;
    margin-bottom: 16px;
  }

  .hero-h1 {
    font-size: clamp(56px, 16vw, 100px);
    letter-spacing: -1px;
    line-height: 1.0;
    margin-bottom: 20px;
    text-align: center;
  }

  .hero-body {
    font-size: 18px;
    margin-bottom: 28px;
    text-align: center;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-row .btn-secondary {
    display: none;
  }

  /* Loga klientů — zobrazit na mobilu */
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
    margin-top: 24px;
  }

  .hero-trust-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 14px;
  }

  .hero-trust-logos img {
    height: 28px !important;
    max-width: 100px !important;
    opacity: 0.65;
    filter: brightness(0);
  }

  .hero-trust-label {
    font-size: 15px;
    width: 100%;
    text-align: center;
  }

  .hero-cta-row .btn-primary {
    width: 100%;
    padding: 18px 24px;
    font-size: 15px;
    justify-content: center;
  }

  .hero-logos-row {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .client-logo {
    height: 24px !important;
  }

  .hero-logos-label {
    font-size: 15px;
  }

  .hero-logos {
    margin-top: 16px;
    padding: 0;
  }

  .hero-credibility {
    font-size: 15px;
    margin-bottom: 24px;
  }

  /* Nav */
  .nav-links,
  .nav-cta { display: none !important; }

  .hamburger { display: flex; }

  /* Typography */
  h2,
  section h2,
  .section-header h2 { font-size: clamp(36px, 10vw, 52px); letter-spacing: 0; }
  h3 { font-size: 20px; }

  /* Section header */
  .section-header { margin-bottom: 40px; }

  /* Benefits */
  .benefits-grid { grid-template-columns: 1fr !important; }
  .benefit-card { padding: 32px 24px; }

  /* Process */
  .process-flow { grid-template-columns: 1fr; gap: 40px; }
  .process-arrow {
    position: static;
    display: block;
    margin-top: 16px;
    transform: rotate(90deg);
  }
  .process-item:last-child .process-arrow { display: none; }

  /* ── Results mobile — horizontal swipe carousel ── */

  .results { height: auto !important; }

  .results-sticky {
    position: static !important;
    height: auto !important;
    display: block !important;
    overflow: visible !important;
  }

  .results-top { padding: 40px 20px 0; }
  .results-header { margin-bottom: 8px; }

  /* Nav pills scrollable */
  .results-nav {
    padding: 0;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin-bottom: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .results-nav::-webkit-scrollbar { display: none; }
  .results-nav-item { flex-shrink: 0; font-size: 15px; padding: 7px 14px; cursor: pointer; border-radius: 0; }

  /* ─── Horizontal scroll carousel ─── */
  .results-slides {
    position: static !important;
    display: flex !important;
    flex-direction: row !important;
    flex: none !important;         /* zruší flex:1 z base CSS */
    overflow-x: scroll !important;
    overflow-y: visible !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    width: 100% !important;
    height: auto !important;
  }
  .results-slides::-webkit-scrollbar { display: none; }

  /* Každý slide = 1 plná šířka */
  .result-slide {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    flex: 0 0 100% !important;
    min-width: 100% !important;      /* garantuje šířku i při overflow */
    width: 100% !important;
    height: auto !important;
    opacity: 1 !important;
    pointer-events: all !important;
    scroll-snap-align: start !important;
    padding: 28px 20px 52px !important;
    gap: 28px !important;
    transition: none !important;
    box-sizing: border-box !important;
  }

  /* 1. Content block */
  .result-left {
    order: 1;
    padding-right: 0;
    align-items: flex-start;
    text-align: left;
    justify-content: flex-start;
  }

  /* 2. Video area */
  .result-right {
    order: 2;
    overflow: visible;
    padding: 0;
  }

  /* Větší text */
  .result-logo { height: 30px; margin-bottom: 18px; }

  .result-headline {
    font-size: clamp(30px, 8.5vw, 44px);
    margin-bottom: 14px;
  }

  .result-metrics {
    gap: 28px;
    margin-bottom: 14px;
    justify-content: flex-start;
  }

  .result-metric-value { font-size: 68px; }
  .result-metric-label { font-size: 15px; }

  .result-desc {
    font-size: 16px;
    line-height: 1.65;
    max-width: 100%;
    margin-bottom: 0;
  }

  /* Float scene — full width, column (badge+video, pak button) */
  .result-float-scene {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    position: relative !important;
    padding-top: 18px; /* prostor pro badge */
  }

  /* Video — 60 % šířky slidu */
  .result-float-video {
    order: 1;
    width: 60%;
    max-width: 220px;
    height: auto !important;
    animation: none !important;
  }

  .result-float-video--landscape {
    width: min(88vw, 360px) !important;
    max-width: none !important;
    height: auto !important;
  }

  /* Badge — top-right relativně k float-scene */
  .result-float-tag {
    position: absolute;
    top: 4px;
    right: 6%;
    left: auto;
    font-size: 15px;
    padding: 5px 10px;
    animation: none !important;
    z-index: 10;
  }

  /* Quote — left-center, lehký zásah přes video */
  .result-float-quote {
    display: block !important;
    position: absolute;
    top: 45%;
    left: 2%;
    right: auto;
    transform: translateY(-50%);
    max-width: 120px;
    font-size: 15px;
    padding: 10px 12px;
    line-height: 1.35;
    animation: none !important;
    z-index: 10;
  }

  /* Tlačítko — statické, POD videem, plná šířka */
  .result-float-scene .result-expand-btn {
    order: 2;
    position: static !important;
    bottom: auto !important;
    right: auto !important;
    top: auto !important;
    left: auto !important;
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
    font-size: 16px;
    border-radius: 16px;
    animation: none !important;
    margin-top: 24px;
  }

  /* Use cases */
  .use-cases { padding: 80px 0; }
  .use-cases .section-header h2 { margin-bottom: 48px; }
  .use-cases-grid { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .use-case-icon { width: 110px; height: 110px; animation: none; }
  .use-case-card h3 { font-size: 28px; }

  /* Why */
  .why-grid { grid-template-columns: 1fr; }
  .why-item {
    padding: 40px 0 !important;
    border-right: none !important;
    border-bottom: 2px solid var(--yellow) !important;
  }
  .why-item:last-child { border-bottom: none !important; padding-bottom: 0 !important; }
  .why-item h3 { font-size: 24px !important; }
  .why-num { font-size: 44px !important; }
  .why-item p { font-size: 16px; }
  .why-cognito { flex-direction: column; align-items: flex-start; gap: 16px; }

  /* For whom */
  .for-whom-layout { grid-template-columns: 1fr; gap: 40px; }

  /* Qualification */
  .qualification-section { padding: 48px 0; }
  .qualification { grid-template-columns: 1fr; gap: 20px; }

  /* Process — tělo textu min 16px */
  .process-content p { font-size: 16px; }

  /* Benefit card — tělo textu min 16px */
  .benefit-card p { font-size: 16px; }

  /* CTA */
  .cta-section { padding: 72px 0 60px !important; }
  .cta-section p { font-size: 16px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; justify-content: center; max-width: 320px; }

  /* Use case card CTA button — plná šířka na mobilu */
  .use-case-card--cta .btn-primary { width: 100%; justify-content: center; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 32px;
  }
  .footer-brand { max-width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (480px)
═══════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-cta-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .result-metrics { gap: 20px; }
  .result-metric-value { font-size: 56px; }
  .result-headline { font-size: clamp(28px, 8vw, 38px); }

  .result-float-video {
    width: 58%;
    max-width: 200px;
    height: auto;
  }

  .result-float-tag { right: 4%; }
  .result-float-quote { left: 1%; max-width: 108px; font-size: 15px; }

  .for-whom-tag { padding: 18px; }

  /* Use cases — single column na malých mobilech */
  .use-cases-grid { grid-template-columns: 1fr; }
}

/* ─── SCREEN READER ONLY ─────────────────────────── */
.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;
}

/* ─── SKIP NAV ───────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--yellow);
  color: var(--black);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 20px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  border: 2px solid var(--black);
}
/* ─── FAQ SECTION ───────────────────────────────── */
.faq-section {
  padding: 0 0 80px;
  background: transparent;
  position: relative;
}

.faq-header {
  text-align: center;
  margin-bottom: 32px;
}

.faq-header h2 {
  font-size: clamp(56px, 6.5vw, 96px);
  font-weight: 500;
  line-height: 1.1;
  color: var(--body-color);
  margin-bottom: 0;
}

.faq-accordion {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  border-color: var(--black-a55);
  box-shadow: 0 2px 8px rgba(1, 14, 39, 0.05);
}

.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  font-size: 18px;
  font-weight: 600;
  color: var(--body-color);
  text-align: left;
  transition: color 0.25s ease;
}

.faq-trigger:hover {
  color: var(--pink);
}

.faq-question {
  flex: 1;
}

.faq-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-icon::after {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: inherit;
}

.faq-trigger[aria-expanded="true"] .faq-icon::after {
  transform: rotate(135deg);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  animation: slideDown 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-answer p {
  margin: 0;
}

.faq-answer p + p {
  margin-top: 12px;
}

.faq-answer a {
  color: var(--pink);
  font-weight: 600;
  transition: opacity 0.25s ease;
}

.faq-answer a:hover {
  opacity: 0.8;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive FAQ */
@media (max-width: 640px) {
  .faq-section {
    padding: 0 0 60px;
  }

  .faq-header {
    margin-bottom: 24px;
  }

  .faq-trigger {
    padding: 16px 20px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 0 20px 16px;
    font-size: 14px;
  }
}

.skip-link:focus { top: 0; }

/* ─── FOCUS VISIBLE ──────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 3px;
}
.hamburger:focus-visible {
  outline: 2px solid var(--black);
  outline-offset: 4px;
  border-radius: 4px;
}

/* ─── PREFERS REDUCED MOTION ─────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── LARGE SCREENS (1400px+) ───────────────────── */
@media (min-width: 1400px) {
  .hero-trust-logos img {
    height: 36px;
    max-width: 110px;
    width: auto;
  }

  .hero-trust-label {
    font-size: 13px;
  }
}

/* ─── TOUCH DEVICE CURSOR RESET ─────────────────── */
/* cursor: none hides the native cursor — restore it
   on devices without a fine pointer (touchscreens)  */
@media (hover: none), (pointer: coarse) {
  body,
  a, button, [role="button"], label, .for-whom-tag {
    cursor: pointer;
  }
}
