/* =====================================================
   CR CRO layer — global sticky CTA + scroll progress bar
   Fully isolated (no reset, scoped selectors only).
   Loaded on ALL 11 pages.
   ===================================================== */

/* Scroll progress bar — top, 3px, magenta→peach gradient */
.cr-cro-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #e91e63 0%, #ff7c8f 50%, #ffb88c 100%);
  box-shadow: 0 0 10px rgba(233,30,99,0.5);
  z-index: 1200;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* Sticky CTA container — bottom right */
.cr-cro-sticky {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.35s cubic-bezier(0.2,0.6,0.2,1), transform 0.35s cubic-bezier(0.2,0.6,0.2,1);
  pointer-events: none;
  font-family: "Montserrat", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.cr-cro-sticky.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.cr-cro-sticky.is-hidden {
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
}

.cr-cro-sticky a {
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 100px;
  transition: transform 0.25s cubic-bezier(0.2,0.6,0.2,1), box-shadow 0.25s;
  cursor: pointer;
  will-change: transform;
  white-space: nowrap;
}
.cr-cro-sticky a:hover {
  transform: translateY(-2px);
}

.cr-cro-sticky .cr-cro-wa {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}
.cr-cro-sticky .cr-cro-wa:hover {
  background: #1fba58;
  color: #fff;
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.cr-cro-sticky .cr-cro-wa svg {
  width: 18px;
  height: 18px;
  fill: #fff;
}

.cr-cro-sticky .cr-cro-diag {
  background: linear-gradient(135deg, #e91e63 0%, #ff7c8f 100%);
  color: #fff;
  box-shadow: 0 8px 24px rgba(233,30,99,0.45);
}
.cr-cro-sticky .cr-cro-diag:hover {
  background: linear-gradient(135deg, #ff7c8f 0%, #e91e63 100%);
  color: #fff;
  box-shadow: 0 12px 32px rgba(233,30,99,0.55);
}
.cr-cro-sticky .cr-cro-diag .cr-cro-arrow {
  font-family: "Anton", sans-serif;
  font-size: 18px;
  line-height: 1;
  display: inline-block;
  transition: transform 0.25s;
}
.cr-cro-sticky .cr-cro-diag:hover .cr-cro-arrow {
  transform: translateX(3px);
}

/* Mobile: compact — show only icons + shorter text */
@media (max-width: 640px) {
  .cr-cro-sticky {
    right: 16px;
    bottom: 16px;
    gap: 10px;
  }
  .cr-cro-sticky a {
    padding: 13px 18px;
    font-size: 12px;
  }
  .cr-cro-sticky .cr-cro-diag .cr-cro-label-long { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .cr-cro-sticky,
  .cr-cro-sticky a,
  .cr-cro-progress { transition: none !important; }
}
