/* =====================================================
   DESIGN TOKENS — 1:1 Přesně z Figmy
   ===================================================== */
:root {
  --bg-base:        #ffffff;
  --bg-soft:        #f5faf7;
  --bg-dark:        #06110b;
  --bg-tint:        #e3fbee;
  --accent:         #0dce67;
  --accent-ink:     #086b39;
  --accent-bright:  #4fee95;
  --text-primary:   #08120c;
  --text-secondary: #4e5a53;
  --text-muted:     #838f88;
  --text-inverse:   #ffffff;
  --text-inv-soft:  #a9bdb1;
  --text-on-accent: #04140a;
  --line-hairline:  #e4ebe7;
  --line-strong:    #c7d4cc;
  --signal-bad:     #e04a3c;

  --r-sm:   7px;
  --r-md:   8px;
  --r-lg:   12px;
  --r-xl:   20px;
  --r-2xl:  22px;
  --r-3xl:  26px;
  --r-4xl:  28px;
  --r-pill: 999px;
}

/* =====================================================
   RESET + BASE TYPOGRAPHY
   ===================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-base);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  border: none;
  background: none;
  cursor: pointer;
}
select, input {
  font-family: inherit;
}

/* =====================================================
   SHARED CONTAINER & GRID PATTERN
   ===================================================== */
.section-container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.grid-pattern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    repeating-linear-gradient(90deg,  rgba(13,206,103,0.10) 0px, rgba(13,206,103,0.10) 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(180deg, rgba(13,206,103,0.10) 0px, rgba(13,206,103,0.10) 1px, transparent 1px, transparent 120px);
  z-index: 0;
}
.grid-pattern-dark {
  background-image:
    repeating-linear-gradient(90deg,  rgba(13,206,103,0.14) 0px, rgba(13,206,103,0.14) 1px, transparent 1px, transparent 120px),
    repeating-linear-gradient(180deg, rgba(13,206,103,0.14) 0px, rgba(13,206,103,0.14) 1px, transparent 1px, transparent 120px);
}

/* =====================================================
   HEADLINES & BADGES (1:1 with Figma)
   ===================================================== */
.headline-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.headline-plain {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -1.4px;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
}
.headline-highlight {
  background: var(--accent);
  border-radius: 10px;
  padding: 4px 16px 8px;
  display: inline-flex;
}
.headline-highlight span {
  font-size: 64px;
  font-weight: 700;
  line-height: 72px;
  letter-spacing: -1.4px;
  color: var(--text-on-accent);
  white-space: nowrap;
}

