


.scroll-strip-wrapper {
  overflow: hidden;
  padding: 24px 0;
  position: relative;
  width: 100%;
}

.scroll-strip-track {
  display: flex;
  width: max-content;
  gap: 24px;
  animation: scrollAnim 10s linear infinite;
}

.scroll-strip-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  padding: 8px 18px;
  border-radius: 32px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15), inset 1px 1px 2px #ffffff80;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scroll-strip-item img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.scroll-yellow {
  background: linear-gradient(145deg, #f7cf0a, #ffe867);
  color: #4a3f64;
}

.scroll-purple {
  background: linear-gradient(145deg, #4a3f64, #6c6292);
  color: #ffffff;
}

.scroll-strip-item:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25), 0 0 8px #f7cf0a;
}

@keyframes scrollAnim {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.auditfreelp-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(161px, 1fr));
    gap: 20px 98px;
    max-width: 856px;
    width: 92%;
}
.auditfreelp-card {
    position: relative;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 26px 12px;
    backdrop-filter: blur(12px);
    box-shadow: inset -2px -2px 6px rgba(255, 255, 255, 0.8), inset 2px 2px 8px rgba(0, 0, 0, 0.05), 0 8px 18px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    text-align: center;
    width: 249px;
   
}

.auditfreelp-card:hover {
  transform: translateY(-6px);
  box-shadow:
    inset -1px -1px 5px rgba(255, 255, 255, 0.8),
    inset 1px 1px 8px rgba(0, 0, 0, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.12);
}

.auditfreelp-blob {
  position: absolute;
  width: 90px;
  height: 90px;
  border-radius: 35% 65% 60% 40% / 50% 35% 65% 50%;
  opacity: 0.18;
  animation: auditfreelp-blobAnim 6s ease-in-out infinite;
  z-index: 0;
}

.auditfreelp-blob--purple {
  background: radial-gradient(circle, #8e24aa, transparent 70%);
  top: -20px;
  left: -20px;
}

.auditfreelp-blob--yellow {
  background: radial-gradient(circle, #fdd835, transparent 70%);
  bottom: -20px;
  right: -20px;
}

@keyframes auditfreelp-blobAnim {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4) rotate(25deg); }
}

.auditfreelp-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  background: white;
  border-radius: 18px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
}

.auditfreelp-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.auditfreelp-title {
  font-size: 15.5px;
  color: #222;
  font-weight: 600;
  line-height: 1.4;
  z-index: 1;
  position: relative;
}

@media (max-width: 768px) {
  .auditfreelp-wrapper {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}