/* ===========================================
   ZenOps - Numbers Section Styles
   Source: Figma CSS Export (valeurs strictes)
   =========================================== */

.numbers {
  position: relative;
  width: 1512px;
  height: 404px;
}

/* Badge */
.numbers__badge {
  box-sizing: border-box;
  position: absolute;
  width: 320px;
  height: 32px;
  left: 80px;
  top: 60px;
  border-radius: 100px;
  border: 1px solid rgba(59, 255, 154, 0.3);
  display: flex;
  align-items: center;
  padding-left: 29px;
  gap: 10px;
}

.numbers__badge-dot {
  width: 12px;
  height: 12px;
  background: #3BFF9A;
  border-radius: 50%;
  filter: blur(2px);
}

.numbers__badge-text {
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.01em;
  color: #3BFF9A;
  text-align: center;
}

/* Numbers Grid Container */
.numbers__grid {
  position: absolute;
  width: 664px;
  height: 412px;
  left: 768px;
  top: 8px;
}

/* Individual Number Card */
.numbers__item {
  position: absolute;
  width: 320px;
  height: 206px;
}

.numbers__item:nth-child(1) {
  left: 0px;
  top: 0px;
}

.numbers__item:nth-child(2) {
  left: 344px;
  top: 0px;
}

.numbers__item:nth-child(3) {
  left: 0px;
  top: 184px;
}

.numbers__item:nth-child(4) {
  left: 344px;
  top: 184px;
}

/* Vertical Line - width 96px rotated 90deg = vertical line of 96px height */
.numbers__line {
  position: absolute;
  width: 1px;
  height: 96px;
  left: 0px;
  top: 3px;
  background: rgba(160, 182, 217, 0.5);
}

/* Number Value */
.numbers__value {
  position: absolute;
  left: 46px;
  top: 0px;
  font-family: 'Clash Grotesk', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 72px;
  line-height: 100%;
  letter-spacing: -0.02em;
  color: #A1F3FF;
  display: flex;
  align-items: center;
  margin: 0;
}

/* Number Label */
.numbers__label {
  position: absolute;
  width: 274px;
  left: 46px;
  top: 75px;
  font-family: 'Raleway', sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  color: #F4F6FB;
  display: flex;
  align-items: center;
  margin: 0;
}

/* ===========================================
   Responsive Styles
   =========================================== */

@media (max-width: 1512px) {
  .numbers {
    width: 100%;
    left: 0;
    position: relative;
    top: auto;
    padding: 60px 40px;
    height: auto;
  }

  .numbers__badge {
    position: relative;
    left: auto;
    top: auto;
    margin-bottom: 40px;
  }

  .numbers__grid {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-left: auto;
  }

  .numbers__item {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 120px;
  }

  .numbers__item:nth-child(1),
  .numbers__item:nth-child(2),
  .numbers__item:nth-child(3),
  .numbers__item:nth-child(4) {
    left: auto;
    top: auto;
  }

  .numbers__line {
    height: 80px;
  }

  .numbers__value {
    position: relative;
    left: auto;
    top: auto;
    padding-left: 24px;
    font-size: 56px;
  }

  .numbers__label {
    position: relative;
    left: auto;
    top: auto;
    padding-left: 24px;
    width: auto;
    margin-top: 8px;
  }
}

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

  .numbers__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .numbers__value {
    font-size: 48px;
  }

  .numbers__label {
    font-size: 16px;
  }
}
