/** Shopify CDN: Minification failed

Line 221:0 Expected "}" to go with "{"

**/
/* For Who v3 - Main Styles */
.for-who-v3 {
  width: 100%;
  position: relative;
  overflow: hidden;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

/* Background decorations */
.for-who-v3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 100px,
    rgba(102, 126, 234, 0.05) 100px,
    rgba(102, 126, 234, 0.05) 101px
  );
  pointer-events: none;
  z-index: 0;
}

.for-who-v3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(ellipse 900px 500px at 50% 0%, rgba(102, 126, 234, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse 900px 500px at 50% 100%, rgba(240, 147, 251, 0.04) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.for-who__container {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Badge */
.for-who__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 28px;
  border: 1.5px solid;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 30px;
  transition: transform 0.3s ease;
}

.for-who__badge:hover {
  transform: scale(1.05);
}

.for-who__badge-icon {
  font-size: 16px;
}

/* Heading */
.for-who__heading {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 0 24px 0;
}

/* Content Box */
.for-who__content-box {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border: 1px solid;
  border-radius: 16px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  text-align: left;
}

/* Gradient bar na górze boxa */
.for-who__content-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  z-index: 1;
}

/* List */
.for-who__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Item */
.for-who__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  transition: all 0.3s ease;
}

.for-who__item:hover {
  transform: translateX(4px);
}

/* Item Arrow */
.for-who__item-arrow {
  font-size: 24px;
  font-weight: 700;
  min-width: 24px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0;
  padding-top: 0;
}

.for-who__item:hover .for-who__item-arrow {
  transform: translateX(4px);
}

/* Item Text */
.for-who__item-text {
  margin: 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  transition: all 0.3s ease;
  flex: 1;
}

.for-who__item:hover .for-who__item-text {
  font-weight: 500;
}

/* Animation on scroll */
.for-who-v3--visible .for-who__badge,
.for-who-v3--visible .for-who__heading,
.for-who-v3--visible .for-who__content-box {
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet (768px - 1023px) */
@media (min-width: 768px) {
  .for-who-v3 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .for-who__badge {
    font-size: 13px;
    padding: 14px 32px;
    margin-bottom: 35px;
  }

  .for-who__heading {
    font-size: 40px;
    margin-bottom: 28px;
  }

  .for-who__content-box {
    padding: 40px;
  }

  .for-who__list {
    gap: 24px;
  }

  .for-who__item-arrow {
    font-size: 24px;
    min-width: 24px;
    line-height: 1;
    margin-top: 0;
  
