/* LE CONSTAT */
.stats-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 65px 0;
  flex-shrink: 0;
  background: #F7F7F5;
  box-sizing: border-box;
}

.stats-section .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1402px;
  padding: 0 96px;
  margin: 0 auto;
  flex-shrink: 0;
}

.section-title {
  width: 100%;
  color: #0F1A13;
  text-align: center;
  font-family: 'Arvo', serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 57px;
}

.section-subtitle {
  width: 100%;
  color: #555555;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 28.9px;
}

.stats-grid {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: nowrap;
}

.stat-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 0;
  min-width: 0;
  height: 160px;
  padding: 12px 28px 20px 28px;
  border-radius: 12px;
  box-sizing: border-box;
}

.stat-card-shape {
  position: absolute;
  right: 36px;
  top: -41.224px;
  width: 95.53px;
  height: 79.143px;
  border-radius: 70px;
  background: rgba(255, 255, 255, .25);
  transform: rotate(-41.336deg);
  pointer-events: none;
}

.stat-card--1 .stat-card-shape {
  right: -19.333px;
  top: -20px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  transform: none;
}

.stat-card--2 .stat-card-shape {
  top: auto;
  right: 12.667px;
  bottom: -60.2px;
  width: 80px;
  height: 80px;
  border-radius: 40px;
  transform: none;
}

.stat-card--0 {
  background: #D4F4A2;
}

.stat-card--0 .stat-number {
  color: #2A5C44;
}

.stat-card--1 {
  background: #C7E3FF;
}

.stat-card--1 .stat-number {
  color: #1A4870;
}

.stat-card--2 {
  background: #E8E5AC;
}

.stat-card--2 .stat-number {
  color: #5A4400;
}

.stat-number {
  color: #2A5C44;
  font-family: 'Arvo', serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 52px;
}

.stat-text {
  width: 100%;
  color: #1A1A1A;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 24px;
}

.stat-source {
  margin-top: auto;
  color: rgba(0, 0, 0, .45);
  font-family: 'Open Sans', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 17.25px;
  letter-spacing: 0.3px;
}

@media (max-width: 1200px) {
  .stats-section .container {
    padding: 0 48px;
  }
}

@media (max-width: 900px) {
  .stat-card {
    height: auto;
    padding: 10px 14px 14px;
  }

  .stat-number {
    font-size: 28px;
    line-height: 30px;
  }

  .stat-text {
    font-size: 12px;
    line-height: 17px;
  }

  .stat-source {
    font-size: 9px;
    line-height: 13px;
  }
}

@media (max-width: 640px) {
  .stats-section {
    padding: 40px 0;
  }

  .stats-section .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 26px;
    line-height: 32px;
  }

  .section-subtitle {
    font-size: 15px;
    line-height: 22px;
  }

  .stats-grid {
    flex-direction: column;
    flex-wrap: wrap;
    margin-top: 24px;
  }

  .stat-card {
    width: 100%;
    flex: none;
    height: auto;
    min-height: 0;
    padding: 16px 20px 18px;
  }

  .stat-number {
    font-size: 32px;
    line-height: 34px;
  }

  .stat-text {
    font-size: 13px;
    line-height: 19px;
  }

  .stat-source {
    font-size: 10px;
    line-height: 15px;
  }
}

@media (max-width: 360px) {
  .section-title {
    font-size: 22px;
    line-height: 27px;
  }

  .stat-number {
    font-size: 28px;
    line-height: 30px;
  }

  .stat-text {
    font-size: 12px;
  }
}
