/* Home Hero Block – unified hero + stats + value props structure */
.home-hero-block {
  position: relative;
  overflow: visible;
}

/* ==========================================================================
   Stats Bar Section (Compacted + 3D Pop-out Hover Effect)
   ========================================================================== */
.stats-bar-section {
  position: relative;
  z-index: 30;
  margin-top: -35px;
  padding-bottom: 0;
  background: transparent;
  border: none;
}

.stats-bar-panel {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 104, 55, 0.08);
  border: 1px solid rgba(0, 104, 55, 0.08);
  padding: 0.6rem 0.5rem;
  overflow: visible; /* Allows icons to pop outside the panel boundaries */
}

.stats-bar-row {
  margin: 0;
  overflow: visible;
}

.stat-col {
  position: relative;
  overflow: visible;
}

.stat-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background: var(--border-color, #e5e7eb);
}

.stat-card {
  padding: 0.25rem 0.3rem;
  overflow: visible;
  position: relative;
}

/* Base Icon Circle */
.stat-icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-light-blue, #ebf5fa);
  color: var(--secondary, #006837);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 3px 8px rgba(0, 104, 55, 0.06);
  position: relative;
  z-index: 2;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), 
              box-shadow 0.35s ease, 
              background-color 0.35s ease, 
              color 0.35s ease;
}

/* 3D Pop-Out & Float on Hover */
.stat-col:hover .stat-icon-circle {
  transform: translateY(-8px) scale(1.18); /* Pops upward out of alignment */
  background: var(--primary, #006837);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(0, 104, 55, 0.28); /* 3D depth shadow */
  z-index: 10;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--primary, #006837);
  margin-bottom: 0.1rem;
  line-height: 1.2;
}

.stat-desc {
  font-size: 0.72rem;
  color: var(--text-body, #4b5563);
  font-weight: 500;
  line-height: 1.25;
  margin-bottom: 0;
}

.stat-sub {
  font-size: 0.65rem;
  color: var(--text-muted, #9ca3af);
}

/* ==========================================================================
   Value Props Ribbon Section (Green Bar)
   ========================================================================== */
.value-props-bar-section {
  background: var(--primary, #006837) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 0;
  padding: 0;
  width: 100%;
}

.value-props-ribbon {
  background: var(--primary, #006837) !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
}

.value-props-ribbon .row {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.prop-col {
  position: relative;
  transition: transform 0.3s ease;
}

.prop-col:hover {
  transform: translateY(-2px);
}

.prop-icon {
  color: var(--accent-gold, #c89d47) !important;
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.prop-title {
  font-size: 0.9rem;
  color: #ffffff !important;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.prop-desc {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.75) !important;
  line-height: 1.3;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (min-width: 768px) {
  .stats-bar-section {
    margin-top: -45px;
  }
}

@media (min-width: 992px) {
  .stats-bar-section {
    margin-top: -55px;
  }

  .stat-num {
    font-size: 1.45rem;
  }

  .prop-col:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -12px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
  }
}

@media (max-width: 991px) {
  .stat-col::after {
    display: none;
  }

  .stat-col {
    border-bottom: 1px solid var(--border-color, #e5e7eb);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .stat-col:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .value-props-ribbon .row {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
}

@media (max-width: 575px) {
  .stats-bar-section {
    margin-top: -25px;
  }
}