/* ===== COMPANY / STATS ===== */
.company {
  padding: 0 0 80px;
}

.company-wrap {
  max-width: var(--page-w);
  margin: 0 auto;
  padding: 0 var(--side);
}

.company h2 {
  font-size: 42px;
  font-weight: 700;
  color: var(--black);
  line-height: 120px;
}

.company-desc {
  font-size: 21px;
  font-weight: 400;
  color: var(--black);
  line-height: 40px;
  max-width: 915px;
  margin-bottom: 25px;
}

.stats-row {
  display: flex;
  gap: 20px;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(140, 106, 44, 0.15);
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.stat-icon {
  width: 69px;
  height: 69px;
  border-bottom: 1px solid #e6e6e6;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.stat-icon-pink {
  width: 69px;
  height: 69px;
  background: #fbe6df;
  border-radius: 12px;
}

.stat-label {
  font-size: 24px;
  font-weight: 600;
  color: var(--black);
  letter-spacing: -0.73px;
}

.stat-val {
  font-size: 32px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.97px;
}
