
.numbers-speak-section {
  background-color: #190D07;
  color: #fff;
}

.numbers-speak-section .container {
  max-width: 1352px;
  margin: 0 auto;
}

/* Layout */
.numbers-grid {
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  min-height: 500px;
}

/* ===== Left Side ===== */
.numbers-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.numbers-heading {
    font-size: 64px;
    font-weight: 500;
    line-height: 68px;
    margin-bottom: 60px;
    color: #ffffff;
    letter-spacing: -1.62px;
}

.numbers-subheading {
  font-size: 18px;
  color: #b5b5b5;
  margin-bottom: 40px;
}

/* Stats grid */
.numbers-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 80px;
  column-gap: 60px;
}

.stat-item {
  text-align: left;
}

.stat-value {
  color: #EA580C; /* Brand orange */
  font-size: 64px;
  font-weight: 500;
  margin: 0 0 20px;
  line-height: 68px;
  letter-spacing: -3.2px;
}

.stat-label {
  font-size: 18px;
  color: #CBB2B2;
  line-height: 1.5;
  margin: 0;
}

/* ===== Right Side ===== */
.numbers-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* dotted pattern overlay */
.numbers-right::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 20px 20px;
}

.numbers-image {
  max-width: 100%;
  height: auto;
  z-index: 1;
  position: relative;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .stat-value {
   letter-spacing:0;
}
  .numbers-grid {
    grid-template-columns: 1fr;
  }

  .numbers-left {
    text-align: center;
  }

  .numbers-heading {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .numbers-stats {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .stat-item {
  }

  .numbers-right {
    padding: 0;
  }
 .page-template-template-spenza-landing .stat-item h3.stat-value {
        font-size: 30px !important;
        line-height: 30px !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 576px) {
  .numbers-stats {
    gap: 24px;
  }

  .stat-value {
    font-size: 34px;
  }
}
