.sales-enroll {
  background: #59acf8;
  padding: clamp(48px, 8vw, 100px) clamp(20px, 6.67vw, 96px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(32px, 4vw, 56px);
}

.sales-enroll__title {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 4.5vw, 54px);
  line-height: 1.3;
  color: #21254a;
  text-align: center;
  max-width: 846px;
  margin: 0;
}

.sales-enroll__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1220px;
}

.sales-enroll__row {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  justify-content: center;
}

.sales-enroll__card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  flex: 0 0 380px;
  width: 380px;
  box-shadow: 0 4px 6px rgba(33, 37, 74, 0.05);
}

.sales-enroll__icon-wrap {
  width: 140px;
  height: 140px;
  border-radius: 70px;
  background: rgba(89, 172, 248, 0.05);
  border: 1px solid rgba(89, 172, 248, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.sales-enroll__icon-wrap img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  display: block;
}

.sales-enroll__card-content {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  width: 100%;
}

.sales-enroll__check {
  width: 24px;
  height: 24px;
  min-width: 24px;
  background: rgba(107, 191, 78, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  flex-shrink: 0;
}

.sales-enroll__check img {
  width: 14px;
  height: 14px;
  display: block;
}

.sales-enroll__text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: clamp(16px, 1.5vw, 22px);
  line-height: 1.55;
  color: #21254a;
  margin: 0;
  flex: 1;
  min-width: 0;
}

/* 2-column layout at 1024px */
@media (max-width: 1024px) {
  .sales-enroll__row {
    flex-wrap: wrap;
  }

  .sales-enroll__card {
    flex: 0 0 calc(50% - 12px);
    width: calc(50% - 12px);
  }
}

/* 1-column layout at 599px */
@media (max-width: 599px) {
  .sales-enroll {
    padding: 48px 20px;
    gap: 32px;
  }

  .sales-enroll__row {
    flex-direction: column;
    align-items: stretch;
  }

  .sales-enroll__card {
    flex: none;
    width: 100%;
    padding: 24px;
    gap: 24px;
  }
}