/* Section headline (Display/L) */
.section-head {
  width: 100%;
  margin-bottom: 0;
}
.section-head.center {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-head.left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.headline-block-sm {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section-head.left .headline-block-sm {
  align-items: flex-start;
}
.hl-plain-sm {
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.8px;
  color: var(--text-primary);
  text-align: center;
  white-space: nowrap;
}
.section-head.left .hl-plain-sm {
  text-align: left;
}
.hl-highlight-sm {
  background: var(--accent);
  border-radius: 8px;
  padding: 3px 13px 6px;
  display: inline-flex;
  align-self: center;
}
.section-head.left .hl-highlight-sm {
  align-self: flex-start;
}
.hl-highlight-sm span {
  font-size: 42px;
  font-weight: 700;
  line-height: 50px;
  letter-spacing: -0.8px;
  color: var(--text-on-accent);
  white-space: nowrap;
}
.hl-white {
  color: var(--text-inverse);
}

/* =====================================================
   BUTTONS (1:1 Figma tokens)
   ===================================================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  background: var(--accent);
  border-radius: var(--r-pill);
  padding: 10px 10px 10px 24px;
  box-shadow: 0px 12px 30px -4px rgba(13,206,103,0.42);
  cursor: pointer;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.2s ease,
              filter 0.2s ease;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.28) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: none;
  pointer-events: none;
}
.btn-primary:hover::before {
  left: 100%;
  transition: left 0.65s ease-in-out;
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.025);
  background: #11e573;
  box-shadow: 0px 20px 44px -4px rgba(13, 206, 103, 0.62),
              0px 0px 30px rgba(13, 206, 103, 0.4);
}
.btn-primary:active {
  transform: translateY(-1px) scale(0.99);
  box-shadow: 0px 10px 24px -4px rgba(13, 206, 103, 0.5);
}
.btn-primary .btn-text {
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: var(--text-on-accent);
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
.btn-primary .btn-arrow {
  width: 38px;
  height: 38px;
  border-radius: var(--r-pill);
  background: #04140b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  color: var(--accent);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.25s ease,
              color 0.25s ease;
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px) scale(1.06);
  background: #000000;
  color: #11e573;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  background: var(--bg-base);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-pill);
  padding: 18px 28px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: var(--text-primary);
  white-space: nowrap;
  transition: border-color 0.15s, transform 0.15s;
}
.btn-ghost:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* =====================================================
   00 · HERO
   ===================================================== */
.hero {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 112px 24px 96px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.grid-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.75) 55%,
    #ffffff 100%);
  pointer-events: none;
  z-index: 0;
}
.hero-glow {
  position: absolute;
  width: 1500px;
  height: 760px;
  left: 50%;
  transform: translateX(-50%);
  top: -330px;
  pointer-events: none;
  z-index: 0;
}
.hero-glow img {
  width: 100%;
  height: 100%;
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Video Block */
.video-block {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 64px;
  width: 100%;
}
.video-plinth {
  background: linear-gradient(156.86deg, rgb(143,243,187) 0%, rgb(13,206,103) 39.286%, rgb(5,110,56) 71.429%);
  border-radius: 30px;
  padding: 9px;
  box-shadow: 0px 26px 70px -16px rgba(7,146,74,0.3);
  max-width: 1018px;
  width: 100%;
}
.video-inner {
  background: #040c07;
  border-radius: 22px;
  width: 1000px;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.hero-video-player {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 12, 7, 0.22);
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s ease;
  z-index: 5;
  cursor: pointer;
}

.video-play-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.hero-play-button {
  position: relative;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-play-button:hover {
  transform: scale(1.12);
}

.play-glow-effect {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13, 206, 103, 0.55) 0%, rgba(13, 206, 103, 0) 70%);
  animation: play-pulse 2.4s infinite ease-in-out;
  pointer-events: none;
}

@keyframes play-pulse {
  0% {
    transform: scale(0.88);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.28);
    opacity: 0.95;
  }
  100% {
    transform: scale(0.88);
    opacity: 0.5;
  }
}

.play-icon-holder {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: linear-gradient(145deg, #18f07c 0%, #0dce67 45%, #086b39 100%);
  box-shadow: 
    0 14px 38px -4px rgba(13, 206, 103, 0.65),
    0 0 0 2px rgba(255, 255, 255, 0.3) inset,
    0 20px 40px rgba(0, 0, 0, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hero-play-button:hover .play-icon-holder {
  box-shadow: 
    0 18px 48px -2px rgba(13, 206, 103, 0.85),
    0 0 0 2.5px rgba(255, 255, 255, 0.45) inset,
    0 24px 50px rgba(0, 0, 0, 0.85);
}

.play-arrow {
  width: 38px;
  height: 38px;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
  transition: transform 0.2s ease;
}

.hero-play-button:hover .play-arrow {
  transform: scale(1.08);
}

/* =====================================================
   01 · CO Z TOHO MÁŠ
   ===================================================== */
.co-z-toho {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.tri-body-container {
  width: 100%;
  border-bottom: 1px solid var(--line-hairline);
  padding: 0 24px;
}
.tri-body {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 42px 0;
}
.bod {
  display: flex;
  align-items: center;
  gap: 16px;
}
.bod p {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--text-primary);
  width: 258px;
}
.icon-nabory {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  flex-shrink: 0;
}
.icon-nabory .bar {
  background: var(--accent-ink);
  border-radius: 4.5px;
  width: 9px;
}
.icon-nabory .bar-s { height: 16px; }
.icon-nabory .bar-m { height: 26px; }
.icon-nabory .bar-l { height: 38px; }

.icon-44 {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.icon-44 img {
  width: 100%;
  height: 100%;
}

.cta-area {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding: 62px 24px 96px;
}
.cta-row {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cta-note {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-muted);
  white-space: nowrap;
}

/* =====================================================
   02 · CO ZÍSKÁŠ
   ===================================================== */
.co-ziskas {
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 124px 24px;
  width: 100%;
}
.benefity {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 76px;
  width: 100%;
}
.benefit-card {
  background: var(--bg-base);
  border: 1px solid var(--line-hairline);
  border-radius: 26px;
  padding: 58px 36px 48px;
  width: 357px;
  height: 387px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0px 14px 38px -10px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}
.benefit-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 220px;
  pointer-events: none;
  background: radial-gradient(ellipse 95% 75% at 50% -5%, rgba(13, 206, 103, 0.48) 0%, rgba(13, 206, 103, 0.22) 42%, rgba(13, 206, 103, 0.04) 75%, rgba(255, 255, 255, 0) 100%);
  border-top-left-radius: 26px;
  border-top-right-radius: 26px;
  z-index: 0;
}
.icon-nabory-lg,
.icon-50,
.sp26,
.rule,
.sp22,
.benefit-title,
.sp14,
.benefit-body {
  position: relative;
  z-index: 1;
}
.icon-nabory-lg {
  gap: 9px;
}
.icon-nabory-lg .bar {
  border-radius: 5.5px;
  width: 11px;
}
.icon-nabory-lg .bar-s-lg { height: 20px; }
.icon-nabory-lg .bar-m-lg { height: 32px; }
.icon-nabory-lg .bar-l-lg { height: 46px; }

.icon-50 {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}
.icon-50 img {
  width: 100%;
  height: 100%;
}
.sp26 { height: 26px; }
.sp22 { height: 22px; }
.sp14 { height: 14px; }
.rule {
  background: var(--accent-ink);
  height: 3px;
  border-radius: 2px;
  width: 40px;
  flex-shrink: 0;
}
.benefit-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
  text-align: center;
}
.benefit-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-secondary);
  text-align: center;
}

