/* Platforms Section Styles */
.platforms-section {
  padding: 2.5rem 0;
  background: linear-gradient(to bottom, white, rgba(241, 245, 249, 0.3), white);
  position: relative;
  overflow: hidden;
}

.platforms-background {
  position: absolute;
  inset: 0;
  opacity: 0.015;
}

.platforms-content {
  position: relative;
  z-index: 10;
}

.platforms-title {
  text-align: center;
  margin-bottom: 2rem;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.platform-card {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  padding: 1rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(241, 245, 249, 0.6);
  transition: all 0.5s ease;
}

.platform-card:hover {
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.1);
  border-color: rgba(16, 185, 129, 0.2);
  transform: translateY(-4px);
}

.platform-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.625rem;
}

.platform-logo {
  height: 2.25rem;
}

.platform-badge {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  font-size: 0.75rem;
  padding: 0.125rem 0.5rem;
  border-radius: 9999px;
}

.platform-name {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.375rem;
}

.platform-description {
  font-size: 0.75rem;
  color: #4B5563;
  line-height: 1.5;
  margin-bottom: 0.625rem;
}

.platform-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.platform-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: #10B981;
}

.platform-link {
  font-size: 0.75rem;
  font-weight: 500;
  color: #10B981;
}

.platform-link:hover {
  text-decoration: underline;
}
