/* === Products Section === */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  transition: all var(--transition-base);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover {
  border-color: rgba(var(--accent-primary-rgb), 0.3);
  transform: translateY(-4px);
  box-shadow: var(--glow-primary), var(--shadow-card);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-lg);
  font-size: var(--fs-2xl);
  margin-bottom: var(--space-5);
}

.product-card__icon--cyan {
  background: rgba(var(--accent-primary-rgb), 0.1);
  color: var(--accent-primary);
}

.product-card__icon--purple {
  background: rgba(var(--accent-secondary-rgb), 0.1);
  color: var(--accent-secondary);
}

.product-card__icon--green {
  background: rgba(var(--accent-success-rgb), 0.1);
  color: var(--accent-success);
}

.product-card__badge {
  margin-bottom: var(--space-3);
}

.product-card__title {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-3);
}

.product-card__text {
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  line-height: var(--lh-relaxed);
  flex: 1;
  margin-bottom: var(--space-5);
}

.product-card__features {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.product-card__feature {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
}

.product-card__feature::before {
  content: '✓';
  color: var(--accent-success);
  font-weight: var(--fw-bold);
}

/* === Clients / Tech Logos === */
.logos-section {
  padding: var(--space-12) 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-12);
  flex-wrap: wrap;
  opacity: 0.5;
}

.logos-grid__item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  color: var(--text-secondary);
  font-weight: var(--fw-medium);
  letter-spacing: 0.05em;
  transition: all var(--transition-base);
  cursor: default;
}

.logos-grid__item svg {
  opacity: 0.6;
  transition: all var(--transition-base);
}

.logos-grid__item:hover {
  opacity: 1;
  color: var(--accent-primary);
}

.logos-grid__item:hover svg {
  opacity: 1;
  color: var(--accent-primary);
  transform: translateY(-2px);
}

/* === CTA Section === */
.cta-section {
  position: relative;
  padding: var(--space-20) 0;
  text-align: center;
  overflow: hidden;
}

.cta-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(var(--accent-primary-rgb), 0.05), rgba(var(--accent-secondary-rgb), 0.05));
  z-index: -1;
}

.cta-section__title {
  font-size: var(--fs-4xl);
  font-weight: var(--fw-extrabold);
  margin-bottom: var(--space-4);
}

.cta-section__text {
  font-size: var(--fs-lg);
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto var(--space-8);
}

/* === Responsive === */
@media (max-width: 768px) {
  .products-grid {
    grid-template-columns: 1fr;
  }

  .logos-grid {
    gap: var(--space-8);
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}