/* =====================================================
   03 · TVRDÁ REALITA
   ===================================================== */
.tvrda-realita {
  background: var(--bg-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
}
.dark-glow {
  position: absolute;
  width: 1300px;
  height: 700px;
  left: 50%;
  transform: translateX(-50%);
  top: -260px;
  pointer-events: none;
  z-index: 0;
}
.dark-glow img {
  width: 100%;
  height: 100%;
}
.reasons {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 76px;
  width: 100%;
}
.reason-card {
  background: rgba(6, 17, 11, 0.5);
  border: 1px solid rgba(13, 206, 103, 0.2);
  border-radius: 24px;
  padding: 38px 34px;
  width: 360px;
  height: 330px;
  min-height: 330px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(6px);
}
.reason-num {
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -1.4px;
  color: var(--accent);
  margin-bottom: 14px;
}
.reason-title {
  font-size: 19px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.2px;
  color: var(--text-inverse);
  margin-bottom: 14px;
}
.reason-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-inv-soft);
}

/* =====================================================
   04 · ŘEŠENÍ (Pillars 1:1)
   ===================================================== */
.reseni {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.pillars {
  display: flex;
  flex-direction: column;
  gap: 100px;
  padding-top: 80px;
  width: 100%;
}
.pillar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 80px;
}
.pillar-text {
  width: 540px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pillar-num {
  display: flex;
  align-items: center;
  gap: 9px;
}
.badge {
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.4px;
  padding: 5px 11px;
  border-radius: var(--r-sm);
  display: inline-flex;
}
.cast {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.4px;
  color: var(--accent-ink);
}
.pillar-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.4px;
  color: var(--text-primary);
}
.pillar-body {
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  color: var(--text-secondary);
}
.deliverables {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 6px;
}
.deliverables li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-primary);
}
.check-pill {
  width: 22px;
  height: 22px;
  border-radius: var(--r-pill);
  background: var(--bg-tint);
  color: var(--accent-ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 600;
  flex-shrink: 0;
}

/* Pillar 03 Kampaně mockup (Meta Ads Manager) */
.pillar-img-kampane {
  width: 500px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0px 20px 48px -8px rgba(0, 0, 0, 0.12),
              0px 0px 0px 1px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  background: #ffffff;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}
.pillar-img-kampane:hover {
  transform: translateY(-4px);
  box-shadow: 0px 28px 58px -8px rgba(0, 0, 0, 0.18),
              0px 0px 0px 1px rgba(13, 206, 103, 0.35);
}
.pillar-img-kampane img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Pillar 02 MacBook mockup */
.pillar-img-macbook {
  width: 500px;
  height: 302px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-img-macbook img {
  width: 500px;
  height: 302px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.14));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-img-macbook img:hover,
.pillar-img-macbook:hover img {
  transform: translateY(-4px) scale(1.02);
}

/* Pillar 01 Phone mockup (Osobní značka) */
.pillar-img-phone {
  width: 500px;
  height: 420px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pillar-img-phone img {
  max-width: 290px;
  max-height: 420px;
  width: auto;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.14));
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar-img-phone img:hover,
.pillar-img-phone:hover img {
  transform: translateY(-4px) scale(1.02);
}

/* =====================================================
   05 · PŘED / PO
   ===================================================== */
.pred-po {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.compare {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 68px;
  width: 100%;
}
.compare-col {
  width: 546px;
  border-radius: 24px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
}
.compare-bad {
  background: var(--bg-base);
  border: 1px solid rgba(224, 74, 60, 0.4);
}
.compare-good {
  background: var(--bg-tint);
  border: 2px solid var(--accent);
}
.col-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.chip {
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.chip-bad  { background: #fee2e2; color: var(--signal-bad); }
.chip-good { background: var(--accent); color: var(--text-on-accent); }

.col-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.col-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.compare-list {
  display: flex;
  flex-direction: column;
}
.compare-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-hairline);
}
.compare-list li:last-child {
  border-bottom: none;
}
.compare-list-bad .dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}
.compare-list-good .dot {
  width: 7px;
  height: 7px;
  flex-shrink: 0;
}

/* =====================================================
   06 · JAK TO FUNGUJE
   ===================================================== */
.jak-to-funguje {
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 80px;
  position: relative;
  width: 100%;
}
.connector-line {
  position: absolute;
  top: 105px;
  left: 26px;
  right: 26px;
  height: 2px;
  background: var(--line-hairline);
  z-index: 0;
}
.step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: 259px;
  position: relative;
  z-index: 1;
}
.step-circle {
  width: 52px;
  height: 52px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text-on-accent);
  font-size: 19px;
  font-weight: 600;
  line-height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-txt {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.4px;
  color: var(--accent-ink);
}
.step-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.step-body {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-secondary);
}

