.logo-scroller {
  overflow: hidden;
  width: 100%;
  padding: 22px 0;
  background: linear-gradient(
      to bottom right,
      rgba(30, 60, 120, 0.18),
      rgba(10, 20, 40, 0.18)
    );
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  box-shadow: 0 0 35px rgba(20, 80, 200, 0.15);
  border: 1px solid rgba(120, 180, 255, 0.18);
  border-radius: 20px;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 22s linear infinite;
}

.logo-track img {
  width: 70px;
  height: 70px;
  object-fit: contain;
  opacity: 0.92;
  filter: drop-shadow(0 0 8px rgba(255,255,255,0.15));
  transition: 10s ease;
}

.logo-track img:hover {
  transform: scale(1.15);
  opacity: 1;
}

@keyframes scrollLogos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: scrollLogos 22s linear infinite;
  animation-play-state: running;
}


.logo-scroller:hover .logo-track {
  animation-play-state: paused;
}

/* Smooth animation */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.logo-track img:hover ~ * ,
.logo-track img:hover {
  animation-play-state: paused;
}

.logo-tooltip {
  position: absolute;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-size: 14px;
  border-radius: 12px;
  width: max-content;
  max-width: 220px;
  transform: translate(-50%, -100%);
  pointer-events: none;
  opacity: 0;
  transition: 0.25s ease;
  z-index: 999;
  box-shadow: 0 0 18px rgba(255,255,255,0.15);
}

/* arrow */
.logo-tooltip::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.08);
  border-left: 1px solid rgba(255,255,255,0.15);
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transform: rotate(45deg);
}


/* MOBILE SOFTWARE LOGO FIX */
@media (max-width: 620px) {

  .logo-scroller {
    padding: 14px 0;              /* thinner height */
  }

  .logo-track {
    gap: 20px !important;         /* reduce spacing */
  }

  .logo-track img {
    width: 46px !important;       /* from 70px → perfect mobile size */
    height: 46px !important;
  }
}



/* ============================
   CTA STRIP — EXTRACTED
   ============================ */

.cta-strip {
  margin: 32px 0;
  padding: 28px;
  border-radius: 14px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #021224;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 0 25px rgba(255,255,255,0.12);
}

.cta-strip a {
  background: #ffffff;
  color: #000000;
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 10px;
  border: 2px solid #000;
}


/* MOBILE CTA STRIP FIX */
@media (max-width: 620px) {

  .cta-strip {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    padding: 20px 16px;
  }

  .cta-strip a {
    width: 100%;
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 15px;
  }
}
