/* Projects strip — chip pills (load after polish.css / home-colors.css) */

.frameflow-light .ff-clients-strip {
  padding: clamp(36px, 5vw, 52px) 0;
  background:
    linear-gradient(180deg, #fff 0%, #faf8ff 55%, #f3effc 100%);
  border-top: 1px solid rgba(90, 72, 140, 0.08);
  border-bottom: 1px solid rgba(90, 72, 140, 0.08);
}

.frameflow-light .ff-clients-strip__label {
  margin: 0 0 clamp(16px, 2.5vw, 22px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
  color: #7555f5;
}

.frameflow-light .ff-clients-strip__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
  max-width: 920px;
  margin-inline: auto;
}

.frameflow-light .ff-clients-strip__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 99px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #2c2648 !important;
  -webkit-text-fill-color: #2c2648 !important;
  background: #fff;
  border: 1px solid rgba(90, 72, 140, 0.14);
  box-shadow: 0 8px 22px -16px rgba(44, 38, 72, 0.18);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.frameflow-light .ff-clients-strip__chip:hover,
.frameflow-light .ff-clients-strip__chip:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: linear-gradient(135deg, #7555f5 0%, #6244e8 52%, #432692 100%);
  border-color: transparent;
  box-shadow: 0 14px 32px -14px rgba(117, 85, 245, 0.45);
  transform: translateY(-2px);
}

.frameflow-light .ff-clients-strip__chip:focus-visible {
  outline: 2px solid rgba(117, 85, 245, 0.45);
  outline-offset: 3px;
}

.frameflow-light .ff-clients-strip__chip--more {
  color: #432692 !important;
  -webkit-text-fill-color: #432692 !important;
  background: rgba(255, 255, 255, 0.72);
  border: 1.5px dashed rgba(117, 85, 245, 0.34);
  box-shadow: none;
}

.frameflow-light .ff-clients-strip__chip--more .icon,
.frameflow-light .ff-clients-strip__chip-icon .icon {
  font-size: 11px;
  color: #7555f5;
  transition: color 0.22s ease, transform 0.22s ease;
}

.frameflow-light .ff-clients-strip__chip--more:hover,
.frameflow-light .ff-clients-strip__chip--more:focus-visible {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  background: linear-gradient(135deg, #7555f5 0%, #6244e8 52%, #432692 100%);
  border-color: transparent;
  border-style: solid;
}

.frameflow-light .ff-clients-strip__chip--more:hover .icon,
.frameflow-light .ff-clients-strip__chip--more:focus-visible .icon,
.frameflow-light .ff-clients-strip__chip--more:hover .ff-clients-strip__chip-icon .icon,
.frameflow-light .ff-clients-strip__chip--more:focus-visible .ff-clients-strip__chip-icon .icon {
  color: #fff;
  transform: translate(2px, -2px);
}

.frameflow-light.ff-about-page .ff-clients-strip,
.frameflow-light.ff-services-page .ff-clients-strip {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, #faf8ff 58%, #f3effc 100%);
}

@media (max-width: 767px) {
  .frameflow-light .ff-clients-strip__list {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding-bottom: 4px;
    max-width: none;
    margin-inline: -4px;
    padding-inline: 4px;
    scrollbar-width: none;
  }

  .frameflow-light .ff-clients-strip__list::-webkit-scrollbar {
    display: none;
  }

  .frameflow-light .ff-clients-strip__chip {
    flex-shrink: 0;
    scroll-snap-align: start;
  }
}

@media (prefers-reduced-motion: reduce) {
  .frameflow-light .ff-clients-strip__chip:hover,
  .frameflow-light .ff-clients-strip__chip--more:hover .icon {
    transform: none;
  }
}
