:root {
  --color-purple: #7D5A92;
  --color-orange: #E08C2D;
  --text-dark: #1A1A1A;
  --text-gray: #666666;
  --bg-light: #FDFDFD;
}

.section-discovery {
  padding: 80px 0 0 0;
  overflow: hidden;
}

/* Header Typography */
.discovery__title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.discovery__description {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-gray);
  margin-bottom: 1rem;
  max-width: 400px;
}

/* Stats Cards */
.stat-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 2rem 1rem;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid transparent;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 0, 0, 0.02);
}

.stat-card__number {
  font-weight: 700;
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

/* Responsive font sizing for numbers */
@media (max-width: 1200px) {
  .stat-card__number {
    font-size: 2.5rem;
  }
}
@media (max-width: 576px) {
  .stat-card__number {
    font-size: 2.25rem;
  }
}

.stat-card__label {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 500;
}

/* Colors */
.text-orange {
  color: var(--color-orange);
}

.text-purple {
  color: var(--color-purple);
}

/* Info Text Block */
.discovery__text-block {
  font-size: 1.5rem;
  line-height: 1.4;
  color: var(--text-dark);
  font-weight: 500;
  margin-top: 1rem;
}

/* Responsive adjustments for text block */
@media (max-width: 992px) {
  .discovery__text-block {
    font-size: 1.25rem;
  }
}

@media (max-width: 768px) {
  .discovery__title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .discovery__description {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }
  
  .stat-card {
    padding: 1.5rem 0.5rem;
    border-radius: 16px;
  }
}