/* .finpay-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  }
  .stat-card {
    min-width: 200px;
    transition: transform 0.3s ease;
  }
  .stat-card:hover {
    transform: translateY(-5px);
  }
  .feature-highlight {
    font-size: 1.1rem;
  }
  .trust-badge {
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    font-size: 0.9rem;
  }
  .finpay-section {
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  overflow: hidden;
}
.stat-card {
  min-width: 200px;
  transform: translateY(50px);
  opacity: 0;
  transition: all 0.8s ease;
}
.feature-highlight {
  font-size: 1.1rem;
  transform: scale(0.8);
  opacity: 0;
  transition: all 0.6s ease 0.3s;
}
.trust-badge {
  background: white;
  padding: 8px 15px;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  font-size: 0.9rem;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.5s ease;
}
.trust-badge:nth-child(1) { transition-delay: 0.4s; }
.trust-badge:nth-child(2) { transition-delay: 0.6s; }
.trust-badge:nth-child(3) { transition-delay: 0.8s; }
h2 {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}
.animate {
  transform: translateY(0) !important;
  opacity: 1 !important;
  transform: scale(1) !important;
} */