/* Benefits Bar Styles */
.benefits-bar {
  background: #000000;
  padding: 0;
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.benefits-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #43BDAB 50%, transparent 100%);
}

.benefits-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 40px;
  gap: 40px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1;
  min-width: 0;
}

.benefit-link {
  cursor: pointer;
  transition: all 0.3s ease;
}

.benefit-link:hover {
  transform: translateY(-2px);
}

.benefit-link:hover .benefit-label {
  color: #43BDAB;
}

.benefit-visual {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(67, 189, 171, 0.12);
  border-radius: 50%;
  position: relative;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-visual {
  background: rgba(67, 189, 171, 0.2);
  transform: scale(1.08);
}

.benefit-visual img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.benefit-item:hover .benefit-visual img {
  transform: scale(1.15);
  filter: drop-shadow(0 0 10px rgba(67, 189, 171, 0.6));
}

.benefit-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}

.benefit-label {
  font-family: 'Outfit', 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.benefit-detail {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: #999999;
  line-height: 1.3;
}

.benefit-detail strong {
  color: #43BDAB;
  font-weight: 600;
}

.benefit-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent 0%, #333333 50%, transparent 100%);
  flex-shrink: 0;
}

.mobile-scroll-indicator {
  display: none;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  color: #666666;
  padding: 0 0 12px 0;
  letter-spacing: 0.5px;
  animation: pulse-hint 2s ease-in-out infinite;
}

@keyframes pulse-hint {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

@media (max-width: 1400px) {
  .benefits-wrapper {
    gap: 30px;
    padding: 30px 30px;
  }
}

@media (max-width: 1024px) {
  .benefits-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-template-rows: auto auto auto;
    gap: 25px 20px;
    padding: 35px 25px;
  }

  .benefit-item:nth-child(1) { grid-column: 1; grid-row: 1; }
  .benefit-divider:nth-child(2) { 
    grid-column: 2; 
    grid-row: 1; 
    width: 1px;
    height: 100%;
  }
  .benefit-item:nth-child(3) { grid-column: 3; grid-row: 1; }
  
  .benefit-divider:nth-child(4) { 
    grid-column: 1 / -1; 
    grid-row: 2;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #333333 50%, transparent 100%);
  }
  
  .benefit-item:nth-child(5) { grid-column: 1; grid-row: 3; }
  .benefit-divider:nth-child(6) { 
    grid-column: 2; 
    grid-row: 3;
    width: 1px;
    height: 100%;
  }
  .benefit-item:nth-child(7) { grid-column: 3; grid-row: 3; }

  .benefit-visual {
    width: 46px;
    height: 46px;
  }

  .benefit-visual img {
    width: 29px;
    height: 29px;
  }

  .benefit-label {
    font-size: 13px;
  }

  .benefit-detail {
    font-size: 11px;
  }
}

@media (max-width: 640px) {
  .benefits-bar {
    padding: 20px 0;
    margin: 0;
    border-radius: 0;
    overflow: visible;
  }

  .benefits-bar::before {
    display: none;
  }

  .benefits-wrapper {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 20px 20px;
    gap: 12px;
    margin: 0;
    max-width: 100vw;
  }

  .benefits-wrapper::-webkit-scrollbar {
    display: none;
  }

  .benefit-item {
    flex: 0 0 160px;
    min-width: 160px;
    flex-shrink: 0;
    scroll-snap-align: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(67, 189, 171, 0.15);
    border-radius: 12px;
    padding: 14px 12px;
    gap: 10px;
    flex-direction: column;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .benefit-divider {
    display: none;
  }

  .benefit-visual {
    width: 42px;
    height: 42px;
    background: rgba(67, 189, 171, 0.15);
    margin: 0 auto;
  }

  .benefit-visual img {
    width: 26px;
    height: 26px;
  }

  .benefit-text {
    align-items: center;
    gap: 4px;
  }

  .benefit-label {
    font-size: 11px;
    white-space: normal;
    line-height: 1.3;
  }

  .benefit-detail {
    font-size: 10px;
    line-height: 1.4;
  }

  .mobile-scroll-indicator {
    display: block;
    padding-bottom: 15px;
  }
}

@media (max-width: 380px) {
  .benefit-item {
    min-width: 145px;
    gap: 10px;
    padding: 16px 12px;
  }

  .benefit-item:first-child {
    margin-left: calc((100vw - 302px) / 2);
  }

  .benefit-item:last-child {
    margin-right: calc((100vw - 302px) / 2);
  }

  .benefit-visual {
    width: 48px;
    height: 48px;
  }

  .benefit-visual img {
    width: 30px;
    height: 30px;
  }

  .benefit-label {
    font-size: 11px;
  }

  .benefit-detail {
    font-size: 10px;
  }
}