.push-showcase {
  background: linear-gradient(160deg, #0f172a 0%, #1e1b4b 40%, #1e3a5f 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.push-showcase::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(59,130,246,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.push-showcase::after {
  content: '';
  position: absolute;
  bottom: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(139,92,246,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.push-showcase-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
}
.push-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(59,130,246,0.15);
  color: #60a5fa;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(59,130,246,0.25);
}
.push-showcase-header h2 {
  color: #fff;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
  margin-bottom: 16px;
}
.push-showcase-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 675px;
  margin: 0 auto;
  line-height: 1.8;
}
.push-categories-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.push-category {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 28px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}
.push-category:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(59,130,246,0.3);
  transform: translateY(-4px);
}
.push-category-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.push-category-header i {
  font-size: 1.3rem;
  color: #60a5fa;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59,130,246,0.15);
  border-radius: 12px;
  flex-shrink: 0;
}
.push-category-header h3 {
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0;
}
.push-category-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.push-feature-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.push-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(139,92,246,0.15);
  color: #a78bfa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.push-feature-content h4 {
  color: #e2e8f0;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.push-feature-content p {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}
.push-showcase-cta {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.push-cta-btn {
  display: inline-block;
  padding: 14px 40px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  background: #3b82f6;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(59,130,246,0.4);
}
.push-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(59,130,246,0.5);
  background: #2563eb;
  color: #fff;
}
@media (max-width: 767px) {
  .push-categories-grid { grid-template-columns: 1fr; }
  .push-showcase { padding: 60px 0; }
}