/* =====================================================
   07 · KDO TĚ PROVEDE (S KÝM BUDEŠ MLUVIT)
   ===================================================== */
.kdo-te-provede {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.lide {
  display: flex;
  gap: 40px;
  justify-content: center;
  padding-top: 76px;
  width: 100%;
}
.osoba {
  position: relative;
  width: 540px;
  height: 706px;
  flex-shrink: 0;
}
.foto-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 540px;
  height: 580px;
  background: var(--bg-tint);
  border: 1px solid var(--accent);
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.foto-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 14px;
  letter-spacing: 1.4px;
  color: var(--accent-ink);
}
.info-card {
  position: absolute;
  left: 110px;
  top: 534px;
  width: 456px;
  background: var(--bg-base);
  border: 1px solid var(--line-hairline);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0px 14px 36px -8px rgba(0,0,0,0.13);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.osoba-name {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.osoba-role {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-muted);
}
.osoba-bio {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-secondary);
}

/* =====================================================
   08 · VÝSLEDKY
   ===================================================== */
.vysledky {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 0 72px;
  width: 100%;
}
.stat {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.stat-border {
  border-left: 1px solid var(--line-hairline);
  padding-left: 48px;
}
.stat-num {
  font-size: 46px;
  font-weight: 700;
  line-height: 54px;
  letter-spacing: -1.4px;
  color: var(--accent-ink);
}
.stat-label {
  font-size: 17px;
  font-weight: 400;
  line-height: 27px;
  color: var(--text-secondary);
  margin-top: 6px;
}

/* Featured Case Study */
.featured-case {
  background: var(--bg-soft);
  border-radius: 28px;
  padding: 48px 56px 48px 48px;
  display: flex;
  align-items: center;
  gap: 56px;
  width: 100%;
}
.case-photo {
  width: 300px;
  height: 340px;
  flex-shrink: 0;
  border-radius: 22px;
  overflow: hidden;
}
.case-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.case-quote {
  display: flex;
  flex-direction: column;
  gap: 22px;
  flex: 1;
}
.case-stars {
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--accent-ink);
}
.case-text {
  font-size: 32px;
  font-weight: 600;
  line-height: 42px;
  letter-spacing: -0.4px;
  color: var(--text-primary);
}
.case-person {
  display: flex;
  align-items: center;
}
.case-names {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.case-name {
  font-size: 19px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.2px;
  color: var(--text-primary);
}
.case-brand {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-muted);
}

