
/* Bento Grid Stats Customization */
.hero .stats-grid.bento-style {
  gap: 20px;
}

.hero .stats-grid.bento-style .stat-card {
  padding: 0;
  overflow: hidden;
  position: relative;
  border: none;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: var(--surface-color);
}

.hero .stats-grid.bento-style .stat-card .stat-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  z-index: 1;
}

.hero .stats-grid.bento-style .stat-card:hover .stat-bg-img {
  transform: scale(1.1);
}

.hero .stats-grid.bento-style .stat-card .stat-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.2));
  z-index: 2;
}

.hero .stats-grid.bento-style .stat-card .stat-info {
  position: relative;
  z-index: 3;
  padding: 20px;
  width: 100%;
}

.hero .stats-grid.bento-style .stat-card .stat-value {
  color: #fff !important;
  font-size: 2rem;
  margin-bottom: 5px;
  display: block;
  font-weight: 700;
}

.hero .stats-grid.bento-style .stat-card .stat-title {
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
}

/* Hide original icon wrapper for this style */
.hero .stats-grid.bento-style .stat-card .stat-icon-wrap {
  display: none !important;
}
