/* =============================================
   services-kitting.css
   ============================================= */

/* Tag chips in overview */
.kitting-tag {
  padding: 0.5rem 1rem;
  background: var(--color-sub, #f8f8f8);
  color: rgba(17,17,17,0.4);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.kitting-tag::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: #33cc99;
  border-radius: 50%;
}

/* Hero image overlay */
/* .kitting-overlay {
  background: rgba(51,204,153,0.1);
  transition: background 0.5s;
} */
.group:hover .kitting-overlay {
  background: transparent;
}

.kitting-speed-text {
  letter-spacing: 0.4em;
}

/* Strengths section background */
.kitting-strengths-bg {
  background: rgba(51, 204, 153, 0.05);
}

/* Case study cards on white background */
.kitting-case-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.05);
}

/* Flow title underline effect */
.flow-title-underline::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 12px;
  background: #f8f8f8;
  z-index: -1;
}
.flow-title-underline {
  position: relative;
}

/* Flow grid connector line */
.flow-grid {
  position: relative;
}

/* CTA section padding override */
.cta-pad {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

/* CTA glow blobs */
.cta-glow-1 {
  top: 0;
  left: -10%;
  width: 50%;
  height: 100%;
  background: #33cc99;
}
.cta-glow-2 {
  bottom: 0;
  right: -10%;
  width: 60%;
  height: 120%;
  background: rgba(51, 204, 153, 0.5);
}

/* Reveal animations for kitting page */
.page-kitting .reveal-left,
.page-kitting .reveal-scale,
.page-kitting .reveal-up,
.page-kitting .reveal-right {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.page-kitting .reveal-left {
  transform: translateX(-30px);
}
.page-kitting .reveal-scale {
  transform: scale(0.95);
}
.page-kitting .reveal-right {
  transform: translateX(20px);
}
.page-kitting .reveal-left.revealed,
.page-kitting .reveal-scale.revealed,
.page-kitting .reveal-up.revealed,
.page-kitting .reveal-right.revealed {
  opacity: 1;
  transform: none;
}