/* =====================================================
   09 · REFERENCE
   ===================================================== */
.reference {
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.quotes {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 70px;
  width: 100%;
}
.quote-card {
  background: var(--bg-base);
  border: 1px solid var(--line-hairline);
  border-radius: 24px;
  padding: 34px 32px;
  width: 357px;
  height: 268px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0px 10px 30px rgba(0,0,0,0.04);
}
.quote-stars {
  font-size: 19px;
  letter-spacing: 2px;
  color: var(--accent-ink);
}
.quote-text {
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-secondary);
}
.quote-person {
  display: flex;
  align-items: center;
  gap: 12px;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-pill);
  background: #dcfce7;
  flex-shrink: 0;
}
.quote-names {
  display: flex;
  flex-direction: column;
}
.quote-name {
  font-size: 15px;
  font-weight: 600;
  line-height: 24px;
  color: var(--text-primary);
}
.quote-company {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-muted);
}

/* =====================================================
   10 · PRO KOHO TO JE
   ===================================================== */
.pro-koho {
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.fit-grid {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: center;
  padding-top: 70px;
  width: 100%;
}
.fit-col {
  width: 546px;
  border-radius: 24px;
  padding: 38px 36px;
  display: flex;
  flex-direction: column;
}
.fit-yes {
  background: var(--bg-tint);
  border: 2px solid var(--accent);
}
.fit-no {
  background: var(--bg-soft);
  border: 1px solid var(--line-hairline);
}
.fit-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}
.fit-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.fit-list {
  display: flex;
  flex-direction: column;
}
.fit-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-primary);
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.fit-list li:last-child {
  border-bottom: none;
}
.bullet-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.bullet-green {
  background: var(--accent-ink);
}
.bullet-red {
  background: var(--signal-bad);
}

/* =====================================================
   11 · FAQ
   ===================================================== */
.faq {
  background: var(--bg-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 120px 24px;
  width: 100%;
}
.faq-list {
  width: 100%;
  max-width: 860px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--line-hairline);
  padding: 24px 0;
  transition: border-color 0.2s ease;
}
.faq-item:first-child {
  border-top: 1px solid var(--line-hairline);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-q {
  font-size: 19px;
  font-weight: 600;
  line-height: 27px;
  letter-spacing: -0.2px;
  color: var(--text-primary);
  transition: color 0.2s ease;
}
.faq-item summary:hover .faq-q {
  color: var(--accent-ink);
}
.faq-toggle {
  width: 34px;
  height: 34px;
  border-radius: var(--r-pill);
  border: 1px solid var(--line-hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.3s ease;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background-color: var(--text-muted);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              background-color 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.25s ease;
}
/* Horizontal bar */
.faq-toggle::before {
  width: 13px;
  height: 2px;
}
/* Vertical bar */
.faq-toggle::after {
  width: 2px;
  height: 13px;
}

.faq-item summary:hover .faq-toggle {
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(13, 206, 103, 0.2);
}
.faq-item summary:hover .faq-toggle::before,
.faq-item summary:hover .faq-toggle::after {
  background-color: var(--accent);
}

.faq-item[open] .faq-toggle {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.06);
  box-shadow: 0 2px 10px rgba(13, 206, 103, 0.35);
}
.faq-item[open] .faq-toggle::before {
  background-color: #ffffff;
  transform: rotate(0deg);
}
.faq-item[open] .faq-toggle::after {
  background-color: #ffffff;
  transform: rotate(90deg) scale(0);
  opacity: 0;
}
.faq-content {
  overflow: hidden;
}
.faq-a {
  padding-top: 16px;
  font-size: 15px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-secondary);
  max-width: 780px;
}

/* =====================================================
   12 · FINÁLNÍ CTA (Form 1:1)
   ===================================================== */
