/* Hero Features List - All Content Display */
.hero-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-feature-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.hero-feature-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateX(5px);
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: white;
  flex-shrink: 0;
}

.hero-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-feature-content strong {
  color: white;
  font-size: 0.95rem;
  font-weight: 600;
  display: block;
}

.hero-feature-content span {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.8rem;
  line-height: 1.4;
}

/* Hero Platform Preview */
.hero-platform-preview {
  position: relative;
}

.platform-showcase-img {
  border: 3px solid rgba(255, 255, 255, 0.2);
  transition: all 0.4s ease;
}

.platform-showcase-img:hover {
  transform: scale(1.02);
  border-color: rgba(255, 255, 255, 0.4);
}

.platform-badge-overlay {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10;
}

.platform-badge-item {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: 0 8px 20px rgba(16, 185, 129, 0.4);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Responsive Adjustments for Hero */
@media (max-width: 992px) {
  .hero-features-list {
    gap: 0.75rem;
  }

  .hero-feature-item {
    padding: 0.875rem 1rem;
  }

  .hero-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 1.125rem;
  }

  .platform-badge-overlay {
    top: 1rem;
    right: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-features-list {
    margin-bottom: 2rem !important;
  }

  .hero-feature-content strong {
    font-size: 0.875rem;
  }

  .hero-feature-content span {
    font-size: 0.75rem;
  }

  .platform-badge-overlay {
    position: relative;
    top: auto;
    right: auto;
    text-align: center;
    margin-top: 1rem;
  }
}