/* Why It Works: minimal cards + market metric */
.cp-why-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  column-gap: clamp(44px, 6vw, 108px);
  margin-bottom: 30px;
}

.cp-why-intro-copy {
  min-width: 0;
}

.cp-global-users {
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
  gap: 28px;
  min-width: 290px;
  padding: 38px 0;
  text-align: right;
}

.cp-global-users-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  white-space: nowrap;
}

.cp-global-users-copy strong {
  display: block;
  margin: 0;
  color: #ff4545;
  font-family: inherit;
  font-size: 48px;
  font-weight: 800;
  line-height: .9;
  letter-spacing: -3px;
}

.cp-global-users-copy span {
  display: block;
  margin-top: 17px;
  color: #fff;
  font-family: inherit;
  text-align: right;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.2px;
}

.cp-global-users-accent {
  display: block;
  width: 2px;
  min-height: 90px;
  border-radius: 999px;
  background: linear-gradient(180deg, #ff4545 0%, #e72258 100%);
  box-shadow: 0 0 28px rgba(231, 34, 88, .16);
}

.cp-why-columns {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 20px;
  align-items: stretch;
}

.cp-problem-card-col {
  display: flex;
}

.cp-problem-card {
  width: 100%;
  min-height: 100%;
  padding: 36px 42px 28px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  background: rgba(255, 255, 255, .035);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .025),
    0 16px 44px rgba(0, 0, 0, .12);
  margin-right: 30px;
}

/* Preserve the existing typography and list styling; only normalize spacing inside the card. */
.cp-problem-card > h3 {
  margin-top: 0;
}

.cp-problem-card .list-area {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .cp-why-intro {
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 36px;
  }

  .cp-global-users {
    min-width: 248px;
    gap: 20px;
  }

  .cp-global-users-copy strong {
    font-size: 62px;
  }

  .cp-global-users-copy span {
    font-size: 21px;
  }
}

@media (max-width: 991.98px) {
  .cp-why-intro {
    grid-template-columns: 1fr;
    row-gap: 34px;
    margin-bottom: 42px;
  }

  .cp-global-users {
    justify-content: flex-start;
    width: max-content;
    min-width: 0;
  }

  .cp-global-users-accent {
    min-height: 96px;
  }

  .cp-problem-card {
    padding: 28px 26px;
  }
}

@media (max-width: 575.98px) {
  .cp-global-users {
    gap: 17px;
  }

  .cp-global-users-copy strong {
    font-size: 52px;
    letter-spacing: -2px;
  }

  .cp-global-users-copy span {
    margin-top: 12px;
    font-size: 18px;
  }

  .cp-global-users-accent {
    width: 6px;
    min-height: 82px;
  }

  .cp-problem-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
}