.final-cta {
  background: var(--bg-dark);
  padding: 110px 24px;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta-glow {
  position: absolute;
  width: 1200px;
  height: 780px;
  left: 50%;
  transform: translateX(-50%);
  top: -160px;
  pointer-events: none;
  z-index: 0;
}
.cta-glow img {
  width: 100%;
  height: 100%;
}
.cta-cols {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 72px;
  max-width: 1120px;
  width: 100%;
  position: relative;
  z-index: 1;
}
.cta-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}
.cta-headline {
  align-items: flex-start;
}
.cta-headline .hl-plain-sm {
  text-align: left;
}
.cta-headline .hl-highlight-sm {
  align-self: flex-start;
}
.cta-desc {
  font-size: 17px;
  font-weight: 400;
  line-height: 29px;
  color: var(--text-inv-soft);
}
.cta-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 8px;
}
.cta-trust li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-inverse);
}
.trust-check {
  width: 24px;
  height: 24px;
  border-radius: var(--r-pill);
  background: var(--accent);
  color: var(--text-on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.cta-contact {
  font-size: 17px;
  line-height: 29px;
  color: var(--text-muted);
}
.cta-contact strong {
  color: var(--text-inverse);
}

/* Right Form Card (1:1 with node 58:927) */
.cta-right {
  flex-shrink: 0;
}
.form-card {
  background: var(--bg-base);
  border-radius: 28px;
  padding: 40px 40px 36px;
  box-shadow: 0px 24px 70px -14px rgba(0,0,0,0.45);
  width: 580px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.form-title {
  font-size: 24px;
  font-weight: 600;
  line-height: 33px;
  letter-spacing: -0.3px;
  color: var(--text-primary);
}
.form-sub {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-muted);
}
#contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
.form-row {
  display: flex;
  gap: 16px;
  width: 100%;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
  min-width: 0;
}
.field.full-width {
  flex: none;
  width: 100%;
}
.field label {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-secondary);
}
.field input,
.field select {
  width: 100%;
  background: var(--bg-soft);
  border: 1px solid var(--line-hairline);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  line-height: 26px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.field input::placeholder {
  color: var(--text-muted);
}
.field input:focus,
.field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13,206,103,0.15);
}
.select-wrapper {
  position: relative;
  width: 100%;
}
.select-wrapper select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23838F88' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.btn-wrap {
  padding-top: 8px;
  width: 100%;
}
.btn-submit {
  width: 100%;
  height: 60px;
  background: var(--accent);
  border-radius: var(--r-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  letter-spacing: 0.3px;
  color: var(--text-on-accent);
  cursor: pointer;
  box-shadow: 0px 12px 30px -4px rgba(13,206,103,0.42);
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0px 16px 36px -4px rgba(13,206,103,0.5);
}
.btn-arrow-inline {
  font-size: 18px;
  line-height: 1;
}
.form-legal {
  font-size: 13px;
  font-weight: 400;
  line-height: 21px;
  color: var(--text-muted);
  text-align: center;
  width: 100%;
}

/* =====================================================
   SITE FOOTER
   ===================================================== */
.site-footer {
  background: #040c07;
  border-top: 1px solid rgba(13, 206, 103, 0.12);
  padding: 36px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  padding-left: max(24px, calc((100% - 1120px) / 2));
  padding-right: max(24px, calc((100% - 1120px) / 2));
}
.footer-brand {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-inverse);
}
.footer-copy {
  font-size: 13px;
  color: var(--text-muted);
}

/* =====================================================
   SCROLL REVEAL ANIMATIONS
   ===================================================== */
.scroll-reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.75s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.scroll-reveal.is-revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for sibling cards */
.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }
.stagger-5 { transition-delay: 0.40s; }

/* =====================================================
   INTERACTIVE CARDS — CORNER BEND & 3D TILT
   ===================================================== */
.corner-bend-card {
  position: relative;
  transform-style: preserve-3d;
  will-change: transform, border-radius, box-shadow;
  transition: transform 0.08s cubic-bezier(0.2, 0, 0.38, 0.9),
              border-radius 0.12s ease,
              box-shadow 0.15s ease;
}

/* Dynamic specular sheen overlay */
.corner-bend-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(
    circle 320px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(255, 255, 255, 0.22),
    transparent 75%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 4;
}

