.feature-card-modern {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.feature-card-modern:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: #28ab88;
}

.feature-icon-modern {
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, rgba(40, 171, 136, 0.1) 0%, rgba(1, 51, 102, 0.1) 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #28ab88;
}

.feature-icon-modern svg {
  width: 1.25rem;
  height: 1.25rem;
}

.demo-cta-card {
  background: white;
  border-radius: 1.5rem;
  padding: 4rem 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  border: 1px solid #e2e8f0;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.demo-cta-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
}

.demo-cta-card::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(135deg, rgba(40, 171, 136, 0.08), rgba(1, 51, 102, 0.08));
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.demo-cta-card > * { position: relative; z-index: 1; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 3rem; }

@media (max-width: 992px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .stats-grid { grid-template-columns: 1fr; }
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: bold;
  background: linear-gradient(135deg, #28ab88 0%, #013366 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.demo-features-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 2rem; }

@media (max-width: 992px) {
  .demo-features-row { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .demo-features-row { grid-template-columns: 1fr; gap: 1.5rem; }
}

.demo-features-row > div { margin-bottom: 0; }

.demo-features-section { padding-top: 4rem; padding-bottom: 4rem; }
