/*
 * Worxogo Performance at Scale Widget CSS
 *
 * Elementor Performance at Scale Widget Styles
 */

/* ===== PERFORMANCE AT SCALE SECTION ===== */
.performance-scale-section {
  background: linear-gradient(135deg, #1e0059 0%, #290074 100%);
  padding: 30px 0px;
  color: white;
}

.performance-scale-container {
  margin: 0 auto;
  text-align: center;
}

.performance-scale-title {
  font-size: 42px;
  font-weight: 700;
  color: white;
  margin: 0px 60px 40px 60px;
  line-height: 1.2;
  position: relative;
  padding-bottom: 41px;
  font-family: "Albert Sans", sans-serif;
}

.performance-scale-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
}

.performance-scale-stats {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin: 0 auto;
  padding: 0 20px;
}

.performance-stat {
  text-align: center;
  flex: 1;
  white-space: nowrap;
}

.performance-stat-value {
  font-size: 40px;
  font-weight: 700;
  color: white;
  line-height: 1;
  margin: 0 0 20px 0;
  display: block;
  white-space: nowrap;
  font-family: "Albert Sans", sans-serif;
}

.performance-stat-label {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.3;
  margin: 0;
  white-space: nowrap;
  font-family: "Albert Sans", sans-serif;
}

/* Performance Scale Responsive Styles */
@media (max-width: 1024px) {
  .performance-scale-stats {
    gap: 30px;
  }

  .performance-stat-value {
    font-size: 32px;
  }

  .performance-stat-label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .performance-scale-section {
    padding: 40px 20px;
  }

  .performance-scale-title {
    font-size: 32px;
    margin: 0 0 30px 0;
    padding-bottom: 30px;
  }

  .performance-scale-stats {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
    justify-content: space-evenly;
  }

  .performance-stat {
    flex: none;
  }

  .performance-stat-value {
    font-size: 36px;
    margin-bottom: 10px;
  }

  .performance-stat-label {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .performance-scale-section {
    padding: 30px 15px;
  }

  .performance-scale-title {
    font-size: 28px;
    margin: 0 0 25px 0;
    padding-bottom: 25px;
  }

  .performance-scale-stats {
    flex-direction: column;
    gap: 60px;
    align-items: center;
    justify-content: center;
  }

  .performance-stat-value {
    font-size: 32px;
  }

  .performance-stat-label {
    font-size: 14px;
  }
}