.corner-bend-card:hover::after {
  opacity: 1;
}

.reason-card.corner-bend-card::after {
  background: radial-gradient(
    circle 320px at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(13, 206, 103, 0.15),
    transparent 75%
  );
}

/* Reduced motion accessibility */
@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .corner-bend-card {
    transform: none !important;
    transition: none !important;
  }
  .corner-bend-card::after {
    display: none !important;
  }
}

/* =====================================================
   RESPONSIVE BREAKPOINTS (Desktop, Tablet, Mobile)
   ===================================================== */

/* 1. Large Tablets & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .section-container {
    max-width: 1000px;
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .headline-plain,
  .headline-highlight span {
    font-size: 52px;
    line-height: 60px;
  }
  
  .reasons {
    gap: 16px;
  }
  .reason-card {
    width: 320px;
    padding: 30px 24px;
  }
  
  .benefity {
    gap: 16px;
  }
  .benefit-card {
    width: 320px;
    padding: 44px 24px 36px;
  }
  
  .pillar {
    gap: 40px;
  }
  .pillar-text {
    width: 480px;
  }
  .pillar-img-macbook,
  .pillar-img-kampane,
  .pillar-img-phone {
    width: 440px;
  }
  
  .compare-col {
    width: 480px;
  }
  
  .fit-col {
    width: 480px;
  }
  
  .cta-cols {
    gap: 40px;
  }
  .form-card {
    width: 500px;
    padding: 34px 30px;
  }
}

/* 2. Tablets & Medium Screens (max-width: 992px) */
@media (max-width: 992px) {
  .hero-vsl,
  .co-ziskas,
  .tvrda-realita,
  .reseni,
  .pred-po,
  .jak-to-funguje,
  .kdo-te-provede,
  .vysledky,
  .recenze,
  .pro-koho,
  .faq,
  .final-cta {
    padding: 80px 20px;
  }

  .headline-plain,
  .headline-highlight span {
    font-size: 40px;
    line-height: 48px;
    white-space: normal;
  }
  .headline-block {
    text-align: center;
  }
  .headline-highlight {
    white-space: normal;
    text-align: center;
  }

  .video-block {
    padding-top: 40px;
  }
  .video-plinth {
    max-width: 100%;
    padding: 6px;
    border-radius: 20px;
  }
  .video-inner {
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    min-height: 280px;
    border-radius: 16px;
    gap: 16px;
  }
  .video-caption,
  .video-sub {
    white-space: normal;
    padding: 0 16px;
  }
  .play-btn {
    width: 72px;
    height: 72px;
  }

  /* 3 body */
  .tri-body {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 32px 0;
  }
  .bod p {
    width: 100%;
  }

  /* Co získáš (benefity) */
  .benefity {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 48px;
  }
  .benefit-card {
    width: 100%;
    max-width: 520px;
    height: auto;
    min-height: auto;
  }

  /* Tvrdá realita */
  .hl-plain-sm,
  .hl-highlight-sm span {
    font-size: 32px;
    line-height: 40px;
    white-space: normal;
    text-align: center;
  }
  .reasons {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 48px;
  }
  .reason-card {
    width: 100%;
    max-width: 520px;
    height: auto;
    min-height: auto;
  }

  /* Pillars (Řešení) */
  .pillars {
    gap: 60px;
    padding-top: 50px;
  }
  .pillar {
    flex-direction: column !important;
    align-items: center;
    text-align: left;
    gap: 36px;
  }
  .pillar-text {
    width: 100%;
    max-width: 600px;
  }
  .pillar-img-phone,
  .pillar-img-macbook,
  .pillar-img-kampane {
    width: 100%;
    max-width: 500px;
    height: auto;
  }
  .pillar-img-macbook img,
  .pillar-img-kampane img {
    width: 100%;
    height: auto;
  }
  .pillar-img-phone img {
    max-width: 260px;
    height: auto;
  }

  /* Před / Po */
  .compare {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 48px;
  }
  .compare-col {
    width: 100%;
    max-width: 600px;
  }

  /* Jak to funguje */
  .steps {
    flex-direction: column;
    gap: 32px;
    padding-top: 48px;
  }
  .connector-line {
    display: none;
  }
  .step {
    width: 100%;
    max-width: 600px;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }
  .step-circle {
    flex-shrink: 0;
  }

  /* Kdo tě provede (Dan Šnejdar) */
  .lide {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding-top: 48px;
  }
  .osoba {
    width: 100%;
    max-width: 520px;
    height: auto;
    display: flex;
    flex-direction: column;
  }
  .foto-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
  }
  .info-card {
    position: relative;
    left: 0;
    top: -30px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 24px;
  }

  /* Výsledky & Případovka */
  .stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 40px 0 50px;
  }
  .stat-border {
    border-left: none;
    padding-left: 0;
  }
  .featured-case {
    flex-direction: column;
    padding: 36px 28px;
    gap: 32px;
    text-align: center;
  }
  .case-photo {
    width: 240px;
    height: 270px;
  }
  .case-quote {
    align-items: center;
  }
  .case-text {
    font-size: 24px;
    line-height: 34px;
  }

  /* Pro koho */
  .fit-grid {
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding-top: 48px;
  }
  .fit-col {
    width: 100%;
    max-width: 600px;
  }

  /* Final CTA Formular */
  .cta-cols {
    flex-direction: column;
    gap: 48px;
    align-items: stretch;
  }
  .cta-left {
    align-items: center;
    text-align: center;
  }
  .cta-headline {
    align-items: center;
  }
  .cta-headline .hl-plain-sm {
    text-align: center;
  }
  .cta-headline .hl-highlight-sm {
    align-self: center;
  }
  .form-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}

