/* ─── Results Section ─── */
.results-section {
  padding: 6rem 0;
  background-color: var(--color-bg);
  text-align: center;
}


.results__title {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  font-weight: 400; /* Sophisticated thin font */
  margin-bottom: 1.5rem;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.results__subtitle {
  color: var(--color-text-muted);
  max-width: 700px;
  margin: 0 auto 4rem;
  font-size: 1.125rem;
  line-height: 1.6;
}


/* ─── Results Stats ─── */
/* ─── Results Stats ─── */
.results__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}

@media (max-width: 768px) {
  .results-section {
    padding-inline: var(--container-padding);
  }

  .results__stats {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 480px) {
  .results__stats {
    grid-template-columns: 1fr;
  }
}

.stat-item--dark {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  text-align: left;
}

.stat-item__icon-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-item__icon-wrapper svg {
  fill: var(--color-text); /* Use dark text color for icons */
}

.stat-item__details {
  display: flex;
  flex-direction: column;
}

.stat-item__value {
  font-size: 2.5rem;
  font-weight: 300; /* light font */
  color: var(--color-text);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-item__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
