/* Ready Section Block Styles */
/* Scoped to .ready-section-section */

/* Section Root */
.ready-section-section {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 10px;
  width: 100%;
  background-color: #0960a8;
}

/* Container */
.ready-section-section .container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0px;
}

/* Content Wrapper */
.ready-section-section .ready-section-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
}

/* Header Group */
.ready-section-section .ready-section-header {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

/* Title */
.ready-section-section .ready-section-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 300;
  text-align: center;
  color: #f4f7fa;
  margin: 0;
  line-height: 55px;
}

/* Description */
.ready-section-section .ready-section-description {
  font-family: "Poppins", sans-serif;
  font-size: clamp(18px, 2vw, 18px);
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  margin: 0;
  line-height: 1.6;
  max-width: 700px;
}

/* Stats Container */
.ready-section-section .ready-section-stats {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* Individual Stat Item */
.ready-section-section .ready-section-stat-item {
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: center;
  min-width: 255px;
  width: 100%;
}

/* Stat Number */
.ready-section-section .ready-section-stat-number {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  line-height: 1.2;
}

/* Stat Label */
.ready-section-section .ready-section-stat-label {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  color: #ffffff;
  line-height: 1.4;
}

/* Responsive Breakpoints */

/* Tablet - 1024px */
@media (max-width: 1024px) {

  .ready-section-section .ready-section-stat-item {
    min-width: 150px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {

  .ready-section-section .ready-section-stats {
    flex-direction: column;
  }

  .ready-section-section .ready-section-stat-item {
    min-width: 100%;
  }
}