/* 3. Mobile Phones (max-width: 640px) */
@media (max-width: 640px) {
  html, body {
    overflow-x: hidden;
  }

  .hero-vsl,
  .co-ziskas,
  .tvrda-realita,
  .reseni,
  .pred-po,
  .jak-to-funguje,
  .kdo-te-provede,
  .vysledky,
  .recenze,
  .pro-koho,
  .faq,
  .final-cta {
    padding: 60px 16px;
  }

  .hero-top {
    gap: 16px;
  }
  
  .headline-plain {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: -0.6px;
  }
  .headline-highlight {
    padding: 4px 10px;
    border-radius: 6px;
  }
  .headline-highlight span {
    font-size: 26px;
    line-height: 34px;
    letter-spacing: -0.6px;
  }

  .hl-plain-sm {
    font-size: 24px;
    line-height: 32px;
  }
  .hl-highlight-sm {
    padding: 4px 10px;
    border-radius: 6px;
  }
  .hl-highlight-sm span {
    font-size: 22px;
    line-height: 30px;
  }

  .video-inner {
    min-height: 210px;
  }
  .hero-play-button {
    width: 72px;
    height: 72px;
  }
  .play-icon-holder {
    width: 66px;
    height: 66px;
  }
  .play-arrow {
    width: 28px;
    height: 28px;
  }

  .cta-row {
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .btn-primary {
    width: 100%;
    padding: 16px 20px;
    font-size: 15px;
    justify-content: center;
  }
  .cta-note {
    white-space: normal;
    text-align: center;
  }

  .stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .stat-num {
    font-size: 38px;
    line-height: 44px;
  }

  .pillar-title,
  .col-title,
  .step-title,
  .fit-title,
  .form-title {
    font-size: 22px;
    line-height: 30px;
  }

  .pillar-body,
  .compare-list li,
  .fit-list li,
  .step-body,
  .benefit-body,
  .faq-a {
    font-size: 14px;
    line-height: 23px;
  }

  .benefit-card {
    padding: 32px 20px;
  }
  .reason-card {
    padding: 28px 20px;
  }
  .compare-col,
  .fit-col {
    padding: 28px 18px;
  }

  /* Form */
  .form-card {
    padding: 26px 16px;
    border-radius: 18px;
  }
  .form-row {
    flex-direction: column;
    gap: 14px;
  }
  .field input,
  .field select {
    font-size: 14px;
    padding: 12px 14px;
  }
  .btn-submit {
    height: 52px;
    font-size: 13px;
    letter-spacing: 0.5px;
  }
  
  .faq-q {
    font-size: 16px;
    line-height: 24px;
  }
  
  .site-footer {
    flex-direction: column;
    gap: 6px;
    padding: 24px 16px;
    text-align: center;
  }
}
